:root {
    /* Premium Color Palette */
    --primary: #0F6292;
    --primary-light: #16FFD8;
    /* Teal accent */
    --primary-dark: #003355;
    --secondary: #FFD369;
    /* Soft gold accent for premium feel */

    --text-main: #2D3748;
    --text-muted: #718096;
    --bg-main: #FFFFFF;
    --bg-light: #F7FAFC;

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Account for sticky navbar */
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
    color: var(--primary-dark);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-padding {
    padding: 6rem 0;
}

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

.bg-light {
    background-color: var(--bg-light);
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 2rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 2px;
    background-color: var(--primary);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(15, 98, 146, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 98, 146, 0.23);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Top Banner */
.top-banner {
    background-color: var(--primary-dark);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    z-index: 1001;
    position: relative;
}

.top-banner-content {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Navbar */
.navbar {
    position: absolute;
    /* Changed from fixed to accommodate top banner */
    top: 38px;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: white;
    /* Start white for hero banner */
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.nav-links a:hover,
.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--text-main);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: white;
    z-index: 2000;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.close-btn {
    font-size: 2rem;
    cursor: pointer;
    text-align: right;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
}

.mobile-nav-links .btn-primary {
    text-align: center;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #051120;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary);
    animation-delay: 0s;
}

.shape-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-light);
    opacity: 0.3;
    animation-delay: -5s;
}

.shape-3 {
    top: 40%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: #4A90E2;
    opacity: 0.2;
    animation-delay: -2s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 255, 216, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(22, 255, 216, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 255, 216, 0); }
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

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

.hero-quote {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 2rem;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 2px 10px rgba(255, 211, 105, 0.2);
}

.hero-quote::before,
.hero-quote::after {
    content: "";
    height: 1px;
    width: 30px;
    background: linear-gradient(to right, rgba(255, 211, 105, 0.6), transparent);
}

.hero-quote::after {
    background: linear-gradient(to left, rgba(255, 211, 105, 0.6), transparent);
}

@media (max-width: 992px) {
    .hero-quote {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 95%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(15, 98, 146, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(15, 98, 146, 0.8);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h4 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.stat-item p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Image Right Side */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 580px;
    border-radius: 30px;
    overflow: visible;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    z-index: -1;
}

.hero-image > img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    object-fit: cover;
    display: block;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float-card 6s infinite ease-in-out alternate;
}

@keyframes float-card {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

.card-1 {
    top: 10%;
    left: -15%;
    animation-delay: -1s;
}

.card-2 {
    bottom: 10%;
    right: -15%;
    animation-delay: -3s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.card-2 .card-icon {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    font-size: 1rem;
}

.card-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Specialities Ticker */
.hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    padding: 1rem 0;
    z-index: 10;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll-ticker 30s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.ticker-item i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive updates for new hero */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        order: -1;
        margin-bottom: 3rem;
    }
    
    .card-1 {
        left: 0;
    }
    
    .card-2 {
        right: 0;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background-color: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 8px solid var(--bg-light);
    box-shadow: var(--shadow-md);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary-dark);
}

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

/* About Section Banner Strip */
.about-banner-strip {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
    border: none !important;
    border-top: 15px solid var(--primary) !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0;
    padding: 0;
    background: transparent !important;
}

.about-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    transition: var(--transition);
    margin-top: -5px !important;
}

.about-banner-strip:hover .about-banner-img {
    transform: scale(1.015);
}

/* Adjust section padding surrounding the banner */
.about.section-padding {
    padding-bottom: 3rem !important;
    background-color: var(--bg-main) !important;
}

.services.section-padding {
    padding-top: 3rem;
}

/* Specialities Section */
.specialities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.speciality-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid var(--bg-light);
    text-align: left;
}

.speciality-item i {
    font-size: 1.8rem;
    color: var(--primary);
}

.speciality-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

/* Margin Bottom Utility */
.mb-4 {
    margin-bottom: 2rem;
}

/* Why Choose Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-item {
    background-color: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--bg-light);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.why-us-item:hover::before {
    height: 100%;
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.why-us-item:hover h3,
.why-us-item:hover p {
    color: white;
}

.why-us-item .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-us-item:hover .icon-box {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.why-us-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: var(--transition);
}

.why-us-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    transition: var(--transition);
}

/* Testimonials Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    position: relative;
    text-align: left;
    border-bottom: 4px solid var(--primary);
    transition: var(--transition);
    border-top: 1px solid var(--bg-light);
    border-left: 1px solid var(--bg-light);
    border-right: 1px solid var(--bg-light);
}

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

.quote-icon {
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: var(--text-main);
    font-size: 1.05rem;
}

.patient-info h4 {
    margin-bottom: 0.2rem;
    color: var(--primary-dark);
}

.patient-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stars {
    color: var(--secondary);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--bg-light);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: white;
}

.faq-question.active + .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
}

.cta h2 {
    color: white;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.cta .btn-primary:hover {
    background-color: var(--secondary);
    color: var(--text-main);
}

/* Footer Section */
.footer {
    background-color: #0A1929;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
}

