/* ==========================================
   Clean, Modern Light Mode CSS
   ========================================== */
   :root {
    --primary: #FF1493; /* Deep Pink */
    --primary-light: #FF69B4; /* Hot Pink */
    --primary-glow: rgba(255, 20, 147, 0.2);
    --bg-main: #FFFFFF;
    --bg-alt: #F8F9FA;
    --text-main: #111111;
    --text-muted: #555555;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
    --glass-blur: blur(16px);
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --spring: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 20px;
    --border-radius-lg: 32px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}


/* ==========================================
   Typography & Utilities
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
.h1-style { font-size: clamp(3rem, 8vw, 6rem); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; color: #ffffff; }
.h1-style.text-glow { text-shadow: 0 2px 10px rgba(255, 20, 147, 0.6), 0 0 40px rgba(255, 20, 147, 0.3); }
.seo-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }

.huge-text { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; margin-bottom: 1.5rem; display: block; }
.text-pink { color: var(--primary); }

p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 40px rgba(255, 20, 147, 0.2);
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 8rem 2rem;
    position: relative;
    z-index: 2;
}

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

/* ==========================================
   Glass Panels & UI Elements
   ========================================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-panel:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(255, 20, 147, 0.1);
}

.tilt-element {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--spring);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.btn-primary:hover::before {
    left: 100%;
    transition: 0.7s;
}

.glow-btn {
    box-shadow: 0 0 20px var(--primary-glow);
}

.glow-btn:hover {
    box-shadow: 0 0 30px var(--primary-glow), 0 0 40px rgba(255,20,147,0.3);
    transform: translateY(-3px) scale(1.02);
}

.btn-glass {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    color: var(--text-main);
}

.btn-glass:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ==========================================
   Floating Phone & Interactive Elements
   ========================================== */
.floating-phone {
    position: fixed;
    bottom: 110px; /* Stacked above LeadConnector chat */
    right: 20px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 990;
    text-decoration: none;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: var(--spring);
}

.phone-pulse {
    position: absolute;
    width: 100%; height: 100%;
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
    animation: radarPulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes radarPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.floating-phone:hover {
    transform: scale(1.1) rotate(-10deg);
}

.phone-tooltip {
    position: absolute;
    right: 90px;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    opacity: 0;
    transform: translateX(20px);
    transition: var(--spring);
    pointer-events: none;
    white-space: nowrap;
}

.floating-phone:hover .phone-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   Navigation & Mobile Menu
   ========================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.navbar.scrolled .brand-logo {
    height: 65px;
}

/* Logo on transparent vs scrolled */
.navbar .logo { color: white; }
.navbar.scrolled .logo { color: var(--text-main); }
.navbar .nav-links a:not(.btn) { color: white; }
.navbar.scrolled .nav-links a:not(.btn) { color: var(--text-main); }
.navbar .hamburger-menu .bar { background: white; }
.navbar.scrolled .hamburger-menu .bar { background: var(--text-main); }

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s;
}

.brand-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.logo span {
    font-weight: 300;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-links {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.05);
}

.nav-links a:not(.btn) {
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:not(.btn):hover {
    color: var(--primary) !important;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px; height: 20px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-menu .bar {
    width: 100%; height: 2px;
    transition: var(--spring);
    transform-origin: left center;
}

/* Full Screen Mobile Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 30px; right: 30px;
    font-size: 2.5rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--spring);
}

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

.mobile-menu-bg-orb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(255,20,147,0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-link {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s;
}

.mobile-menu-overlay.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

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

.mobile-menu-overlay.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }

.mobile-contact-info {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s 0.5s;
}

.mobile-menu-overlay.active .mobile-contact-info {
    opacity: 1;
    transform: translateY(0);
}

.mobile-phone, .mobile-email {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.25rem;
}

/* ==========================================
   Cinematic Centered Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: -5%; left: -5%;
    width: 110%; height: 110%;
    z-index: 0;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1); /* Keeps the image dark so text is readable */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, var(--bg-main) 100%);
}

