/* ============================================================
   FE Systems - IT Services Store
   Design matching https://fe-systems.co.uk/
   Dark theme with custom fonts
   ============================================================ */

/* --- Custom Fonts --- */
@font-face {
    font-family: 'Whyte Inktrap';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fe-systems.co.uk/wp-content/uploads/2023/04/WhyteInktrap-Book.eot');
    src: url('https://fe-systems.co.uk/wp-content/uploads/2023/04/WhyteInktrap-Book.eot?#iefix') format('embedded-opentype'),
         url('https://fe-systems.co.uk/wp-content/uploads/2023/04/WhyteInktrap-Book.woff2') format('woff2'),
         url('https://fe-systems.co.uk/wp-content/uploads/2023/04/WhyteInktrap-Book.woff') format('woff'),
         url('https://fe-systems.co.uk/wp-content/uploads/2023/04/WhyteInktrap-Book.ttf') format('truetype');
}

@font-face {
    font-family: 'PolySans Neutral';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fe-systems.co.uk/wp-content/uploads/2023/04/PolySans-Neutral.ttf') format('truetype');
}

/* --- CSS Variables --- */
:root {
    --fe-bg: #01050F;
    --fe-bg-secondary: #081024;
    --fe-card-bg: rgba(255, 255, 255, 0.1);
    --fe-card-border: rgba(255, 255, 255, 0.19);
    --fe-text: #BDBFC4;
    --fe-white: #FFFFFF;
    --fe-heading: #FFFFFF;
    --fe-border: rgba(255, 255, 255, 0.13);
    --fe-radius: 20px;
    --fe-radius-btn: 30px;
    --fe-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    --fe-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
    --fe-transition: 0.3s ease;
    --fe-font-heading: 'Whyte Inktrap', 'Georgia', serif;
    --fe-font-body: 'PolySans Neutral', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --fe-success: #2ebd59;
    --fe-warning: #f80;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fe-font-body);
    color: var(--fe-text);
    background: var(--fe-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--fe-white);
    text-decoration: none;
    transition: color var(--fe-transition), opacity var(--fe-transition);
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(0deg, rgba(1,5,15,1) 0%, rgba(1,5,15,0.55) 74%, rgba(0,212,255,0) 100%);
    transform: rotate(180deg);
    pointer-events: none;
    z-index: -1;
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 90px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* --- Left: Logo --- */
.header-left {
    display: flex;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
      margin-top: 10px;
    width: auto;
}

/* --- Center: Navigation --- */
.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    display: block;
    padding: 0;
    color: var(--fe-white);
    font-family: var(--fe-font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    white-space: nowrap;
    transition: opacity var(--fe-transition);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fe-white);
    transition: width var(--fe-transition);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    opacity: 1;
    color: var(--fe-white);
}

/* Hide contact menu item on desktop (shown in mobile nav) */
.main-nav ul li.contactmenu {
    display: none;
}

/* --- Right: Contact + Language --- */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.btn-contact {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--fe-white);
    color: var(--fe-white);
    border-radius: var(--fe-radius-btn);
    font-family: var(--fe-font-body);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.5;
    transition: all 0.5s ease-in-out;
    background: transparent;
    text-align: center;
    text-decoration: none;
}

.btn-contact:hover {
    background: linear-gradient(90deg, rgba(255,243,130,1) 17%, rgba(254,221,133,1) 39%, rgb(243,239,229) 58%, rgba(255,244,142,1) 100%);
    color: #000000 !important;
    border-color: transparent;
    opacity: 1;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: var(--fe-white);
    font-family: var(--fe-font-body);
    font-size: 0.8rem;
    font-weight: 400;
    transition: all 0.3s ease;
    line-height: 1;
    text-decoration: none;
}

.lang-btn img {
    border-radius: 2px;
    width: 20px;
    height: auto;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

.lang-btn.lang-active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-btn:not(.lang-active) {
    opacity: 0.6;
}

.lang-btn:not(.lang-active):hover {
    opacity: 0.9;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    border-radius: 4px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--fe-white);
    border-radius: 2px;
    transition: all var(--fe-transition);
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--fe-bg);
    color: var(--fe-white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-family: var(--fe-font-heading);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--fe-heading);
}

.hero p {
    font-family: var(--fe-font-body);
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--fe-text);
}

.hero .hero-subtitle {
    font-family: var(--fe-font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--fe-white);
    margin-bottom: 16px;
}

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages-section {
    padding: 80px 0;
    background: var(--fe-bg);
}

.packages-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.packages-section .section-header h2 {
    font-family: var(--fe-font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--fe-heading);
    margin-bottom: 16px;
    line-height: 1.2;
}

