:root {
    --primary: #0a1628;
    --primary-light: #1a2a4a;
    --accent: #c9a84c;
    --accent-hover: #b8953e;
    --text: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --success: #10b981;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}
.navbar.scrolled { 
    box-shadow: 0 4px 30px rgba(0,0,0,0.15); 
    padding: 0.7rem 0; 
}
.nav-container { 
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 0 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    text-decoration: none; 
}
.logo img {
    height: 45px; /* Compact logo for mobile */
    transition: height 0.3s;
}
.logo-text { 
    color: var(--white); 
    font-weight: 700; 
    font-size: 1.3rem; 
    letter-spacing: -0.5px; 
}
.logo-text span { color: var(--accent); }

.nav-links { 
    display: flex; 
    gap: 1.8rem; 
    list-style: none; 
}
.nav-links a { 
    color: rgba(255,255,255,0.85); 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 0.95rem; 
    transition: color 0.3s; 
    position: relative; 
}
.nav-links a::after { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: var(--accent); 
    transition: width 0.3s; 
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 0; }

.nav-cta { 
    background: var(--accent); 
    color: var(--primary) !important; 
    padding: 0.6rem 1.5rem; 
    border-radius: 8px; 
    font-weight: 600; 
    transition: all 0.3s; 
}
.nav-cta:hover { 
    background: var(--accent-hover); 
    transform: translateY(-2px); 
}

.mobile-menu-btn { 
    display: none; 
    background: none; 
    border: none; 
    color: var(--white); 
    font-size: 1.5rem; 
    cursor: pointer; 
    padding: 0.5rem;
}

/* ===== COMPACT MOBILE MENU ===== */
.mobile-menu { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: var(--primary); 
    z-index: 999; 
    padding: 3.5rem 1.5rem 1.5rem; 
    flex-direction: column; 
    gap: 0.6rem; 
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu.active { display: flex; }

.mobile-menu a { 
    color: var(--white); 
    text-decoration: none; 
    font-size: 1.1rem; 
    font-weight: 500; 
    padding: 0.75rem 0.5rem; 
    border-bottom: 1px solid rgba(255,255,255,0.08); 
    transition: background 0.2s;
}
.mobile-menu a:hover {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.mobile-menu .nav-cta {
    display: inline-block;
    width: auto;
    padding: 0.6rem 1.2rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    text-align: center;
    border-radius: 8px;
    background: var(--accent);
    color: var(--primary) !important;
    font-weight: 600;
}

.mobile-menu-close { 
    position: absolute; 
    top: 1rem; 
    right: 1.5rem; 
    background: rgba(255,255,255,0.1);
    border: none; 
    color: var(--white); 
    font-size: 1.2rem; 
    cursor: pointer; 
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.mobile-menu-close:hover {
    background: rgba(255,255,255,0.2);
}

/* Hide scrollbar but keep functionality */
.mobile-menu::-webkit-scrollbar { width: 4px; }
.mobile-menu::-webkit-scrollbar-track { background: transparent; }
.mobile-menu::-webkit-scrollbar-thumb { 
    background: rgba(201,168,76,0.5); 
    border-radius: 4px; 
}
.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(201,168,76,0.7);
}

/* ===== PAGE CONTENT ===== */
.page-content { 
    flex: 1; 
    padding-top: 80px; 
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(26,42,74,0.88) 100%), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before { 
    content: ''; 
    position: absolute; 
    top: -50%; 
    right: -20%; 
    width: 600px; 
    height: 600px; 
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%); 
    border-radius: 50%; 
}
.hero-container { 
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 4rem 2rem; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center; 
    position: relative; 
    z-index: 1; 
}
.hero-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    background: rgba(201,168,76,0.15); 
    border: 1px solid rgba(201,168,76,0.3); 
    color: var(--accent); 
    padding: 0.5rem 1rem; 
    border-radius: 50px; 
    font-size: 0.85rem; 
    font-weight: 600; 
    margin-bottom: 1.5rem; 
    animation: fadeInUp 0.8s ease; 
}
.hero-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 3.8rem; 
    font-weight: 700; 
    color: var(--white); 
    line-height: 1.15; 
    margin-bottom: 1.5rem; 
    animation: fadeInUp 0.8s ease 0.1s both; 
}
.hero-title .highlight { 
    color: var(--accent); 
    position: relative; 
}
.hero-desc { 
    color: rgba(255,255,255,0.75); 
    font-size: 1.15rem; 
    line-height: 1.8; 
    margin-bottom: 2.5rem; 
    max-width: 520px; 
    animation: fadeInUp 0.8s ease 0.2s both; 
}
.hero-buttons { 
    display: flex; 
    gap: 1rem; 
    animation: fadeInUp 0.8s ease 0.3s both; 
}
.btn-primary { 
    background: var(--accent); 
    color: var(--primary); 
    padding: 1rem 2.2rem; 
    border-radius: 10px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 1rem; 
    transition: all 0.3s; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    border: 2px solid var(--accent); 
}
.btn-primary:hover { 
    background: var(--accent-hover); 
    transform: translateY(-3px); 
    box-shadow: 0 10px 30px rgba(201,168,76,0.3); 
}
.btn-outline { 
    background: transparent; 
    color: var(--white); 
    padding: 1rem 2.2rem; 
    border-radius: 10px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 1rem; 
    transition: all 0.3s; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    border: 2px solid rgba(255,255,255,0.3); 
}
.btn-outline:hover { 
    border-color: var(--accent); 
    color: var(--accent); 
    transform: translateY(-3px); 
}
.hero-image { 
    position: relative; 
    animation: fadeInRight 1s ease 0.3s both; 
}
.hero-image img { 
    width: 100%; 
    border-radius: 24px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.4); 
}
.hero-image::before { 
    content: ''; 
    position: absolute; 
    top: -20px; 
    left: -20px; 
    right: 20px; 
    bottom: 20px; 
    border: 2px solid var(--accent); 
    border-radius: 24px; 
    z-index: -1; 
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-label { 
    display: inline-block; 
    color: var(--accent); 
    font-weight: 700; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 1rem; 
}
.section-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.8rem; 
    font-weight: 700; 
    color: var(--primary); 
    margin-bottom: 1rem; 
    line-height: 1.2; 
}
.section-desc { 
    color: var(--text-light); 
    font-size: 1.1rem; 
}