.centered-content {
    text-align: center;
    max-width: 1000px;
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.centered-content h1, .centered-content p {
    color: white; /* Force white text over hero background */
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    max-width: 700px;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin: 0 auto 3rem;
}

.hero-phone-popup {
    margin-top: 4rem;
    display: inline-block;
}

.hero-phone-popup .glass-panel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 2rem 1rem 1rem;
    border-radius: 100px;
    background: rgba(255,255,255,0.9);
    color: var(--text-main);
}

.phone-icon-wrapper {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 0 15px var(--primary-glow);
}

.phone-details {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
}

/* ==========================================
   1-2-3 Steps Section
   ========================================== */
.steps-section {
    background: var(--bg-alt);
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step-card {
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: white;
}

.step-glow {
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(255,20,147,0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
}

.step-card:hover .step-glow {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(255,20,147,0.1) 0%, transparent 70%);
}

.step-number {
    position: absolute;
    top: 20px; left: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    line-height: 1;
}

.step-icon {
    width: 90px; height: 90px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary);
    font-size: 3rem;
    transition: var(--spring);
}

.step-card:hover .step-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) translateZ(30px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transform: translateZ(20px);
}

/* ==========================================
   About Us Section
   ========================================== */
.about-section {
    background: var(--bg-main); /* Match hero transition */
}

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

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    perspective: 1000px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 4rem; }
}

/* ==========================================
   Services Section (Slider)
   ========================================== */
.services-section {
    background: var(--bg-alt); /* Alternate background for contrast */
    overflow: hidden;
    padding-bottom: 8rem;
}

.mission-box {
    margin: 1.5rem auto 3rem;
    max-width: 700px;
    font-style: italic;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 500;
}

.services-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.services-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
    padding: 0 2rem; /* Normal padding for desktop to avoid huge empty space */
}

.modern-service-card {
    width: 350px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 2px var(--primary);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2.5rem 2rem 2rem;
    position: relative;
    flex-grow: 1;
}

.modern-service-card .card-icon {
    width: 50px; height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: absolute;
    top: -25px;
    right: 2rem;
}

.modern-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modern-service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.card-features i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-main);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

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

.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* ==========================================
   Map Section
   ========================================== */
.map-section { background: var(--bg-alt); }

.map-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    padding: 10px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-glass-overlay {
    position: absolute;
    top: 40px; left: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 10;
    display: inline-block;
}