.packages-section .section-header p {
    font-family: var(--fe-font-body);
    color: var(--fe-text);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card {
    background: var(--fe-card-bg);
    border-radius: var(--fe-radius);
    border: 1px solid var(--fe-card-border);
    padding: 36px 28px;
    transition: all 0.5s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.package-card.popular {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.package-card .popular-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--fe-white);
    color: var(--fe-bg);
    padding: 5px 18px;
    border-radius: 20px;
    font-family: var(--fe-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-card .package-name {
    font-family: var(--fe-font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--fe-heading);
    margin-bottom: 8px;
    line-height: 1.3;
}

.package-card .package-price {
    font-family: var(--fe-font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--fe-white);
    margin-bottom: 4px;
}

.package-card .package-price .currency {
    font-size: 1.4rem;
    font-weight: 400;
    vertical-align: super;
}

.package-card .package-price .duration {
    font-family: var(--fe-font-body);
    font-size: 1rem;
    color: var(--fe-text);
    font-weight: 400;
}

.package-card .package-desc {
    font-family: var(--fe-font-body);
    color: var(--fe-text);
    font-size: 0.95rem;
    margin: 16px 0 20px;
    line-height: 1.6;
    flex-grow: 0;
}

.package-card .package-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.package-card .package-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-family: var(--fe-font-body);
    font-size: 0.92rem;
    color: var(--fe-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.5;
}

.package-card .package-features li:last-child {
    border-bottom: none;
}

.package-card .package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--fe-success);
    font-weight: 700;
    font-size: 0.85rem;
}

.package-card .btn-select {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: transparent;
    color: var(--fe-white);
    border: 2px solid var(--fe-white);
    border-radius: var(--fe-radius-btn);
    font-family: var(--fe-font-body);
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    line-height: 1.5;
}

.package-card .btn-select:hover {
    background: linear-gradient(90deg, rgba(255,243,130,1) 17%, rgba(254,221,133,1) 39%, rgb(243,239,229) 58%, rgba(255,244,142,1) 100%);
    color: #000000;
    border-color: transparent;
}

.package-card.popular .btn-select {
    font-size: 1.05rem;
}

.package-card.selected {
    border-color: var(--fe-white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
}

.package-card.selected .btn-select {
    background: var(--fe-success);
    border-color: var(--fe-success);
    color: var(--fe-white);
}

/* ============================================================
   CHECKOUT BAR
   ============================================================ */
.checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a1120;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding: 18px 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.checkout-bar.visible {
    transform: translateY(0);
}

.checkout-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-bar .selected-info {
    font-family: var(--fe-font-body);
    font-size: 1rem;
    color: var(--fe-text);
}

.checkout-bar .selected-info .package-label {
    font-family: var(--fe-font-heading);
    color: var(--fe-white);
}

.checkout-bar .selected-info .package-price-label {
    font-family: var(--fe-font-heading);
    color: var(--fe-white);
    font-size: 1.2rem;
    margin-left: 8px;
}

.checkout-bar .btn-pay {
    padding: 14px 40px;
    background: transparent;
    color: var(--fe-white);
    border: 2px solid var(--fe-white);
    border-radius: var(--fe-radius-btn);
    font-family: var(--fe-font-body);
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.checkout-bar .btn-pay:hover {
    background: linear-gradient(90deg, rgba(255,243,130,1) 17%, rgba(254,221,133,1) 39%, rgb(243,239,229) 58%, rgba(255,244,142,1) 100%);
    color: #000000;
    border-color: transparent;
}

.checkout-bar .btn-cancel {
    padding: 12px 20px;
    background: none;
    border: none;
    color: var(--fe-text);
    cursor: pointer;
    font-family: var(--fe-font-body);
    font-size: 0.9rem;
    margin-right: 10px;
    transition: color var(--fe-transition);
}

.checkout-bar .btn-cancel:hover {
    color: var(--fe-white);
}

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(1, 5, 15, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex !important;
}

.modal-content {
    background: var(--fe-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--fe-radius);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--fe-text);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--fe-white);
}

.modal-content h2 {
    font-family: var(--fe-font-heading);
    font-size: 1.5rem;
    color: var(--fe-white);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-family: var(--fe-font-body);
    font-size: 0.95rem;
    color: var(--fe-text);
    margin-bottom: 24px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--fe-font-body);
    font-size: 0.9rem;
    color: var(--fe-white);
    margin-bottom: 6px;
}

