:root {
    --navy: #0a1628;
    --navy-light: #162d50;
    --navy-lighter: #1e3a5f;
    --blue-dark: #1a365d;
    --blue-medium: #0f2744;
    --green-dark: #0a1628;
    --green-medium: #162d4a;
    --green-light: #1a4060;
    --green-accent: #2a5f8f;
    --gold: #d4a853;
    --gold-light: #e8c87a;
    --gold-dark: #b8923f;
    --white: #ffffff;
    --silver: #e8eaed;
    --cream: #fdfcf8;
    --cream-dark: #f5f3eb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --text-primary: #0a1628;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 24px 48px rgba(10, 22, 40, 0.16);
    --shadow-glow: 0 0 60px rgba(212, 168, 83, 0.3);
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    transition: background 0.5s var(--ease-out), color 0.5s var(--ease-out);
}

body.nav-open {
    overflow: hidden !important;
}

@media (max-width: 992px) {
    .header { max-width: 100%; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease-out); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.cursor-outline { width: 40px; height: 40px; border: 1px solid var(--gold); border-radius: 50%; }
body:hover .cursor-dot, body:hover .cursor-outline { opacity: 1; }

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s var(--ease-out);
    background: transparent;
    color: var(--white);
    max-width: 100%;
    box-sizing: border-box;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 14px 0;
}

.header.scrolled .logo-img {
    filter: none;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: transform 0.3s var(--ease-bounce);
}

.logo:hover .logo-img { transform: scale(1.03); }

.logo:hover .logo-img { transform: scale(1.05); }

.nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 32px; }

.nav-link {
    position: relative;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
    position: relative;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}
.nav-dropdown-trigger::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    vertical-align: middle;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-dropdown-trigger::after {
    transform: rotate(-135deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 12px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}
.nav-dropdown-menu a:hover {
    background: var(--cream);
    color: var(--navy);
    padding-left: 24px;
}

.nav-dropdown-menu a.dropdown-external {
    border-top: 1px solid var(--gray-200);
    margin-top: 8px;
    padding-top: 16px;
    color: var(--gold);
    font-weight: 600;
}

.header.scrolled .nav-link { color: var(--gray-600); }
.header.scrolled .nav-dropdown-trigger { color: var(--gray-600); }
.header.scrolled .nav-dropdown-trigger::after {
    border-color: var(--gray-600);
}
.header.scrolled .nav-link:hover { color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.nav-mobile-only { display: none; }
.menu-toggle { display: none; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s var(--ease-out);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header .btn-primary {
    background: var(--gold) !important;
    color: var(--navy) !important;
}

.btn-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4); 
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.menu-toggle { display: none; flex-direction: column; gap: 6px; padding: 10px; flex-shrink: 0; }
.menu-toggle span { width: 24px; height: 2px; background: var(--white) !important; border-radius: 2px; transition: all 0.3s var(--ease-out); }


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 40px 60px;
    overflow: hidden;
    background: var(--navy);
    z-index: 0;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 168, 83, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 83, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.hero-content { max-width: 700px; position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 168, 83, 0.2);
    border: 1px solid rgba(212, 168, 83, 0.5);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
}

.badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }

@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } }

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
}

.title-highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    color: var(--silver);
    margin-bottom: 30px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; align-items: center; }
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--gray-300); }

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-image-container {
    position: relative;
    width: 450px;
    height: 500px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-accent {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 0.85rem;
}

.mouse { width: 26px; height: 40px; border: 2px solid var(--gray-400); border-radius: 20px; display: flex; justify-content: center; padding-top: 8px; }
.wheel { width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scroll 2s ease-in-out infinite; }

@keyframes scroll { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0; } }

.services { padding: 120px 40px; background: var(--cream); }
.services .section-title { color: var(--navy); }
.services .section-description { color: var(--gray-600); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 80px; }

.section-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 20px; color: var(--text-primary); }
.section-description { font-size: 1.1rem; color: var(--text-secondary); }

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.service-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.service-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
    border-color: var(--gold);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
    color: var(--gold);
    border-radius: 12px;
    margin-bottom: 16px;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.5;
}

