:root {
    --primary-color: #53A2B6;
    --primary-dark: #3e8192;
    --primary-light: #e6f2f5;
    --accent-color: #f1c40f;
    --text-color: #2c3e50;
    --text-muted: #7f8c8d;
    --bg-light: #f9fbfc;
    --bg-white: #ffffff;
    --border-radius: 16px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Outfit', 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: #f8fafc;
    overflow-x: hidden;
    line-height: 1.6;
    color-scheme: light !important; /* Global force light theme */
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 0.95rem;
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-primary { background-color: var(--primary-color); color: white; box-shadow: 0 8px 20px rgba(83, 162, 182, 0.25); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 25px rgba(83, 162, 182, 0.35); }

.btn-white {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background-color: #f8f9fa;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.w-100 { width: 100%; }

/* Badge Styles */
.badge-alt {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 5px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(15px);
}

header .container {
    max-width: 100%;
    padding: 0 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

header.scrolled .logo img {
    height: 90px;
}

.nav-container { display: flex; align-items: center; }

.nav-links { display: flex; gap: 25px; }
.nav-links a { color: var(--text-color); font-weight: 500; font-size: 0.9rem; transition: var(--transition-smooth); }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }

.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-color); margin-left: 20px; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    background: #fdfdfd;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(83, 162, 182, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(83, 162, 182, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 1) 0%, transparent 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30L15 30L15 15L30 15L30 30z' fill='%2353A2B6' fill-opacity='0.05'/%3E%3C/svg%3E");
    z-index: 0;
}

.hero-shapes { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; z-index: 1; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.8; animation: float 20s infinite alternate; }
.hero-shape-1 { width: 600px; height: 600px; background: linear-gradient(135deg, #d1eef5, #b4dce6); top: -100px; right: -150px; }
.hero-shape-2 { width: 500px; height: 500px; background: linear-gradient(135deg, #e0f2f1, #81c7bc); bottom: -150px; left: -100px; animation-delay: -5s; }

@keyframes float { 0% { transform: translate(0, 0) scale(1) rotate(0deg); } 100% { transform: translate(40px, 40px) scale(1.1) rotate(10deg); } }

.hero-content { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 50px; position: relative; z-index: 2; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-text h1 span { color: var(--primary-color); }
.hero-text p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 30px; max-width: 500px; }
.hero-features { display: flex; gap: 20px; margin-bottom: 10px; }
.feature-item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; color: var(--primary-dark); }
.feature-item i { color: var(--primary-color); }

.hero-form-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(83, 162, 182, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.hero-form-box h3 { margin-bottom: 25px; font-size: 1.8rem; color: var(--text-color); }
.form-group { margin-bottom: 15px; } 
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.85rem; color: var(--text-color); padding-left: 15px; } /* Only labels shifted */
.form-group input, .form-group select, .form-group textarea { 
    width: 100%; 
    padding: 14px 20px; 
    border: 1px solid #edf2f4; 
    border-radius: 12px; 
    background-color: #f9fbfc; 
    font-size: 0.95rem; 
    transition: var(--transition-smooth); 
    color: var(--text-color);
}

/* Custom Dropdown Fix */
.form-group select {
    display: none; /* Hide real select */
}

.custom-select-container {
    position: relative;
    width: 100%;
    margin-bottom: 5px;
}

.select-selected {
    background-color: white;
    border: 1px solid #edf2f4;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 0.95rem;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.select-selected:after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2353a2b6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
}

.select-selected.select-arrow-active:after {
    transform: rotate(180deg);
}

.select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    border: 1px solid rgba(83, 162, 182, 0.1);
    border-radius: 12px;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    max-height: 200px; /* Reduced height for elegance */
    overflow-y: auto;
}

/* Custom Scrollbar for Dropdown */
.select-items::-webkit-scrollbar { width: 6px; }
.select-items::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 0 12px 12px 0; }
.select-items::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }

.select-items div {
    color: #334155;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(0,0,0,0.02);
    font-size: 0.9rem;
}

.select-items div:last-child {
    border-bottom: none;
}

.select-items div:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
}

.select-hide {
    display: none;
}

.select-selected.select-arrow-active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(83, 162, 182, 0.12);
}

