/* ===================================
   VARIABLES ET RESET
   =================================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

:root {
    --primary-color: #1A237E;
    /* Royal Blue */
    --secondary-color: #FF9800;
    /* Modern Orange */
    --accent-light: #E3F2FD;
    /* Light Blue */
    --accent-green: #43E695;
    /* Light Green */
    --accent-gray: #F5F7FA;
    /* Modern Light Gray */
    --text-dark: #222;
    --text-light: #6C757D;
    --border-color: #ddd;
    --success-color: #27AE60;
    --error-color: #E74C3C;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --shadow-soft: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
    --transition: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Variables */
body.dark-mode {
    --primary-color: #bb86fc;
    /* Lighter purple/blue for dark mode */
    --secondary-color: #ffb74d;
    /* Lighter orange for dark mode */
    --accent-light: #1e1e24;
    /* Dark gray for backgrounds */
    --accent-green: #00e676;
    --accent-gray: #121212;
    /* Very dark gray */
    --text-dark: #f5f5f5;
    /* Light text */
    --text-light: #b0b0b0;
    /* Dimmer text */
    --border-color: #333;
    --glass-bg: rgba(30, 30, 36, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);
    background-color: var(--accent-gray);
}

body.dark-mode::before {
    background: linear-gradient(120deg, #1a1a2e 0%, #16213e 100%);
}

.theme-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.theme-btn:hover {
    background: rgba(128, 128, 128, 0.2);
}

.dark-mode .testimonial-card {
    background: var(--accent-light);
    color: var(--text-dark);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

/* Background animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, var(--accent-light) 0%, var(--accent-gray) 100%);
    background-size: 400% 400%;
    animation: bgShift 15s ease infinite;
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -2;
    background: url('data:image/svg+xml;utf8,<svg width="100vw" height="100vh" xmlns="http://www.w3.org/2000/svg"><circle cx="30%" cy="40%" r="180" fill="%2343E695" opacity="0.12"><animate attributeName="cx" values="30%;70%;30%" dur="12s" repeatCount="indefinite"/></circle><circle cx="70%" cy="60%" r="220" fill="%231A237E" opacity="0.10"><animate attributeName="cy" values="60%;30%;60%" dur="14s" repeatCount="indefinite"/></circle><circle cx="50%" cy="80%" r="120" fill="%23FF9800" opacity="0.10"><animate attributeName="r" values="120;180;120" dur="10s" repeatCount="indefinite"/></circle></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    animation: bg3dMove 20s linear infinite alternate;
}

@keyframes bgShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes bg3dMove {
    0% {
        filter: blur(0px) brightness(1);
    }

    50% {
        filter: blur(8px) brightness(1.05);
    }

    100% {
        filter: blur(0px) brightness(1);
    }
}

/* ===================================
   TYPOGRAPHIE
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary-color);
}

/* ===================================
   ACCESSIBILITY
   =================================== */
/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
    border-radius: 4px;
}

.skip-link:focus {
    top: 0;
}

/* Focus visible styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Remove outline for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
    outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: more) {

    a,
    button {
        text-decoration: underline;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast for focus */
@media (prefers-contrast: more) {

    button:focus-visible,
    a:focus-visible {
        outline: 3px dashed var(--primary-color);
    }
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

h4 {
    font-weight: 600;
    letter-spacing: -0.3px;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-weight: 400;
    font-size: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* ===================================
   BOUTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(244, 162, 97, 0.2);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #E08840);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(244, 162, 97, 0.6);
}

.btn-primary:active {
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #0a2e48;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 60, 93, 0.4);
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-white:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 60, 93, 0.3);
}

.btn-lg {
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-lg:hover {
    transform: translateY(-2px) !important;
}

.btn-block {
    width: 100%;
    display: block !important;
    text-align: center;
}

/* ===================================
   NAVIGATION
   =================================== */
nav {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-whatsapp {
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.nav-whatsapp:hover {
    transform: scale(1.15) rotate(5deg);
    color: #34d058;
    filter: drop-shadow(0 0 8px rgba(67, 230, 149, 0.4));
}

.cta-phone {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* ===================================
   SECTIONS PRINCIPALES
   =================================== */
section {
    padding: 80px 50px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #F4A261);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-title h2 {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(rgba(11, 60, 93, 0.85), rgba(11, 60, 93, 0.85)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 50px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-sub {
    min-height: 40vh !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background-color: rgba(244, 162, 97, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background-color: rgba(244, 162, 97, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite 1s;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    animation: fadeInDown 0.8s ease-out;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image {
    text-align: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(400px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   TRUST BADGES
   =================================== */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.badge {
    text-align: center;
    color: white;
}

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.badge p {
    color: #d0d0d0;
    font-size: 0.95rem;
}

/* ===================================
   SERVICES GRID
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 162, 97, 0.15), transparent);
    transition: left 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 0 15px 40px rgba(11, 60, 93, 0.12);
    border-color: rgba(244, 162, 97, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 15px;
}

.service-card p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* ===================================
   WHY CHOOSE US
   =================================== */
.why-choose {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 12px 0;
    display: flex;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-light);
    transition: var(--transition);
    line-height: 1.6;
}

.checklist li:hover {
    transform: translateX(8px);
    color: var(--text-dark);
}

.checklist li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 162, 97, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.checklist li:hover::before {
    background: rgba(244, 162, 97, 0.2);
    transform: scale(1.15);
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
    background-color: var(--accent-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stars {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.author-info h4 {
    margin: 0;
    font-size: 0.95rem;
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===================================
   PRIX ESTIMATOR
   =================================== */
.calculator {
    background-color: var(--accent-light);
    padding: 50px;
    border-radius: 15px;
    margin-top: 40px;
}

.calculator h3 {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.15);
    background-color: #fafafa;
}

.form-group select option {
    padding: 10px;
    background-color: white;
    color: var(--text-dark);
}

.form-group select option:checked {
    background: linear-gradient(var(--secondary-color), var(--secondary-color));
    background-color: var(--secondary-color) !important;
    color: white !important;
}

/* Volume Guide Styling */
.volume-guide {
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 12px;
    border: 1px dashed var(--border-color);
}

.guide-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-options {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.vol-opt {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    box-shadow: var(--shadow-soft);
}

.vol-opt:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.vol-opt.active {
    border-color: var(--secondary-color);
    background: var(--accent-light);
}

.vol-opt .icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.vol-opt .label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.result {
    text-align: center;
    background: white;
    padding: 35px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(244, 162, 97, 0.2);
    transition: var(--transition-smooth);
}

.result:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.result h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.estimation-breakdown {
    text-align: left;
    margin-bottom: 25px;
}

.estimation-breakdown .line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.estimation-breakdown .line:last-child {
    border-bottom: none;
}

.estimation-breakdown .line-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.estimation-breakdown .icon {
    font-size: 1.2rem;
    opacity: 0.9;
}

.result-price {
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 800;
    margin: 15px 0;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(244, 162, 97, 0.1);
}

.estimation-breakdown .line.total {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid var(--accent-light);
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--accent-light);
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    text-align: left;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
    font-family: inherit;
}

/* Consultation Form Grid */
#consultation-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

#consultation-form .form-group {
    margin-bottom: 0;
}

#consultation-form .form-group:nth-last-child(-n+2) {
    grid-column: 1 / -1;
}

#consultation-form button {
    grid-column: 1 / -1;
    margin-top: 10px;
}

#consultation-form>p {
    grid-column: 1 / -1;
    margin-top: 0 !important;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-content h4 {
    margin: 0;
    margin-bottom: 5px;
}

.info-content p {
    margin: 0;
    font-size: 0.95rem;
}

.info-content a {
    color: var(--secondary-color);
    font-weight: 600;
}

.business-hours {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.business-hours h4 {
    margin-bottom: 15px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
    border-bottom: none;
}

/* ===================================
   AREAS SERVED
   =================================== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.city-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.city-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.city-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.city-card p {
    font-size: 0.9rem;
}

/* ===================================
   MAPS
   =================================== */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 60, 93, 0.9));
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-overlay span {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a3251 100%);
    color: white;
    text-align: center;
    padding: 60px 50px;
    border-radius: 15px;
    margin: 60px auto;
}

.cta-banner h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-banner p {
    color: #e0e0e0;
    margin-bottom: 30px;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-section p {
    color: #c0c0c0;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #c0c0c0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(244, 162, 97, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: #a0a0a0;
}

/* ===================================
   FLOATING WHATSAPP BUTTON
   =================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    background-color: var(--accent-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(244, 162, 97, 0.1);
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
}


/* ===================================
   ZONES & AREAS PAGE - GLOBAL STYLES
   =================================== */

/* NAVBAR ADJUSTMENTS FOR 70PX LOGO */
nav {
    height: auto;
    padding: 15px 0;
}

.navbar {
    height: auto;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    margin: 0;
}

/* SEARCH SECTION - PREMIUM GLASSMORPHISM */
.search-section {
    background: linear-gradient(135deg, var(--primary-color), #09304a);
    padding: 120px 0 140px;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: 0 0 80px 80px;
    overflow: hidden;
}

.search-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 70px 50px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
    position: relative;
}

.search-box h3 {
    color: white;
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.search-input-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

/* CITY CARD - UNIFORM GRID SYSTEM */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: -80px;
    position: relative;
    z-index: 20;
}

.city-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.city-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

.city-image {
    width: 100%;
    height: 250px;
    /* ENFORCED GLOBAL HEIGHT */
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* PERFECT ALIGNMENT */
    object-position: center;
    transition: transform 1.2s ease;
}

.city-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.city-card:hover .city-image img {
    transform: scale(1.15);
}

.city-info {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.city-info h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 800;
}

.city-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Placeholder for city cards without specific photos */
.city-card.no-image .city-image {
    background: linear-gradient(135deg, var(--accent-light), #dee2e6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.city-card.no-image .city-image::before {
    content: '🗺️';
}

.search-msg {
    margin-top: 30px;
    font-weight: 700;
    font-size: 1.3rem;
    min-height: 1.6rem;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
    section {
        padding: 60px 30px;
    }

    .hero-content {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 50px 25px;
    }

    .navbar {
        padding: 12px 20px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 15px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 12px 15px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a {
        display: block;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 50px 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        margin-top: 40px;
        gap: 20px;
    }

    .why-choose {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 11px 22px;
        font-size: 0.8rem;
        width: 100%;
    }

    .btn-lg {
        padding: 13px 28px;
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    footer {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 40px 20px;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 15px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }


    .info-item {
        gap: 15px;
    }

    .info-icon {
        font-size: 1.5rem;
    }

    .business-hours {
        padding: 20px;
    }

    .checklist li {
        padding: 12px 0;
        font-size: 0.95rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .cta-phone {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 0.95rem;
    }

    section {
        padding: 40px 15px;
    }

    .container {
        max-width: 100%;
    }

    .navbar {
        padding: 10px 12px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero {
        padding: 50px 15px;
    }

    .hero-image {
        display: none;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
        border-radius: 20px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .cta-banner {
        padding: 35px 15px;
    }

    .cta-banner h2 {
        font-size: 1.3rem;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 0.95rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 12px;
    }

    .faq-answer {
        padding: 12px;
    }

    .faq-item.active .faq-answer {
        max-height: 400px;
    }

    .cities-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .map-container iframe {
        height: 250px;
    }

    .calculator {
        padding: 30px 15px;
    }

    .result {
        padding: 20px;
    }

    .result-price {
        font-size: 2rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 10px;
    }

    .hero-cta {
        gap: 10px;
    }

    .trust-badges {
        gap: 15px;
    }

    .badge-icon {
        font-size: 2rem;
    }

    .info-item {
        gap: 12px;
    }

    .checklist li::before {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }

    section {
        padding: 35px 12px;
    }

    .navbar {
        padding: 8px 10px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .hero {
        padding: 45px 12px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 9px 18px;
        font-size: 0.7rem;
    }

    .hero-cta {
        gap: 8px;
    }

    .service-card {
        padding: 20px 12px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .cta-banner {
        padding: 30px 12px;
    }

    .cta-banner h2 {
        font-size: 1.2rem;
    }

    .whatsapp-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 12px;
        right: 12px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .result-price {
        font-size: 1.8rem;
    }

    .map-container iframe {
        height: 200px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 10px;
    }

    .calculator {
        padding: 25px 12px;
    }

    .navbar {
        padding: 8px 10px;
    }

    .nav-links li {
        padding: 10px 12px;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
    }
}

/* ===================================
   ANIMATIONS SUPPLÉMENTAIRES
   =================================== */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(244, 162, 97, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(244, 162, 97, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(244, 162, 97, 0.5);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blur-in {
    from {
        filter: blur(10px);
        opacity: 0;
    }

    to {
        filter: blur(0);
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* ===================================
   BOOKING & CONSULTATION FEATURES
   =================================== */

/* Moving Checklist */
.checklist-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.checklist-category {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow);
}

.checklist-category h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.tasks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-item {
    display: flex;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.task-item:hover {
    background: var(--accent-light);
}

.task-item input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.task-text {
    flex: 1;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.task-item.completed .task-text {
    text-decoration: line-through;
    color: var(--success-color);
    opacity: 0.7;
}

/* Service Comparison */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.comparison-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.comparison-card.highlighted {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05), rgba(255, 152, 0, 0.02));
}

.card-header {
    margin-bottom: 25px;
}

.service-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.comparison-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.features-list li {
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
}

.features-list li:last-child {
    border-bottom: none;
}

/* Moving Timeline */
.timeline-container {
    position: relative;
    padding: 30px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #E08840);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-green);
    box-shadow: var(--shadow);
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Consultation Form */
#consultation-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

#consultation-form .form-group {
    margin-bottom: 20px;
}

#consultation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

#consultation-form input,
#consultation-form select,
#consultation-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

#consultation-form input:focus,
#consultation-form select:focus,
#consultation-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.2);
}

#consultation-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-block {
    width: 100%;
    text-align: center;
    display: inline-block;
}


/* ===================================
   LANGUAGE SWITCHER
   =================================== */
.lang-switcher {
    position: relative;
    margin-left: 15px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    width: 100px;
    margin-top: 10px;
    list-style: none;
    padding: 10px 0;
    display: none;
    z-index: 1000;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

.lang-dropdown li a {
    display: block;
    padding: 8px 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.lang-dropdown li a:hover {
    background: var(--accent-light);
}

/* ===================================
   INTERACTIVE CHECKLIST
   =================================== */
.checklist-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.checklist-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.checklist-category h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: var(--transition);
}

.task-item:last-child {
    border-bottom: none;
}

.task-item.completed .task-text {
    text-decoration: line-through;
    color: #a0a0a0;
}

.task-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* ===================================
   SERVICE COMPARISON
   =================================== */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.comparison-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.comparison-card.highlighted {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
    z-index: 2;
}

.card-header .service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    color: var(--text-dark);
}

/* ===================================
   MOVING TIMELINE
   =================================== */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    flex-grow: 1;
}


/* ===================================
   MOVING INFO GRID
   =================================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--secondary-color);
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 60, 93, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .comparison-card.highlighted {
        transform: scale(1);
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile form styles */
    #consultation-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #consultation-form .form-group {
        margin-bottom: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 12px 12px;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* ===================================
   FLOATING CONTROLS
   =================================== */
.floating-controls {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.whatsapp-btn,
.lang-switcher-floating {
    position: static !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    font-size: 28px;
    text-decoration: none;
}

.lang-switcher-floating {
    background-color: var(--primary-color);
    color: white;
    border: none;
    position: relative;
}

.lang-switcher-floating:hover,
.whatsapp-btn:hover {
    transform: translateY(-5px);
}

.lang-switcher-floating .lang-btn {
    background: transparent;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.lang-switcher-floating .lang-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    list-style: none;
    padding: 10px 0;
    min-width: 80px;
    display: none;
    animation: slideUp 0.3s ease;
}

.lang-switcher-floating:hover .lang-dropdown {
    display: block;
}

.lang-switcher-floating .lang-dropdown li a {
    padding: 10px 20px;
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.lang-switcher-floating .lang-dropdown li a:hover {
    background-color: var(--accent-light);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .floating-controls {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .whatsapp-btn,
    .lang-switcher-floating {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===================================
   LANGUAGE SWITCHER
   =================================== */
.lang-switcher {
    position: relative;
    cursor: pointer;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--accent-light);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 10px 0;
    min-width: 80px;
    display: none;
    z-index: 1000;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

/* Floating Lang Switcher */
.lang-switcher-floating {
    position: relative;
}

.lang-switcher-floating .lang-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 80px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-switcher-floating:hover .lang-btn,
.lang-switcher-floating.active .lang-btn {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.lang-switcher-floating .lang-dropdown {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10001;
}

.lang-switcher-floating:hover .lang-dropdown,
.lang-switcher-floating.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher-floating .lang-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark) !important;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    font-size: 0.9rem;
    text-align: center;
}

.lang-switcher-floating .lang-dropdown li a:hover {
    background: var(--accent-light);
    color: var(--primary-color) !important;
}

.lang-dropdown li a {
    display: block;
    padding: 8px 15px;
    color: var(--text-dark);
    text-align: center;
}

.lang-dropdown li a:hover {
    background: var(--accent-light);
    color: var(--primary-color);
}

/* ===================================
   CITIES GRID (AREAS)
   =================================== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.city-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.city-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.city-card h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.floating-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10000;
    align-items: flex-end;
}

/* WhatsApp Floating */
.whatsapp-btn-floating {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-gentle 2s infinite;
}

.whatsapp-btn-floating:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn-floating svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Animations */
@keyframes pulse-gentle {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-actions {
        right: 20px;
        bottom: 20px;
        gap: 12px;
    }

    .whatsapp-btn-floating {
        width: 55px;
        height: 55px;
    }

    .lang-switcher-floating .lang-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}