.service-list {
    margin-bottom: 12px;
}

.service-list li {
    font-size: 0.8rem;
    color: var(--gray-500);
    padding-left: 14px;
    margin-bottom: 4px;
    position: relative;
}    margin-bottom: 6px;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.service-link:hover {
    gap: 10px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none;
    background: var(--white);
}

.service-card-featured .service-image {
    height: 100%;
    min-height: 280px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none;
}

.service-card-featured .service-image {
    height: 100%;
    min-height: 450px;
}

.service-card-featured .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-card-featured .service-content {
    padding: 30px;
}

.service-card-reverse {
    direction: ltr;
}

.service-card-reverse .service-image {
    order: 2;
}

.service-card-reverse .service-content {
    order: 1;
    direction: ltr;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
    color: var(--gold);
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.service-title { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-primary); }
.service-description { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.7; }
.service-list { margin-bottom: 25px; }
.service-list li { position: relative; padding-left: 25px; margin-bottom: 12px; color: var(--text-secondary); font-size: 0.95rem; }
.service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.service-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--gold); }
.service-link:hover { gap: 12px; }

.features { padding: 120px 40px; background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%); }
.features-header { text-align: center; margin-bottom: 50px; }
.features .section-badge { background: rgba(212, 168, 83, 0.2); color: var(--gold); }
.features .section-title { color: var(--white); }
.features .section-description { color: var(--gray-300); max-width: 700px; margin: 0 auto; }

.features-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-big {
    text-align: center;
}

.stat-big .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-big .stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-300);
    margin-top: 8px;
}

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; max-width: 1400px; margin: 0 auto; }

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 168, 83, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 83, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--green-dark);
    border-radius: 16px;
    margin-bottom: 25px;
}

.feature-content h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--white); font-weight: 600; }
.feature-content p { font-size: 0.95rem; color: var(--gray-400); line-height: 1.7; margin-bottom: 18px; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { position: relative; padding-left: 20px; margin-bottom: 10px; color: var(--gray-300); font-size: 0.9rem; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.features-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.features-cta h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.features-cta p {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 30px;
}

.features-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.features-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.features-cta .btn-primary {
    background: var(--gold);
    color: var(--green-dark);
}

.features-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}

.features-cta .btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.features-cta .btn-outline:hover {
    background: var(--gold);
    color: var(--green-dark);
}

.about { padding: 120px 40px; background: var(--cream); }
.about-container { max-width: 1200px; margin: 0 auto; }
.about-header { text-align: center; margin-bottom: 50px; }
.about-content { text-align: center; max-width: 900px; margin: 0 auto 60px; }
.about-content p { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }

.values-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }

.value-item {
    text-align: center;
    padding: 25px 35px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease-out);
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.value-item:hover { transform: translateY(-5px); border-color: var(--gold); }

.value-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border-radius: 50%;
    margin: 0 auto 15px;
}

.value-item h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-primary); }
.value-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.faq { padding: 120px 40px; background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq .section-badge { background: rgba(212, 168, 83, 0.2); color: var(--gold); }
.faq .section-title { color: var(--white); }
.faq .section-description { color: var(--gray-300); }
.faq-list { display: flex; flex-direction: column; gap: 16px; }

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 168, 83, 0.2);
    overflow: hidden;
}


.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-icon { transition: transform 0.3s var(--ease-out); }
details[open] .faq-icon { transform: rotate(180deg); }
.faq-answer { 
    padding: 0 30px 20px 30px; 
    color: var(--gray-300);
    line-height: 1.7;
    font-size: 1rem;
}

.contact { padding: 120px 40px; background: var(--cream); overflow: hidden; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start; width: 100%; }
.contact-info { max-width: 100%; }
.contact-description { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 40px; }
.contact-options { display: flex; flex-direction: column; gap: 16px; width: 100%; }

.contact-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease-out);
}

.contact-option:hover { border-color: var(--gold); transform: translateX(8px); }