.map-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-pulse {
    width: 50px; height: 50px;
    background: rgba(255,20,147,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    position: relative;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section { background: var(--bg-main); }

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

.faq-item {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.faq-question {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-icon-wrapper {
    width: 40px; height: 40px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--spring);
}

.faq-item.active .faq-icon-wrapper {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-item.active {
    border-color: rgba(255,20,147,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.5s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 2.5rem 2rem;
    max-height: 1000px;
    transition: max-height 1s ease-in-out, padding 0.5s ease;
}

/* ==========================================
   Form Section
   ========================================== */
.form-section { background: var(--bg-alt); }

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

.contact-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: white;
}

.contact-card .icon-box {
    width: 60px; height: 60px;
    background: rgba(255,20,147,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
}

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

.contact-card a {
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
}

.form-container {
    padding: 1rem;
    border-radius: 30px;
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.iframe-wrapper {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: #111111;
    color: white;
    padding-top: 5rem;
}

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

.footer h4 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.footer-brand .brand-logo {
    height: 120px;
    margin-bottom: 1rem;
}

.footer-links, .footer-areas {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-links a, .footer-contact a, .footer-contact p, .footer-areas p {
    color: #A0A0A0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links a:hover, .footer-contact a:hover, .footer-areas p:hover {
    color: white;
    transform: translateX(10px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    color: #A0A0A0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--spring);
}

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

.mobile-nav-phone {
    display: none;
}

/* ==========================================
   Floating Action Buttons
   ========================================== */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    align-items: center;
}

.floating-actions.visible {
    transform: translateX(-50%) translateY(0);
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: var(--transition);
    white-space: nowrap;
    width: 250px;
}

.float-btn:hover {
    transform: scale(1.05);
}

.call-btn {
    background: white;
    color: var(--text-main);
    border: 2px solid var(--primary);
}

.book-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

/* ==========================================
   Back to Top Button
   ========================================== */
.back-to-top-btn {
    position: fixed;
    bottom: 110px; /* Positioned directly above standard chat widgets */
    right: 25px;
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.3);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background: var(--primary-light);
}

/* ==========================================
   Legal / Policy Pages
   ========================================== */
.legal-section {
    padding: 140px 2rem 6rem;
    background: var(--bg-alt);
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

.legal-container h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.legal-container li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 2rem;
    }
}

/* ==========================================
   Scroll Indicator
   ========================================== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0.7;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

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

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .services-content, .form-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .overlay-card {
        bottom: -20px; left: 50%;
        transform: translateX(-50%);
        width: 90%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .scroll-indicator {
        display: none !important;
    }

    .nav-links { display: none; }

    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        width: 100%;
    }
    
    .mobile-nav-phone {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: var(--primary);
        font-size: 1.8rem;
        text-decoration: none;
    }
    
    .logo {
        justify-content: center;
        margin: 0 auto;
    }

    .hamburger-menu { 
        display: flex; 
        margin-left: auto;
    }
    
    .brand-logo {
        height: 75px;
    }
    
    .navbar.scrolled .brand-logo {
        height: 60px;
    }
    
    .back-to-top-btn {
        bottom: 95px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    /* Center and stack services cards */
    .services-slider-track {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
        transform: none !important; /* Disable Javascript slider transform on mobile */
    }
    
    .slider-controls {
        display: none; /* Hide slider controls since cards are stacked vertically */
    }
    
    .modern-service-card {
        width: 100%; 
        max-width: 400px;
    }
    
    h1, .h1-style { 
        font-size: 2.1rem !important; 
        line-height: 1.2;
    }
    .huge-text { font-size: 1.8rem !important; }
    
    .hero {
        min-height: 100svh !important; 
        padding-top: 140px !important; /* Plenty of space under the sticky nav */
        align-items: flex-start !important; /* Force to top */
        justify-content: center;
        padding-bottom: 40px !important;
    }
    
    .hero-content { 
        padding-top: 0 !important; 
        padding-bottom: 0 !important; 
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .badge { margin-bottom: 1rem; }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions { 
        display: flex;
        flex-direction: column; 
        align-items: center;
        width: 100%; 
    }
    
    .btn-xl { 
        width: 100%; 
        max-width: 300px;
        padding: 1rem 1.5rem;
        margin: 0 auto;
        font-size: 1.1rem;
    }
    
    .hero-phone-popup {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-phone-popup .glass-panel {
        display: flex !important;
        padding: 1.5rem !important;
        gap: 0.5rem !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 250px !important;
        border-radius: 30px !important;
    }
    
    .phone-details {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .form-info {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .form-info h2, .form-info p {
        text-align: center !important;
    }
    
    .contact-cards-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 1.5rem !important;
    }
    
    .contact-card {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1rem !important;
        padding: 2rem 1.5rem !important;
        width: 100% !important;
        max-width: 350px !important;
        box-sizing: border-box !important;
    }

    .step-number {
        font-size: 3.5rem;
        top: 15px;
        left: 15px;
    }
    
    .float-btn {
        width: auto;
        min-width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .floating-actions {
        bottom: 120px; /* Prevent overlap with chat widget */
    }
    
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    
    .map-glass-overlay {
        top: 20px; left: 50%;
        transform: translateX(-50%);
        width: 90%;
        padding: 1rem;
    }
}


/* ==========================================
   Promo Banner
   ========================================== */
.promo-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-align: center;
    padding: 10px 1rem;
    font-weight: 600;
    font-size: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.promo-banner p {
    margin: 0;
    color: white;
}

.promo-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 800;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.promo-banner a:hover {
    color: var(--text-main);
}

.navbar {
    top: 44px !important;
}

.mobile-menu-overlay {
    top: 44px !important;
    height: calc(100vh - 44px) !important;
}