.footer h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--secondary);
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

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

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

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links ul li,
.footer-contact ul li,
.footer-hours ul li {
    margin-bottom: 1rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.footer-bottom {
    background-color: #060F1A;
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
}

/* Single Speciality Card (Condition pages) */
.single-speciality-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-light);
    transition: var(--transition);
}

/* CTA Buttons Styling */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    border-color: white !important;
    color: white !important;
}

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

.btn-outline-primary {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: white !important;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {

    .about-grid,
    .footer-grid {
        gap: 2rem;
    }

    .experience-badge {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 992px) {
    .specialities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 3rem;
    }
}

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

    .top-banner {
        display: block !important;
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .top-banner-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem 1rem;
    }

    .navbar {
        position: absolute;
        top: 34px;
    }

    .navbar.scrolled {
        position: fixed;
        top: 0;
    }

    .nav-links,
    .desktop-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .experience-badge {
        bottom: -2rem;
        right: 50%;
        transform: translateX(50%);
        width: 130px;
        height: 130px;
        padding: 1.5rem;
        border-width: 6px;
    }

    .experience-badge .number {
        font-size: 2rem;
    }

    .experience-badge .text {
        font-size: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .single-speciality-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .navbar {
        top: 48px;
    }

    .navbar.scrolled {
        top: 0;
    }

    .mobile-menu {
        width: 100%;
    }

    .floating-card {
        padding: 0.5rem 0.85rem;
        gap: 0.5rem;
        border-radius: 10px;
    }

    .card-1 {
        top: 10%;
        left: 2%;
    }

    .card-2 {
        bottom: 10%;
        right: 2%;
    }

    .card-icon {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }

    .card-text strong {
        font-size: 0.8rem;
    }

    .card-text span {
        font-size: 0.65rem;
    }

    .specialities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .speciality-item {
        padding: 1rem 0.75rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .speciality-item i {
        font-size: 1.4rem;
    }

    .why-us-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .why-us-item {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .why-us-item .icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        margin: 0 auto 1rem;
    }

    .why-us-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .why-us-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .testimonial-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding: 1rem 0 2rem;
        margin-top: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 100%;
        scroll-snap-align: center;
        margin: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-hours li {
        justify-content: center;
        gap: 1.5rem;
    }

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

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        padding-top: 1.5rem;
        align-items: center;
        width: 100%;
    }

    .stat-item {
        flex: 1;
        text-align: center;
    }

    .stat-item h4 {
        font-size: 1.3rem;
    }

    .stat-item p {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .stat-divider {
        display: block;
        height: 25px;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.15);
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-question.active + .faq-answer {
        padding-bottom: 1.25rem;
    }

    .whatsapp-text {
        display: none;
    }

    .floating-whatsapp {
        bottom: 85px;
        right: 20px;
        width: 55px;
        height: 55px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .floating-whatsapp i {
        font-size: 2.2rem;
        margin: 0;
    }

    .section-padding {
        padding: 4rem 0;
    }
}

/* Floating Direction Bubble */
.floating-direction {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 9999;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: float-pulse 2.5s infinite;
}

.floating-direction:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: var(--primary-dark);
    animation-play-state: paused;
}

@keyframes float-pulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 255, 216, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(22, 255, 216, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 255, 216, 0); }
}

@media (max-width: 768px) {
    .floating-direction {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

/* Floating WhatsApp Bubble */
.floating-whatsapp {
    position: fixed;
    bottom: 110px;
    right: 30px;
    padding: 0.5rem 1.2rem 0.5rem 0.8rem;
    background: #25D366;
    color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    z-index: 9999;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: whatsapp-pulse 2.5s infinite;
}

.floating-whatsapp i {
    font-size: 2.2rem;
}

.whatsapp-text {
    font-size: 1.05rem;
    font-weight: 600;
    white-space: nowrap;
}

.floating-whatsapp:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
    animation-play-state: paused;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 90px;
        right: 20px;
        padding: 0.4rem 1rem 0.4rem 0.6rem;
    }
    
    .floating-whatsapp i {
        font-size: 1.8rem;
    }
    
    .whatsapp-text {
        font-size: 0.9rem;
    }
}

/* Page Header */
.page-header {
    background-color: #051120;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Detailed Specialities */
.detailed-specialities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.detailed-speciality-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-light);
    transition: var(--transition);
}

.detailed-speciality-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-header i {
    font-size: 2.5rem;
    color: var(--primary);
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 12px;
}

.icon-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.detailed-speciality-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .detailed-specialities-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Camp Banner Image */
.camp-banner-img {
    display: block;
    margin: 0 auto 3rem auto;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .camp-banner-img {
        max-width: 60%;
        margin-bottom: 2rem;
        border-radius: 12px;
    }
}

/* Community Camps Gallery */
.camps-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.camp-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    border: 5px solid white;
    background-color: white;
}

.camp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 992px) {
    .camps-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .camps-gallery {
        grid-template-columns: 1fr;
        max-width: 75%;
        margin: 0 auto;
    }
}