/* ===== SERVICES ===== */
.services { background: var(--gray-50); }
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
}
.service-card { 
    background: var(--white); 
    padding: 2.5rem; 
    border-radius: 20px; 
    transition: all 0.4s; 
    border: 1px solid var(--gray-200); 
    position: relative; 
    overflow: hidden; 
}
.service-card::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 4px; 
    background: var(--accent); 
    transform: scaleX(0); 
    transform-origin: left; 
    transition: transform 0.4s; 
}
.service-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
    border-color: transparent; 
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { 
    width: 60px; 
    height: 60px; 
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%); 
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--primary); 
    font-size: 1.5rem; 
    margin-bottom: 1.5rem; 
}
.service-title { 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: var(--primary); 
    margin-bottom: 0.75rem; 
}
.service-desc { 
    color: var(--text-light); 
    font-size: 0.95rem; 
    line-height: 1.7; 
}

/* ===== ABOUT ===== */
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 5rem; 
    align-items: center; 
}
.about-image { position: relative; }
.about-image img { 
    width: 100%; 
    border-radius: 20px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
}
.about-content h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
    color: var(--primary); 
    margin-bottom: 1.5rem; 
    line-height: 1.2; 
}
.about-content p { 
    color: var(--text-light); 
    margin-bottom: 1.5rem; 
    line-height: 1.8; 
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
}
.testimonial-card { 
    background: var(--white); 
    padding: 2.5rem; 
    border-radius: 20px; 
    border: 1px solid var(--gray-200); 
    position: relative; 
    transition: all 0.3s; 
}
.testimonial-card:hover { 
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
    transform: translateY(-5px); 
}
.quote-icon { 
    font-size: 3rem; 
    color: var(--accent); 
    opacity: 0.3; 
    line-height: 1; 
    margin-bottom: 1rem; 
}
.testimonial-text { 
    color: var(--text); 
    font-size: 1rem; 
    line-height: 1.8; 
    margin-bottom: 1.5rem; 
    font-style: italic; 
}
.testimonial-author { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}
.testimonial-avatar { 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    object-fit: cover; 
}
.testimonial-name { 
    font-weight: 700; 
    color: var(--primary); 
}
.testimonial-role { 
    font-size: 0.85rem; 
    color: var(--text-light); 
}