.option-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--navy); border-radius: var(--radius-sm); }
.option-content { flex: 1; min-width: 0; }
.option-label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.option-value { font-weight: 600; color: var(--text-primary); word-break: break-word; }
.option-arrow { color: var(--text-muted); flex-shrink: 0; }

.contact-form-wrapper {
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
    .contact { padding: 80px 20px; }
    .contact-form-wrapper { padding: 24px 20px; }
    .contact-form { gap: 16px; }
    .form-group label { font-size: 0.85rem; }
    .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; font-size: 0.9rem; }
    .form-group textarea { min-height: 100px; }
    .contact h2 { font-size: 1.5rem; }
    .contact-description { font-size: 0.95rem; }
    .option-icon { width: 40px; height: 40px; }
    .option-icon svg { width: 18px; height: 18px; }
    .contact-option { padding: 14px 16px; }
}

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.95rem; font-weight: 500; color: var(--text-secondary); }

.form-group input, .form-group select, .form-group textarea {
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }

.cta { padding: 100px 40px; background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%); }
.cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta h2 { font-size: 2.5rem; color: var(--white); margin-bottom: 20px; }
.cta p { font-size: 1.15rem; color: var(--gray-300); margin-bottom: 40px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta .btn-secondary { border-color: var(--gold); color: var(--gold); }
.cta .btn-secondary:hover { background: var(--gold); color: var(--green-dark); }

.footer { padding: 50px 40px 25px; background: linear-gradient(180deg, #051515 0%, #0a1a1a 100%); border-top: none; }
.footer-container { max-width: 1400px; margin: 0 auto; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-brand { flex-shrink: 0; }
.footer-brand .logo-img { height: 50px; width: auto; }
.footer-tagline { color: var(--gold); font-size: 1.1rem; font-weight: 600; margin-top: 10px; }
.footer-links { display: flex; gap: 50px; flex-wrap: wrap; flex: 1; justify-content: space-between; }
.footer-column h4 { font-size: 0.9rem; margin-bottom: 15px; color: var(--white); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-column ul { display: flex; flex-direction: column; gap: 10px; }
.footer-column li { list-style: none; display: flex; align-items: center; gap: 8px; color: var(--gray-300); font-size: 0.85rem; }
.footer-column li svg { flex-shrink: 0; color: var(--gold); }
.footer-column a { color: var(--gray-300); font-size: 0.85rem; }
.footer-column a:hover { color: var(--gold); }
.footer-column span { color: var(--gray-300); }
.footer-social { display: flex; gap: 12px; margin-top: 15px; }
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #051515;
    border: 1px solid var(--gray-700);
    border-radius: 8px;
    color: var(--gray-300);
    transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-500);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-license { color: var(--gray-500); font-size: 0.8rem; }

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
    z-index: 999;
    transition: all 0.3s var(--ease-out);
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(212, 168, 83, 0.5); }
@media (max-width: 1200px) { 
    .hero-visual { display: none; } 
}

@media (max-width: 992px) {
    .nav-list { display: none; }
    .menu-toggle span { background: var(--white) !important; }
}

@media (max-width: 768px) {
    .header { 
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100vw;
        z-index: 1000;
        background: transparent;
        overflow: visible;
    }
    .header.nav-open {
        pointer-events: none;
    }
    .header.nav-open .logo,
    .header.nav-open .menu-toggle,
    .header.nav-open .nav {
        pointer-events: auto;
    }
    .header.nav-open,
    .header.scrolled {
        background: #0a1628;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    .nav-open ~ .hero,
    .scrolled ~ .hero {
        margin-top: 0;
    }
    .header-container { 
        width: 100%;
        max-width: 100%;
        padding: 0 20px; 
        box-sizing: border-box;
    }
    .logo { max-width: 100%; }
    .logo-img { height: 35px; max-width: 100%; }
    .header .btn-primary { display: none !important; }
    .menu-toggle { 
        display: flex; 
        z-index: 10001;
        position: relative;
    }
    .menu-toggle span { 
        background: var(--white) !important; 
    }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
    .nav { 
        display: none; 
    }
    .nav.active { 
        display: flex !important; 
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        background: #0a1628;
        padding: 120px 24px 60px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    .nav.active.show { 
        opacity: 1;
        visibility: visible;
    }
    .nav.active .nav-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }
    .nav.active .nav-link { 
        color: var(--white) !important; 
        font-size: 1.4rem; 
        font-weight: 600; 
        width: 100%;
    }
    .nav.active .nav-dropdown-menu { display: none; }
    .nav.active .nav-dropdown-trigger::after { display: none; }
    .hero { padding: 100px 20px 50px; min-height: auto; }
    .hero-title { font-size: 1.8rem; }
    .hero-description { font-size: 0.9rem; }
    .hero-actions { flex-direction: column; }
    .btn-lg { width: 100%; justify-content: center; padding: 14px 24px; font-size: 0.9rem; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .stat-divider { display: none; }
    .stat-number { font-size: 1.4rem; }
    .stat-label { font-size: 0.75rem; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card-featured { grid-column: span 1; grid-template-columns: 1fr; }
    .service-card-featured .service-image { min-height: 200px; }
    .service-card-featured .service-content { padding: 24px; }
    .service-card { padding: 24px; }
    .features-stats { gap: 30px; }
    .stat-big .stat-number { font-size: 2.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .feature-card { padding: 25px 20px; }
    .feature-icon { width: 55px; height: 55px; }
    .feature-icon svg { width: 28px; height: 28px; }
    .feature-content h3 { font-size: 1.2rem; }
    .feature-content p { font-size: 0.85rem; }
    .feature-list li { font-size: 0.8rem; }
    .service-title { font-size: 1.3rem; }
    .service-description { font-size: 0.9rem; }
    .service-list li { font-size: 0.85rem; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-card { grid-template-columns: 1fr; padding: 24px; }
    .feature-card:nth-child(even) .feature-visual { order: 0; }
    .feature-visual img { height: 220px; }
    .feature-content h3 { font-size: 1.4rem; }
    .feature-content p { font-size: 0.9rem; }
    .footer { padding: 50px 20px 30px; }
    .footer-links { grid-template-columns: 1fr; gap: 30px; }
    .footer-column h4 { margin-bottom: 15px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; padding-top: 20px; }
    .contact-container { display: flex; flex-direction: column; gap: 30px; padding: 0 16px; }
    .contact-info { max-width: 100%; }
    .section-title { font-size: 1.5rem; }
    .contact-description { font-size: 0.9rem; margin-bottom: 24px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .service-card { padding: 30px; }
    .value-item { padding: 30px 20px; }
    .whatsapp-float { width: 55px; height: 55px; }
    .footer-links { grid-template-columns: 1fr; gap: 25px; }
    .footer-brand { text-align: center; }
    .footer-column { text-align: center; }
}

/* Servicios Page */
.services-page-hero {
    position: relative;
    padding: 180px 40px 100px;
    min-height: 70vh;
    background: linear-gradient(135deg, #0a1628 0%, #162d4a 100%);
    overflow: hidden;
}

.services-page-hero .hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.services-page-hero .hero-visual {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.services-page-hero .hero-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.services-page-hero .hero-visual-accent {
    position: absolute;
    top: 30px;
    left: -30px;
    right: 0;
    bottom: 0;
    border: 3px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}

.services-page-grid .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-page-grid .section-header .section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.services-page-grid .section-header .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.services-page-grid .section-header .section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.service-full-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-full-card:nth-child(even) {
    direction: rtl;
}

.service-full-card:nth-child(even) .service-full-content {
    direction: ltr;
}

.service-full-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-full-image {
    position: relative;
    overflow: hidden;
}

.service-full-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

.service-full-accent {
    position: absolute;
    top: 20px;
    left: -20px;
    right: 0;
    bottom: 0;
    border: 3px solid var(--gold);
    border-radius: 0 20px 20px 0;
    z-index: 1;
}

.service-full-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-full-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border-radius: 14px;
    margin-bottom: 20px;
}

.service-full-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-full-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-full-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.service-full-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-full-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.service-full-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-full-link:hover {
    color: var(--gold);
    gap: 12px;
}

@media (max-width: 1100px) {
    .services-full-grid {
        grid-template-columns: 1fr;
    }
    
    .service-full-card,
    .service-full-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .service-full-image img {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .services-page-hero { padding: 150px 20px 60px; min-height: auto; }
    .services-page-hero .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .services-page-hero .hero-visual { order: -1; }
    .services-page-hero .hero-visual img { height: 280px; }
    .services-page-hero .hero-visual-accent { display: none; }
    .services-page-hero .hero-title { font-size: 2rem; }
    .services-page-grid { padding: 60px 20px; }
    .service-full-content { padding: 25px; }
    .service-full-image img { min-height: 220px; }
    .service-full-accent { display: none; }
}

.services-page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(42, 71, 143, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 83, 0.1) 0%, transparent 40%);
}

.services-page-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.services-page-hero .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.services-page-hero .title-highlight {
    color: var(--gold);
}

.services-page-hero .hero-description {
    font-size: 1.15rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 35px;
}

.services-page-hero .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.services-page-grid {
    padding: 100px 40px;
    background: var(--cream);
    overflow: hidden;
}

.services-page-grid .container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.services-page-grid .service-card-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.services-page-grid .service-image {
    position: relative;
    overflow: hidden;
}

.services-page-grid .service-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.services-page-grid .service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.services-page-grid .service-icon-large {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: 14px;
    margin-bottom: 20px;
}

.services-page-grid .service-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.services-page-grid .service-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.services-page-grid .service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.services-page-grid .service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.services-page-grid .service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.services-page-grid .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.services-page-grid .btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

@media (max-width: 992px) {
    .services-page-hero { padding: 150px 20px 60px; min-height: auto; }
    .services-page-grid .services-grid { grid-template-columns: 1fr; }
    .services-page-grid .service-card-featured { grid-template-columns: 1fr; }
    .services-page-grid .service-image img { min-height: 250px; }
}

/* Mobile header - smaller WhatsApp button */
@media (max-width: 768px) {
    .header-actions { gap: 10px; }
    .header .btn-primary { padding: 10px 12px; }
    .header .btn-primary .btn-text { display: none; }
    .header .btn-primary { width: 40px; height: 40px; padding: 0; justify-content: center; }
    .menu-toggle { display: flex; }
}

/* Contact Page Dedicated Styles */
.contact-page-hero {
    background: linear-gradient(135deg, #051515 0%, #0a1e1e 100%) !important;
}

.contact-main-section {
    padding: 100px 40px;
    background: var(--bg-primary);
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
    width: 100%;
}

.contact-sidebar {
    position: sticky;
    top: 120px;
}

.contact-sidebar .section-badge {
    margin-bottom: 12px;
}

.align-left {
    text-align: left;
    margin-left: 0;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease-out);
}

.info-card:hover {
    border-color: var(--gold);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.info-text p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    word-break: break-word;
}

.info-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
    word-break: break-word;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    color: var(--navy);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.contact-form-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(212, 168, 83, 0.05), transparent 70%);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-footer {
    margin-top: 10px;
    text-align: center;
}

.form-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.map-section {
    padding-bottom: 0;
    background: var(--bg-primary);
}

.map-container {
    height: 500px;
    width: 100%;
    filter: grayscale(0.2) contrast(1.1);
}

@media (max-width: 1100px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-sidebar {
        position: static;
        max-width: 600px;
    }

    .info-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: 1fr;
    }
    .contact-main-section {
        padding: 40px 15px;
    }
    
    .contact-form-card {
        padding: 24px 15px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .info-card {
        padding: 16px;
        gap: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-text p {
        font-size: 1rem;
    }

    .contact-container {
        padding: 40px 15px;
        gap: 40px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-option {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-page-hero .hero-visual {
        display: none;
    }
}