/* Custom Notification System */
.notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(83, 162, 182, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: top 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.notification.show {
    top: 30px;
}

.notification i {
    font-size: 1.2rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus { 
    outline: none; 
    border-color: var(--primary-color); 
    background-color: white; 
    box-shadow: 0 8px 20px rgba(83, 162, 182, 0.12); 
}

/* Section Spacing */
section { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 2.2rem; margin-bottom: 10px; }
.section-title p { color: var(--text-muted); max-width: 550px; margin: 0 auto; font-size: 0.95rem; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-soft); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; max-width: 400px; }
.stat-card { background-color: var(--primary-light); padding: 20px 10px; border-radius: 16px; text-align: center; }
.stat-card h3 { font-size: 1.6rem; color: var(--primary-color); margin-bottom: 2px; }
.stat-card p { font-size: 0.75rem; color: var(--text-color); font-weight: 700; text-transform: uppercase; }

/* Services Carousel Section */
.services { background-color: var(--bg-light); }
.services-carousel-wrapper { position: relative; max-width: 100%; margin: 0 auto; overflow: hidden; padding: 20px 0; }
.services-track { display: flex; gap: 30px; will-change: transform; }
.service-card {
    min-width: 320px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}
.service-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 20px; }
.service-content h3 { font-size: 1.2rem; color: var(--primary-color); margin-bottom: 8px; text-transform: capitalize; }
.service-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

.carousel-nav { display: flex; justify-content: center; gap: 20px; margin-top: 20px; }
.carousel-btn {
    width: 50px; height: 50px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--primary-color); box-shadow: var(--shadow-soft); cursor: pointer; border: 1px solid #edf2f4; transition: var(--transition-smooth);
}
.carousel-btn:hover { background: var(--primary-color); color: white; transform: scale(1.1); }

/* Process Section */
.process-wrapper { position: relative; max-width: 750px; margin: 0 auto; }
.process-path { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; border-left: 2px dashed #e2e8f0; }
.process-step { display: flex; align-items: center; margin-bottom: 40px; position: relative; }
.step-icon { width: 70px; height: 70px; background: white; border-radius: 50%; box-shadow: 0 8px 25px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary-color); position: absolute; left: 50%; transform: translateX(-50%); z-index: 2; }
.step-content { width: 44%; padding: 25px; background: white; border-radius: 20px; box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.02); }
.process-step:nth-child(odd) .step-content { margin-right: auto; text-align: right; }
.process-step:nth-child(even) .step-content { margin-left: auto; text-align: left; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: white; padding: 40px; border-radius: 20px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(0,0,0,0.03); }
.stars { color: var(--accent-color); margin-bottom: 20px; text-align: center; font-size: 1rem; }
.testimonial-text { font-style: italic; color: var(--text-color); margin-bottom: 30px; font-size: 1.05rem; text-align: center; }
.patient-name h4 { font-size: 1.1rem; text-align: center; margin-bottom: 5px; }
.patient-name span { font-size: 0.85rem; color: var(--text-muted); display: block; text-align: center; }

/* Shorts Section */
.shorts-section { background-color: var(--bg-white); padding: 40px 0; }
.shorts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.short-card { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.03); }
.video-container { position: relative; padding-bottom: 177.77%; height: 0; background: #f0f0f0; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 40px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66 3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-45c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm13-24c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='white' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: white; font-size: 2.2rem; margin-bottom: 10px; }
.cta-content p { color: rgba(255, 255, 255, 0.95); max-width: 800px; margin: 0 auto 25px; font-size: 1rem; line-height: 1.6; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; }
.contact-info { background-color: var(--primary-color); padding: 40px; border-radius: 24px; color: white; }
.contact-info h3 { color: white; margin-bottom: 30px; }
.info-item { display: flex; gap: 15px; margin-bottom: 20px; }
.info-icon { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Footer */
footer { background-color: #1a252f; color: white; padding: 80px 0 40px; }
.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1.2fr; 
    gap: 60px; 
    margin-bottom: 50px; 
    align-items: stretch; 
}
.footer-about { display: flex; flex-direction: column; }
.footer-about p { opacity: 0.85; font-size: 1rem; margin-bottom: 25px; line-height: 1.8; }
.social-links { display: flex; gap: 15px; margin-top: auto; }
.social-links a { 
    width: 45px; 
    height: 45px; 
    background-color: rgba(255, 255, 255, 0.08); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}
.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}
.footer-links h4, .footer-contact h4 { color: white; font-size: 1.1rem; margin-bottom: 25px; position: relative; padding-bottom: 12px; }
.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}
.footer-links ul li, .footer-contact ul li { margin-bottom: 18px; }
.footer-links ul li a, .footer-contact ul li a { 
    color: white; 
    opacity: 0.8; 
    transition: var(--transition-smooth); 
    display: flex; 
    align-items: flex-start; 
    gap: 12px;
    line-height: 1.6;
}
.footer-links ul li a i, .footer-contact ul li a i { 
    font-size: 0.9rem; 
    color: var(--primary-color); 
    margin-top: 4px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.footer-links ul li a:hover, .footer-contact ul li a:hover { opacity: 1; color: var(--primary-color); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 25px 0; text-align: center; opacity: 0.5; font-size: 0.85rem; margin-top: 20px; }
.footer-bottom p { margin: 0; }

/* Modal */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition-smooth); }
.modal.active { opacity: 1; visibility: visible; }
.modal-content { background: white; padding: 40px; border-radius: 24px; width: 100%; max-width: 400px; position: relative; }
.close-modal { position: absolute; top: 20px; right: 20px; cursor: pointer; color: var(--text-muted); }