/* ===== FAQ ===== */
.faq { background: var(--gray-50); }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { 
    background: var(--white); 
    border-radius: 16px; 
    margin-bottom: 1rem; 
    overflow: hidden; 
    border: 1px solid var(--gray-200); 
    transition: all 0.3s; 
}
.faq-item.active { 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    border-color: var(--accent); 
}
.faq-question { 
    padding: 1.5rem 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    font-weight: 600; 
    color: var(--primary); 
    transition: color 0.3s; 
}
.faq-question:hover { color: var(--accent); }
.faq-icon { 
    width: 30px; 
    height: 30px; 
    background: var(--gray-100); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s; 
    flex-shrink: 0; 
}
.faq-item.active .faq-icon { 
    background: var(--accent); 
    color: var(--primary); 
    transform: rotate(180deg); 
}
.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease, padding 0.4s ease; 
}
.faq-item.active .faq-answer { 
    max-height: 300px; 
    padding: 0 2rem 1.5rem; 
}
.faq-answer p { 
    color: var(--text-light); 
    line-height: 1.8; 
}

/* ===== CONTACT ===== */
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: start; 
}
.contact-info h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2rem; 
    color: var(--primary); 
    margin-bottom: 1rem; 
}
.contact-info > p { 
    color: var(--text-light); 
    margin-bottom: 2rem; 
}
.contact-details { 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
}
.contact-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 1rem; 
}
.contact-icon { 
    width: 50px; 
    height: 50px; 
    background: rgba(201,168,76,0.15); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--accent); 
    font-size: 1.2rem; 
    flex-shrink: 0; 
}
.contact-text h4 { 
    font-weight: 700; 
    color: var(--primary); 
    margin-bottom: 0.2rem; 
}
.contact-text p { 
    color: var(--text-light); 
    font-size: 0.95rem; 
}
.contact-form { 
    background: var(--white); 
    padding: 2.5rem; 
    border-radius: 20px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { 
    display: block; 
    font-weight: 600; 
    color: var(--primary); 
    margin-bottom: 0.5rem; 
    font-size: 0.9rem; 
}
.form-group input, 
.form-group textarea, 
.form-group select { 
    width: 100%; 
    padding: 0.9rem 1rem; 
    border: 2px solid var(--gray-200); 
    border-radius: 10px; 
    font-family: 'Inter', sans-serif; 
    font-size: 1rem; 
    transition: border-color 0.3s; 
    background: var(--gray-50); 
}
.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus { 
    outline: none; 
    border-color: var(--accent); 
    background: var(--white); 
}
.form-group textarea { 
    resize: vertical; 
    min-height: 120px; 
}
.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem; 
}
.submit-btn { 
    width: 100%; 
    background: var(--primary); 
    color: var(--white); 
    padding: 1rem; 
    border: none; 
    border-radius: 10px; 
    font-family: 'Inter', sans-serif; 
    font-size: 1rem; 
    font-weight: 700; 
    cursor: pointer; 
    transition: all 0.3s; 
}
.submit-btn:hover { 
    background: var(--accent); 
    color: var(--primary); 
    transform: translateY(-2px); 
}

/* ===== FOOTER ===== */
.footer { 
    background: var(--primary); 
    color: var(--white); 
    padding: 5rem 0 2rem; 
    margin-top: auto; 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 3rem; 
    margin-bottom: 3rem; 
}
.footer-brand .logo-text { 
    font-size: 1.5rem; 
    margin-bottom: 1rem; 
    display: block; 
}
.footer-brand p { 
    color: rgba(255,255,255,0.7); 
    line-height: 1.8; 
    margin-bottom: 1.5rem; 
}
.social-links { 
    display: flex; 
    gap: 1rem; 
}
.social-links a { 
    width: 40px; 
    height: 40px; 
    background: rgba(255,255,255,0.1); 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--white); 
    text-decoration: none; 
    transition: all 0.3s; 
}
.social-links a:hover { 
    background: var(--accent); 
    color: var(--primary); 
    transform: translateY(-3px); 
}
.footer-column h4 { 
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-bottom: 1.5rem; 
    color: var(--accent); 
}
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.75rem; }
.footer-column ul li a { 
    color: rgba(255,255,255,0.7); 
    text-decoration: none; 
    transition: color 0.3s; 
    font-size: 0.95rem; 
}
.footer-column ul li a:hover { color: var(--accent); }
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 1rem; 
}
.footer-bottom p { 
    color: rgba(255,255,255,0.5); 
    font-size: 0.9rem; 
}

