/* ========================================
   KAMER HABITAT - Premium Stylesheet
   ======================================== */

:root {
    /* Primary Colors */
    --gold: #C9A227;
    --gold-light: #E3C766;
    --gold-dark: #A68521;
    --gold-glow: rgba(201, 162, 39, 0.3);
    
    /* Neutrals */
    --black: #0D0D0D;
    --black-soft: #1A1A1A;
    --charcoal: #2A2A2A;
    --gray-900: #333333;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-300: #CCCCCC;
    --gray-100: #F0F0F0;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.7) 50%, rgba(13,13,13,0.9) 100%);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 7rem;
    --container-width: 1280px;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== LOADER ========== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: loading 1.5s ease-out forwards;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-slow);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

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

header.scrolled nav a {
    color: var(--gray-900);
}

header.scrolled .phone-link {
    color: var(--gray-900);
}

header.scrolled .mobile-toggle span {
    background: var(--black);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-base);
}

/* Logo Texte */
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: var(--transition-base);
}

.logo-text .logo-accent {
    color: var(--gold);
}

header.scrolled .logo-text {
    color: var(--black);
}

header.scrolled .logo-text .logo-accent {
    color: var(--gold);
}

/* Footer Logo */
.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.4rem;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav > a,
.main-nav .nav-dropdown-trigger {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

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

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

header.scrolled .main-nav > a,
header.scrolled .main-nav .nav-dropdown-trigger {
    color: var(--gray-900);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    border: none;
    background: none;
}

.nav-dropdown-trigger i {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 250px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--gold-dark);
}

.nav-dropdown-menu a i {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

/* Legacy nav styles for compatibility */
nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.phone-link i {
    width: 18px;
    height: 18px;
}

.phone-link:hover {
    color: var(--gold);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-base);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-base);
}

.mobile-nav a:hover {
    color: var(--gold);
    padding-left: 1rem;
}

/* Mobile Submenu */
.mobile-submenu {
    display: flex;
    flex-direction: column;
    margin: 0.5rem 0;
}

