/* 
    DUBAI ILUTEN - Premium Luxury Collections
    Design System: Modern Luxury, Minimalist, High-Performance
*/

:root {
    /* Color Palette */
    --primary: #C5A059; /* Sophisticated Champagne Gold */
    --primary-dark: #A68045;
    --primary-light: #F4EAD5;
    --dark: #1A1A1A; /* Slightly lighter than pure black */
    --dark-grey: #2D2D2D;
    --light-grey: #F8F9FA;
    --white: #FFFFFF;
    --bg-main: #FFFFFF;
    --bg-secondary: #FDFBFA;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --text-light: #999999;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-alt: 'Urbanist', sans-serif;

    /* Spacing */
    --section-padding: 80px 8%;
    --container-max: 1440px;

    /* Effects */
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-dark: rgba(26, 26, 26, 0.85);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Luxury Global Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Scroll Reveal Effects */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography Scale */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gold { color: var(--primary); }
.uppercase { text-transform: uppercase; letter-spacing: 2px; }

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 8px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.top-info {
    display: flex;
    gap: 25px;
}

.top-info a:hover {
    color: var(--primary);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 35px; /* Accounting for top-bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    color: var(--white);
}

.main-header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--dark);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 15px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
}

.brand-name {
    display: flex;
    flex-direction: column;
}

.brand-dubai {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
}

.brand-iluten {
    font-family: var(--font-alt);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: inherit; /* Matches parent header color */
    opacity: 0.7;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: inherit; /* Matches parent header color */
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-count {
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none;
    font-size: 1.25rem;
    color: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    display: flex;
    flex-direction: column;
    padding: 20px 6%;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-logo img {
    height: 32px;
    width: auto;
}

.mobile-nav-logo .brand-name {
    display: flex !important; /* Ensure it's never hidden in the menu */
}

.mobile-nav-logo .brand-dubai {
    font-size: 1rem;
    color: var(--primary);
}

.mobile-nav-logo .brand-iluten {
    font-size: 0.45rem;
    color: var(--white);
    opacity: 0.7;
}

.mobile-nav-close {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.mobile-nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
    padding: 30px 0;
}

.mobile-menu-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-items li {
    overflow: hidden;
}

.mobile-menu-items a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    display: block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    transition-delay: calc(var(--i) * 0.1s);
    line-height: 1.1;
    position: relative;
    letter-spacing: 2px;
}

.mobile-nav.active .mobile-menu-items a {
    transform: translateY(0);
}

.mobile-menu-items a span {
    position: relative;
}

.mobile-menu-items a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.mobile-menu-items a:hover {
    color: var(--primary);
    padding-left: 15px;
}

.mobile-menu-items a.active {
    color: var(--primary);
}

.mobile-nav-footer {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    transition-delay: 0.6s;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav.active .mobile-nav-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px; /* Pill shape for premium feel */
    font-family: var(--font-alt);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.7rem;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15);
    transition: var(--transition);
}

.mobile-cart-btn:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

.mobile-cart-btn .cart-count {
    background: var(--white);
    color: var(--dark);
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.mobile-socials p {
    font-family: var(--font-alt);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 12px;
    opacity: 0.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Hero Section */
.hero {
    height: 90vh; /* Scaled down from 100vh for better balance */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.slideshow-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.9;
}

.hero h1 {
    font-size: clamp(2.4rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.85;
    max-width: 650px;
    margin-inline: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.topic-highlight {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Grid & Cards - Premium Luxury Edition */
.shop-section {
    padding: var(--section-padding);
    background-color: var(--bg-main);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 25px;
    }
    .shop-section {
        padding: 50px 5% !important;
    }
}

.product-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border-color: var(--primary-light);
}

.product-img {
    position: relative;
    aspect-ratio: 1;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-bottom: 1px solid #f9f9f9;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-info {
    padding: 25px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product-category-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.product-category {
    font-family: var(--font-alt);
    font-size: 0.7rem;
    font-weight: 850;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-price {
    font-family: var(--font-alt);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--dark);
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.25;
}

.product-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .btn-primary {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    font-weight: 850;
    letter-spacing: 2px;
    font-size: 0.75rem;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.15);
}

/* Services / Categories - Ultra Modern Edition */
.services {
    background: #0a0a0a; /* Deep dark background for glass pop */
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.services .section-header .topic-highlight {
    color: var(--white);
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 70px 45px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: 0.6s;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon-box {
    width: 110px;
    height: 110px;
    margin: 0 auto 40px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.8rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(197, 160, 89, 0.15);
    transform: rotate(0deg);
}

.service-card:hover .service-icon-box {
    background: var(--primary);
    color: #fff;
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}

.service-card h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 850;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 90%;
}

.service-card .btn-outline {
    border-color: rgba(197, 160, 89, 0.4);
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.75rem;
    padding: 15px 35px;
}

.service-card:hover .btn-outline {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 100px 8% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.footer-widget h4 {
    color: var(--primary);
    font-family: var(--font-alt);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.footer-widget p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-info i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Mobile Adjustments (General Tablet & Mobile) */
@media (max-width: 992px) {
    .main-header { top: 0; } /* Header always top on mobile */
    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero h1 { font-size: 3rem; }
    .topic-highlight { font-size: 2.2rem; }
    .section-padding { padding: 80px 6%; }
    .category-hero { height: 50vh !important; }
}

@media (max-width: 768px) {
    .top-bar { display: none; } /* Simplify on smaller tablets */
    
    .hero { height: 75vh; }
    .hero-content { padding: 0 5%; width: 95%; }
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 0.95rem; line-height: 1.6; }
    
    .category-hero h1 { font-size: 2.5rem !important; }
    
    .product-grid { 
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
        gap: 25px; 
    }
    
    .services-grid { 
        grid-template-columns: 1fr; 
        gap: 25px; 
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        text-align: center;
    }
    
    .contact-info li { justify-content: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
}

@media (max-width: 480px) {
    .header-container { padding: 15px 7%; }
    .logo img { height: 28px; }
    .brand-name { display: none; }
    
    .hero { height: 100vh; justify-content: flex-start; text-align: left; }
    .hero-content { 
        padding: 120px 7% 40px; 
        max-width: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: 100%;
        justify-content: flex-end;
    }
    
    .hero-subtitle { 
        font-size: 0.6rem; 
        letter-spacing: 5px; 
        margin-bottom: 1.2rem; 
        color: var(--primary);
        font-weight: 700;
    }
    
    .hero h1 { 
        font-size: 2.2rem; 
        margin-bottom: 1.5rem; 
        line-height: 1.1; 
        font-weight: 900;
        letter-spacing: -0.5px;
        color: var(--white);
    }
    
    .hero p { 
        font-size: 0.9rem; 
        line-height: 1.6; 
        margin-bottom: 2.5rem; 
        opacity: 0.7; 
        text-align: left;
        max-width: 100%;
    }
    
    .hero-actions { 
        display: flex;
        flex-direction: column; 
        gap: 12px; 
        padding: 0; 
        width: 100%;
    }
    
    .hero-actions .btn { 
        width: 100%; 
        padding: 16px 20px; 
        font-size: 0.8rem; 
        letter-spacing: 3px;
        text-align: center;
        border-radius: 2px;
    }
    
    .btn-primary { background: var(--primary); color: var(--dark); border-radius: 2px; }
    .btn-outline { border: 1px solid rgba(255,255,255,0.4); border-radius: 2px; }
    
    .section-padding { padding: 80px 7% 40px; }
    .topic-highlight { font-size: 2rem !important; text-align: left; margin-bottom: 10px; }
    .section-header { text-align: left; margin-bottom: 40px; }
    .section-header p { font-size: 0.9rem; padding: 0; margin-top: 5px; max-width: 100%; text-align: left; }
    
    .product-grid { gap: 20px; }
    .product-img { height: 320px; }
    .product-info { padding: 20px; text-align: left; }
    .product-info h3 { font-size: 1.3rem; text-align: left; }
    .product-price { font-size: 1.1rem; text-align: left; margin-bottom: 15px; color: var(--primary); }
    .product-desc { display: none; } /* Hide desc on mobile for cleaner card */
    .product-card .btn { padding: 16px; font-size: 0.75rem; border-radius: 2px; width: 100%; }
    
    .service-card { padding: 50px 30px; text-align: left; border-radius: 2px; }
    .service-icon-box { 
        width: 60px; 
        height: 60px; 
        font-size: 1.5rem; 
        margin: 0 0 25px 0; 
        border-radius: 2px;
        background: var(--primary);
        color: var(--white);
    }
    .service-card h3 { font-size: 1.5rem; text-align: left; margin-bottom: 15px; }
    .service-card p { font-size: 0.9rem; text-align: left; opacity: 0.7; margin-bottom: 25px; }
    .service-card .btn { border-radius: 2px; padding: 12px 25px; width: 100%; text-align: center; }
}

/* Landscape Mode Fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { height: 120vh; padding: 100px 0; }
    .mobile-nav a { font-size: 1.2rem; }
    .mobile-nav-logo img { height: 40px; }
}
