/* DeMi Detox - Ultra-Premium 2025 Design */

:root {
    /* Primary Colors - Deep Professional Palette */
    --primary-deep: #0a1628;
    --primary-navy: #1a2f4a;
    --primary-blue: #2d4a6f;
    --accent-gold: #d4af37;
    --accent-gold-hover: #e6c45c;

    /* Grays & Neutrals */
    --gray-50: #fafbfc;
    --gray-100: #f4f6f8;
    --gray-200: #e8ecf1;
    --gray-300: #d1d9e3;
    --gray-400: #b4bdc8;
    --gray-500: #6b7785;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --gray-900: #0d1117;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Shadows - 2025 Depth System */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.24);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --max-width: 1440px;
    --container-padding: 2.5rem;
    --section-padding: 6rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--gray-50);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-deep);
    margin-bottom: 1.5rem;
}

h1 { font-size: clamp(3rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1.25rem;
    color: var(--gray-600);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: white;
}

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

.header-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}

.phone-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.phone-link {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
    letter-spacing: -0.01em;
}

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

.info-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.info-btn-large {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary-navy);
    background: white;
    color: var(--primary-navy);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.info-btn-large:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
    transform: scale(1.1);
}

.confidential-text {
    font-size: 0.7rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-background.png') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(26, 47, 74, 0.88) 50%,
        rgba(45, 74, 111, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.phone-cta-large {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-primary, .cta-secondary {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: var(--shadow-lg);
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c49b2e 100%);
    color: var(--primary-deep);
}

.cta-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.cta-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.cta-icon {
    font-size: 1.3em;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.trust-icon {
    font-size: 1.5rem;
}

.trust-text {
    font-size: 1rem;
    font-weight: 500;
}

.scroll-indicator {
    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.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounceArrow 2s infinite;
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===== SERVICE NOTICE ===== */
.service-notice {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-deep) 100%);
}

.notice-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    color: var(--primary-deep);
    margin-bottom: 1rem;
}

.notice-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    color: var(--primary-deep);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary-deep);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    background: var(--primary-navy);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== JOURNEY TIMELINE ===== */
.journey-section {
    background: linear-gradient(to bottom, white, var(--gray-100));
}

.journey-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
}

.journey-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 10;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #c49b2e);
    color: var(--primary-deep);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

.step-content {
    padding: 0 1rem;
}

.step-title {
    font-size: 1.5rem;
    color: var(--primary-deep);
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.journey-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gray-300), var(--accent-gold), var(--gray-300));
    position: relative;
    top: -60px;
}

.journey-cta {
    text-align: center;
}

/* ===== SUCCESS SECTION ===== */
.success-section {
    background: var(--gray-100);
}

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

.success-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.success-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-gold);
    color: var(--primary-deep);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
}

.success-text {
    padding: 2rem;
}

.success-title {
    color: var(--primary-deep);
    margin-bottom: 1.5rem;
}

.success-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.success-quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-navy);
    border-left: 4px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.success-disclaimer {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

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

.gallery-icon {
    font-size: 3rem;
    color: white;
}

.gallery-disclaimer {
    text-align: center;
    margin-top: 2rem;
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ===== MAP SECTION ===== */
.map-section {
    background: var(--gray-100);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin: 3rem 0;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.map-info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.map-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.map-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.map-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.map-info-card p {
    color: var(--gray-600);
    margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--gray-50);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-deep);
    transition: var(--transition-base);
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 2rem 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
}

/* ===== PRIVACY SECTION ===== */
.privacy-section {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-navy));
    color: white;
}

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

.privacy-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.privacy-title {
    color: white;
    margin-bottom: 1rem;
}

.privacy-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.privacy-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.privacy-check {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.privacy-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.privacy-card p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg,
        var(--accent-gold) 0%,
        #c49b2e 100%);
    color: var(--primary-deep);
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    color: var(--primary-deep);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--primary-navy);
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-buttons .cta-primary {
    background: var(--primary-deep);
    color: white;
}

.cta-buttons .cta-primary:hover {
    background: var(--primary-navy);
}

.cta-buttons .cta-secondary {
    background: transparent;
    color: var(--primary-deep);
    border-color: var(--primary-deep);
}

.cta-buttons .cta-secondary:hover {
    background: rgba(10, 22, 40, 0.1);
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-weight: 600;
    color: var(--primary-navy);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-deep);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: white;
    margin: 0;
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-phone {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.confidential-badge {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

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

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.footer-disclaimer a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin: 0.5rem 0;
}

.footer-note {
    font-size: 0.85rem !important;
    font-style: italic;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    position: relative;
    animation: slideUp 0.4s ease;
}

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

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

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-deep);
    transform: rotate(90deg);
}

.modal-title {
    color: var(--primary-deep);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.modal-highlight {
    background: var(--gray-100);
    padding: 1.25rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-gold);
}

.modal-highlight p {
    margin: 0;
    color: var(--primary-deep);
}

.modal-list {
    list-style: none;
    padding-left: 0;
}

.modal-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.modal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-resources {
    background: #e6f3ff;
    padding: 1.25rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.modal-resources p {
    margin: 0.5rem 0;
}

.modal-resources a {
    color: var(--primary-navy);
    font-weight: 600;
}

.modal-btn {
    width: 100%;
    margin-top: 1.5rem;
    background: #22c55e;
    color: white;
    border: 3px solid #16a34a;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.modal-btn:hover {
    background: #16a34a;
    border-color: #15803d;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: var(--shadow-2xl);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4rem;
        --container-padding: 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .success-content,
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .journey-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .journey-connector {
        width: 3px;
        height: 40px;
        top: 0;
        background: linear-gradient(to bottom, var(--gray-300), var(--accent-gold), var(--gray-300));
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem;
        --container-padding: 1.5rem;
    }

    body {
        font-size: 16px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--primary-deep);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition-base);
        box-shadow: var(--shadow-xl);
    }

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

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 100svh;
        padding: 6rem 0 3rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .phone-cta-large {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .services-grid,
    .gallery-grid,
    .map-info,
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .success-image {
        aspect-ratio: 16/9;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-trust {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .service-card,
    .map-info-card,
    .privacy-card {
        padding: 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .modal-overlay,
    .lightbox,
    .cta-section,
    .info-btn,
    .info-btn-large {
        display: none !important;
    }
}