.mobile-submenu-title {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 0 0.5rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.mobile-submenu a {
    font-size: 1.1rem !important;
    padding: 0.75rem 0 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.mobile-submenu a:hover {
    padding-left: 1.5rem !important;
}

.mobile-menu-footer {
    padding-top: 2rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.85) 50%, rgba(13,13,13,0.7) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 8rem 2rem 5rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    width: 18px;
    height: 18px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
}

.hero-title-highlight {
    display: block;
    color: var(--gold);
    position: relative;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 520px;
}

.hero-description strong {
    color: var(--gold);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat {
    position: relative;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-left: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
}

/* Hero Trust Items */
.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.trust-item i {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

/* Hero Form Styles - Compact */
.hero-form-wrapper {
    position: relative;
}

.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.hero-form-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.hero-form-header h2 {
    font-size: 1.15rem;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-form-header h2 i {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-form .form-group input,
.hero-form .form-group select {
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-base);
    background: var(--off-white);
    width: 100%;
}

.hero-form .form-group input:focus,
.hero-form .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.hero-form .form-group input::placeholder {
    color: var(--gray-500);
}

.hero-form .btn {
    margin-top: 0.25rem;
}

.hero-form-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    transition: var(--transition-base);
}

.phone-cta i {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.phone-cta:hover {
    color: var(--gold);
}

.form-secure {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.form-secure i {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator i {
    width: 16px;
    height: 16px;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== SECTION STYLES ========== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-700);
    font-size: 1.1rem;
}

.section-header-light h2 {
    color: var(--white);
}

.section-header-light p {
    color: rgba(255,255,255,0.7);
}

/* ========== SERVICES ========== */
.services {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-featured {
    grid-column: span 2;
    grid-row: span 2;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 0;
    overflow: hidden;
}

.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-featured:hover .service-image img {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.service-featured .service-content {
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    transition: var(--transition-base);
}

.service-icon i {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.service-features i {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link i {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.service-link:hover {
    color: var(--gold-dark);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ========== WHY US ========== */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 40%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.why-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition-base);
}

.why-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    transition: var(--transition-base);
}

.why-icon i {
    width: 28px;
    height: 28px;
}

.why-card:hover .why-icon {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.why-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* ========== REALISATIONS ========== */
.realisations {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-large {
    grid-row: span 2;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    width: fit-content;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.gallery-cta p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-100);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    width: 18px;
    height: 18px;
    color: var(--gold);
    fill: var(--gold);
}

.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--black);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonial-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.testimonial-btn i {
    width: 20px;
    height: 20px;
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonials-dots .dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-100);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
}

.trust-badge i {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

/* ========== ZONE ========== */
.zone {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.zone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.zone-content .section-tag {
    margin-bottom: 1rem;
}

.zone-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.zone-content > p {
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.zone-list {
    margin-bottom: 2rem;
}

.zone-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.zone-list li i {
    color: var(--gold);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.zone-list li strong {
    display: block;
    margin-bottom: 0.25rem;
}

.zone-list li span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.zone-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gold-dark);
}

.zone-info i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.zone-map-card {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--gray-100);
}

.map-icon {
    margin-bottom: 1.5rem;
}

.map-icon i {
    width: 80px;
    height: 80px;
    color: var(--gold);
}

.zone-map-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.zone-map-card > p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.map-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.map-stat {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
}

.map-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.map-stat span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ========== CTA ========== */
.cta {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.95) 0%, rgba(166, 133, 33, 0.9) 100%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.15rem;
    color: rgba(0,0,0,0.7);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info .section-tag {
    margin-bottom: 1rem;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

a.contact-card:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-card-icon i {
    width: 22px;
    height: 22px;
}

.contact-card-content strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-card-content span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-500);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--white);
}

.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(201, 162, 39, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.form-notice i {
    width: 14px;
    height: 14px;
}

/* ========== FOOTER ========== */
footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-social a i {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--gold);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 99;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.back-to-top i {
    width: 24px;
    height: 24px;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    z-index: 99;
}

.whatsapp-float i {
    width: 22px;
    height: 22px;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ========== ANIMATIONS ========== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 5rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-cta .btn {
        display: none;
    }
    
    .header-cta .phone-link span {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 350px;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-large {
        grid-row: span 1;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .zone-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-form-wrapper {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .header-container {
        padding: 0.875rem 1.25rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .main-nav {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex !important;
    }
    
    .header-cta {
        gap: 1rem;
    }
    
    .header-cta .btn {
        display: none !important;
    }
    
    .header-cta .phone-link {
        padding: 0.5rem;
        background: rgba(201, 162, 39, 0.15);
        border-radius: var(--radius-md);
    }
    
    .header-cta .phone-link span {
        display: none;
    }
    
    .hero-container {
        padding: 6.5rem 1.25rem 3rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
    
    .hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }
    
    .hero-description {
        max-width: 100%;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.25rem;
        flex-wrap: wrap;
        padding-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-suffix {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-trust {
        justify-content: center;
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .hero-form-wrapper {
        max-width: 100%;
    }
    
    .hero-form-card {
        padding: 1.25rem;
    }
    
    .hero-form-header h2 {
        font-size: 1.05rem;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-featured {
        grid-column: span 1;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 1rem;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ========== PAGE HERO (INTERIOR PAGES) ========== */
.page-hero {
    padding: 10rem 0 4rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.page-hero-small {
    padding: 9rem 0 3rem;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(201, 162, 39, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 35%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb i {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span {
    color: var(--gold);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-badge-item i {
    width: 16px;
    height: 16px;
}

/* ========== NAV DROPDOWN ========== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown-toggle i {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.nav-dropdown-menu a:hover {
    background: var(--off-white);
    color: var(--gold);
}

/* ========== LEGAL PAGES ========== */
.legal-content {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 100px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-100);
}

.legal-toc h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.legal-toc ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-toc a {
    font-size: 0.9rem;
    color: var(--gray-700);
    padding: 0.5rem 0;
    border-left: 2px solid transparent;
    padding-left: 1rem;
    margin-left: -1rem;
}

.legal-toc a:hover {
    color: var(--gold);
    border-left-color: var(--gold);
}

.legal-text {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--gray-100);
}

.legal-update {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.legal-text article {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.legal-text article:last-child {
    margin-bottom: 0;
}

.legal-text h2 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}

.legal-text h3 {
    font-size: 1.1rem;
    color: var(--black);
    margin: 1.5rem 0 0.75rem;
}

.legal-text p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-text li {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-info-box {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid var(--gold);
}

.legal-info-box p {
    margin-bottom: 0.5rem;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.legal-table th {
    background: var(--off-white);
    font-weight: 600;
    color: var(--black);
}

.legal-table td {
    color: var(--gray-700);
}

/* ========== CONTACT PAGE SPECIFIC ========== */
.contact-page {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-side > p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

a.contact-method:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.contact-method.whatsapp:hover {
    border-color: #25D366;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-method.whatsapp .contact-method-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-method-icon i {
    width: 24px;
    height: 24px;
}

.contact-method-content strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-method-content span {
    display: block;
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
}

.contact-method-content small {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.why-contact {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-100);
}

.why-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.why-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.why-contact li i {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Form enhancements */
.honeypot {
    position: absolute;
    left: -9999px;
}

.required {
    color: #e74c3c;
}

.form-checkbox {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    margin-top: 2px;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text a {
    color: var(--gold);
    text-decoration: underline;
}

/* Zone section on contact page */
.contact-zone {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.zone-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.zone-content-center h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.zone-content-center > p {
    color: var(--gray-700);
    margin-bottom: 3rem;
}

.zone-departments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.zone-dept {
    text-align: center;
    padding: 2rem;
    background: var(--off-white);
    border-radius: var(--radius-lg);
}

.zone-dept i {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.zone-dept h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.zone-dept p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Map section */
.contact-map {
    width: 100%;
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(50%);
}

/* FAQ on contact page */
.contact-faq {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-100);
}

.faq-item h3 {
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.faq-item h3 i {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 1.75rem;
}

/* Reassurance section */
.reassurance {
    padding: 3rem 0;
    background: var(--black);
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.reassurance-item {
    text-align: center;
    color: var(--white);
}

.reassurance-item i {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.reassurance-item h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.reassurance-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== SERVICE PAGES ========== */
.service-intro {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-intro-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.service-intro-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-intro-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Service prestations */
.service-prestations {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.prestation-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.prestation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.prestation-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.prestation-card-icon i {
    width: 28px;
    height: 28px;
}

.prestation-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.prestation-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Process steps */
.service-process {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -1rem;
    width: calc(100% - 70px);
    height: 2px;
    background: var(--gray-100);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Service advantages */
.service-advantages {
    padding: var(--section-padding) 0;
    background: var(--black);
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 162, 39, 0.3);
}

.advantage-card i {
    width: 50px;
    height: 50px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Service FAQ */
.service-faq {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-700);
    line-height: 1.8;
}

/* Service CTA */
.service-cta {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.service-cta-box {
    background: var(--gradient-gold);
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
}

.service-cta-box h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--black);
    margin-bottom: 1rem;
}

.service-cta-box p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== 404 PAGE ========== */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    text-align: center;
    padding: 2rem;
}

.page-404-content {
    max-width: 600px;
}

.page-404-icon {
    margin-bottom: 2rem;
}

.page-404-icon i {
    width: 120px;
    height: 120px;
    color: var(--gold);
}

.page-404-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 60px rgba(201, 162, 39, 0.3);
}

.page-404 h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-404 p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.page-404-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.page-404-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-404-nav p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.page-404-nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.page-404-nav-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.page-404-nav-links a:hover {
    color: var(--gold);
}

/* ========== RESPONSIVE FOR NEW SECTIONS ========== */
@media (max-width: 1024px) {
    .legal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .legal-toc {
        position: static;
    }
    
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-intro-image {
        order: -1;
    }
    
    .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .zone-departments {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .reassurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 8rem 0 3rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .prestations-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-text {
        padding: 2rem;
    }
    
    .service-cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .reassurance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}