/* ===== BREADCRUMB ===== */
.breadcrumb { 
    background: var(--gray-100); 
    padding: 1rem 0; 
    border-bottom: 1px solid var(--gray-200); 
}
.breadcrumb-container { 
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 0 2rem; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-size: 0.9rem; 
}
.breadcrumb a { 
    color: var(--text-light); 
    text-decoration: none; 
    transition: color 0.3s; 
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .current { 
    color: var(--primary); 
    font-weight: 600; 
}

/* ===== PAGE HEADER ===== */
.page-header { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); 
    padding: 4rem 0; 
    text-align: center; 
    color: var(--white); 
}
.page-header h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.8rem; 
    font-weight: 700; 
    margin-bottom: 1rem; 
}
.page-header p { 
    color: rgba(255,255,255,0.8); 
    font-size: 1.1rem; 
    max-width: 600px; 
    margin: 0 auto; 
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}
@keyframes fadeInRight { 
    from { opacity: 0; transform: translateX(30px); } 
    to { opacity: 1; transform: translateX(0); } 
}
.animate-on-scroll { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.8s ease; 
}
.animate-on-scroll.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
        padding: 3rem 1.5rem;
    }
    .hero-desc { 
        margin-left: auto; 
        margin-right: auto; 
    }
    .hero-buttons { 
        justify-content: center; 
        flex-wrap: wrap;
    }
    .hero-image { display: none; }
    .about-grid, 
    .contact-grid { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    .services-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .testimonials-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
    }
    .nav-container { padding: 0 1.5rem; }
    .logo img { height: 40px; }
}

@media (max-width: 768px) {
    /* Hide desktop nav, show mobile toggle */
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Compact hero */
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-buttons { 
        flex-direction: column; 
        align-items: center; 
    }
    .btn-primary, .btn-outline { 
        width: 100%; 
        max-width: 280px; 
        justify-content: center;
    }
    
    /* Compact sections */
    .section { padding: 4rem 0; }
    .section-title, 
    .page-header h1 { font-size: 1.8rem; }
    .section-header { margin-bottom: 2.5rem; }
    
    /* Stack grids */
    .services-grid, 
    .testimonials-grid { 
        grid-template-columns: 1fr; 
    }
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .social-links { justify-content: center; }
    .footer-bottom { 
        flex-direction: column; 
        text-align: center; 
    }
    
    /* Forms */
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 2rem 1.5rem; }
    
    /* FAQ */
    .faq-question { padding: 1.2rem 1.5rem; font-size: 1rem; }
    .faq-item.active .faq-answer { padding: 0 1.5rem 1.2rem; }
    
    /* Page header */
    .page-header { padding: 3rem 0; }
    
    /* Breadcrumb */
    .breadcrumb-container { padding: 0 1.5rem; font-size: 0.85rem; }
}

/* ===== EXTRA COMPACT FOR SMALL SCREENS ===== */
@media (max-height: 600px) and (max-width: 768px) {
    .mobile-menu {
        padding: 3rem 1.2rem 1rem;
        gap: 0.4rem;
    }
    .mobile-menu a {
        font-size: 1rem;
        padding: 0.6rem 0.4rem;
    }
    .mobile-menu-close {
        top: 0.75rem;
        right: 1.2rem;
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    .logo img { height: 36px; }
}

/* ===== LANDSCAPE MOBILE FIX ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .mobile-menu {
        padding: 2.5rem 1.2rem 1rem;
        gap: 0.3rem;
    }
    .mobile-menu a {
        font-size: 0.95rem;
        padding: 0.5rem 0.3rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar, .footer, .scroll-to-top, .mobile-menu-btn { display: none; }
    .page-content { padding-top: 0; }
    body { color: #000; background: #fff; }
}