.form-group .required {
    color: #f80;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--fe-white);
    font-family: var(--fe-font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
    color: rgba(189, 191, 196, 0.5);
}

.form-error {
    color: #ff6b6b;
    font-family: var(--fe-font-body);
    font-size: 0.85rem;
    margin-bottom: 16px;
    text-align: left;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, rgba(255,243,130,1) 17%, rgba(254,221,133,1) 39%, rgb(243,239,229) 58%, rgba(255,244,142,1) 100%);
    color: #000000;
    border: none;
    border-radius: var(--fe-radius-btn);
    font-family: var(--fe-font-body);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* ============================================================
   RESULT PAGES
   ============================================================ */
.result-page {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-card {
    background: var(--fe-card-bg);
    border-radius: var(--fe-radius);
    border: 1px solid var(--fe-card-border);
    padding: 48px 40px;
    max-width: 500px;
    width: 100%;
}

.result-card .result-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}

.result-card .result-icon.success {
    background: rgba(46, 189, 89, 0.15);
    color: var(--fe-success);
}

.result-card .result-icon.cancel {
    background: rgba(255, 136, 0, 0.15);
    color: var(--fe-warning);
}

.result-card h2 {
    font-family: var(--fe-font-heading);
    font-size: 1.5rem;
    color: var(--fe-heading);
    margin-bottom: 12px;
}

.result-card p {
    font-family: var(--fe-font-body);
    color: var(--fe-text);
    margin-bottom: 24px;
    line-height: 1.6;
}

.result-card .btn-back {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--fe-white);
    border: 2px solid var(--fe-white);
    border-radius: var(--fe-radius-btn);
    font-family: var(--fe-font-body);
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.result-card .btn-back:hover {
    background: linear-gradient(90deg, rgba(255,243,130,1) 17%, rgba(254,221,133,1) 39%, rgb(243,239,229) 58%, rgba(255,244,142,1) 100%);
    color: #000000;
    border-color: transparent;
    opacity: 1;
}

.result-card .success-details {
    text-align: left;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.result-card .success-details h3 {
    font-family: var(--fe-font-body);
    font-size: 1rem;
    color: var(--fe-white);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-card .success-details table {
    width: 100%;
    border-collapse: collapse;
}

.result-card .success-details table td {
    padding: 8px 0;
    font-family: var(--fe-font-body);
    font-size: 0.95rem;
    color: var(--fe-text);
    vertical-align: top;
}

.result-card .success-details table td:first-child {
    font-weight: 600;
    color: var(--fe-white);
    width: 45%;
    padding-right: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--fe-bg-secondary);
    color: var(--fe-text);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.3fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 1px;
    margin-bottom: 20px;
}

.footer-col {
    padding: 10px;
}

.footer-col.footer-about .footer-logo {
    margin-bottom: 20px;
    display: block;
}

.footer-col.footer-about .footer-logo img {
    height: auto;
    width: auto;
}

.footer-col.footer-about p {
    font-family: var(--fe-font-body);
    font-size: 1rem;
    line-height: 1.9;
    color: var(--fe-text);
}

.footer-col h3 {
    color: #FFFFFF;
    font-family: "PolySans Neutral", Sans-serif;
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    line-height: 70px;
    margin-bottom: 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 20px;
}

.footer-col ul li a {
    font-family: var(--fe-font-body);
    color: var(--fe-text);
    font-size: 1rem;
    line-height: 30px;
    transition: color var(--fe-transition);
}

.footer-col ul li a:hover {
    color: var(--fe-white);
    opacity: 1;
}

.footer-col .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 22px;
    font-family: var(--fe-font-body);
    font-size: 1rem;
    color: var(--fe-text);
    line-height: 1.9;
}

.footer-payment {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 10px;
    font-family: var(--fe-font-body);
    font-size: 1rem;
    color: var(--fe-text);
}

.footer-payment img {
    height: auto;
    margin-left: 8px;
}

.footer-bottom {
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.125);
}

.footer-bottom .copyright {
    font-family: var(--fe-font-body);
    font-size: 1rem;
    color: var(--fe-text);
}

.footer-bottom .footer-links {
    display: flex;
    list-style: none;
    gap: 16px;
}

.footer-bottom .footer-links a {
    font-family: var(--fe-font-body);
    font-size: 1rem;
    color: var(--fe-text);
    padding: 8px;
    transition: color var(--fe-transition);
}

.footer-bottom .footer-links a:hover {
    color: var(--fe-white);
    opacity: 1;
}

/* ============================================================
   LOADING
   ============================================================ */
.spinner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1, 5, 15, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--fe-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .header-container {
        height: 72px;
        grid-template-columns: 1fr auto;
    }

    .header-left { width: auto; }

    .header-center {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--fe-bg);
        flex-direction: column;
        padding: 30px 20px;
        overflow-y: auto;
        z-index: 999;
    }

    .header-center.open {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .main-nav ul li a {
        padding: 14px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav ul li.contactmenu { display: block !important; }

    .header-right {
        display: none;
    }

    .header-right.mobile-visible {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--fe-bg);
        padding: 16px 20px 24px;
        flex-direction: column;
        gap: 12px;
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-right.mobile-visible .btn-contact {
        width: 100%;
        text-align: center;
    }

    .lang-switcher { align-self: center; }

    .menu-toggle { display: flex; }

    .hero h1 { font-size: 2.4rem; }

    .packages-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-payment { justify-content: center; }
}

@media (max-width: 767px) {
    .hero { padding: 50px 0 40px; }
    .hero h1 { font-size: 1.9rem; line-height: 1.3; }
    .hero p { font-size: 1rem; }

    .packages-grid { grid-template-columns: 1fr; }

    .packages-section .section-header h2 { font-size: 1.9rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .checkout-bar .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .checkout-bar .btn-pay,
    .checkout-bar .btn-cancel { width: 100%; }

    .checkout-bar .btn-cancel { order: 2; }

    .footer-payment { flex-direction: column; text-align: center; }

    .site-header::before { height: 120px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 0.95rem; }
    .packages-section .section-header h2 { font-size: 1.5rem; }
    .package-card { padding: 24px 18px; }
    .package-card .package-price { font-size: 2.2rem; }
}