/* Animations & Reveal */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.float-animation { animation: float 6s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }

.reveal.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0, 0); }

/* Staggered Delay Utility */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.service-card, .testimonial-card, .short-card, .step-icon {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.service-card:hover, .testimonial-card:hover, .short-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .desktop-only { display: none; }
    
    header { padding: 15px 0; }
    header .container { padding: 0 20px; }
    
    .logo img { height: 80px; }
    header.scrolled .logo img { height: 65px; }

    .mobile-menu-btn { 
        display: flex; 
        z-index: 2000;
        position: relative;
        width: 45px;
        height: 45px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--bg-light);
        transition: var(--transition-smooth);
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .nav-links {
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 300px; 
        height: 100vh; 
        background: var(--bg-white);
        flex-direction: column; 
        padding: 80px 30px; 
        box-shadow: -15px 0 45px rgba(0,0,0,0.1); 
        transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1001;
        display: flex;
        align-items: flex-start;
    }
    .nav-links.active { right: 0; }
    
    /* Overlay Effect */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }
    .nav-links.active::before {
        opacity: 1;
        visibility: visible;
        left: -300px; /* Offset the overlay back to cover full screen since parent is moved */
        width: 100vw;
    }

    .nav-links li { 
        margin-bottom: 5px; 
        width: 100%; 
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
        transition-delay: 0.1s;
    }
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    /* Staggered animation for links */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }

    .nav-links a { 
        font-size: 1rem; 
        font-weight: 500; 
        display: flex;
        align-items: center;
        padding: 15px 0;
        color: var(--text-color);
        border-bottom: 1px solid rgba(0,0,0,0.03);
        width: 100%;
        letter-spacing: 0.5px;
    }
    .nav-links a:hover, .nav-links a.active { 
        color: var(--primary-color); 
        padding-left: 5px; 
    }
    
    .hero { padding-top: 160px; min-height: auto; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text p { margin: 0 auto 30px; font-size: 0.95rem; }
    .hero-features { justify-content: center; flex-wrap: wrap; }
    .hero-form-box { padding: 30px 20px; margin-bottom: 30px; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-stats { grid-template-columns: 1fr; }
    
    /* Premium Horizontal Sliders for All Mobile Sections */
    .services-carousel-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        margin-left: -20px;
        margin-right: -20px;
        padding: 10px 20px 30px;
        width: calc(100% + 40px);
    }
    .services-carousel-wrapper::-webkit-scrollbar { display: none; }
    
    .testimonial-grid, .shorts-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 20px 0 40px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        width: 100vw;
        margin-left: -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
    }
    .testimonial-grid::-webkit-scrollbar, .shorts-grid::-webkit-scrollbar { display: none; }
    
    .services-track { 
        display: flex; 
        gap: 15px; 
        width: max-content; /* Ensure track expands to fit all cards */
        transform: none !important; 
    }
    
    .service-card, .testimonial-card, .short-card {
        min-width: 280px;
        max-width: 85vw;
        scroll-snap-align: center;
        flex-shrink: 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        border: 1px solid rgba(83, 162, 182, 0.1);
        margin-bottom: 5px;
    }

    .service-card img { height: 220px; } /* Slightly taller images on mobile */
    .testimonial-card { padding: 30px 20px; min-height: 320px; }

    .carousel-nav { display: none; } 
    
    .process-path { display: none; }
    .process-step { flex-direction: column; text-align: center; margin-bottom: 30px; }
    .step-icon { position: relative; left: 0; transform: none; margin: 0 auto 15px; }
    .step-content { width: 100%; margin: 0 !important; text-align: center !important; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-info { padding: 35px 25px; border-radius: 25px; margin: 0 auto; width: 100%; }
    .info-item { display: flex; align-items: center; text-align: left; gap: 15px; width: 100%; }
    .info-content h4 { margin-bottom: 2px; font-size: 1rem; }
    .info-content p { font-size: 0.9rem; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: left; gap: 40px; }
    .footer-about p { margin: 0 0 25px; }
    .footer-links h4::after, .footer-contact h4::after { left: 0; transform: none; }
    .footer-links ul li, .footer-contact ul li { justify-content: flex-start; }
    .footer-links ul li a, .footer-contact ul li a { justify-content: flex-start; text-align: left; width: auto; }
    .social-links { justify-content: flex-start; margin-top: 20px; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.8rem; }
    .cta-content h2 { font-size: 1.6rem; }
    .cta-content p { font-size: 0.9rem; }
}
