/* 
    Dr. Harshita Chaudhary - Premium Healthcare Website
    Design System & Stylesheet
    Refactored for Performance and Mobile Integrity
*/

:root {
    /* Color Palette - Clinix Medical Blue Theme */
    --primary: #25478a;           /* Professional Medical Blue */
    --primary-light: #3b5fa6;
    --accent: #4a90e2;           /* Clinical Sky Blue */
    --accent-light: #eef4fb;
    --text-dark: #1a2b4b;
    --text-muted: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --gradient: linear-gradient(135deg, #25478a 0%, #4a90e2 100%);
    
    /* Shadows & Transitions */
    --shadow-sm: 0 1px 3px rgba(37, 71, 138, 0.08);
    --shadow-md: 0 4px 12px rgba(37, 71, 138, 0.12);
    --shadow-lg: 0 20px 40px rgba(37, 71, 138, 0.15);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 1. Base Resets & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

/* 2. Navigation / Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    background: #ffffff;
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

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

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

.logo-text {
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1;
}

.logo .accent {
    color: var(--accent);
}

.credentials {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

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

.btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--white) !important;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
}

.btn-whatsapp-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.5rem;
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 2000;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

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

.mobile-link {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

/* 3. Buttons & UI Elements */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    z-index: -1;
    transition: width 0.4s ease;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(37, 71, 138, 0.25);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}



/* 4. Sections Styles */

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(74, 144, 226, 0.15);
}

.hero-trust {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--accent);
}

.media-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    z-index: 10;
    font-weight: 600;
    color: var(--primary);
}

.media-badge i {
    color: var(--accent);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
}

.hero-media {
    position: relative;
}

.media-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Bar */
.trust-bar {
    padding: 1.5rem 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-scroller {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.trust-item-pill i {
    color: var(--accent);
}

/* Conditions Cards */
.conditions {
    padding: 8rem 0;
}

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

.section-tag {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-top: 0.5rem;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.condition-card {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.condition-card:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1);
    border-color: var(--accent);
}

.card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.condition-card:hover .card-image img {
    transform: scale(1.15);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: absolute;
    top: -32px;
    right: 32px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
    border: 1px solid var(--accent-light);
    transition: var(--transition);
}

.condition-card:hover .card-icon {
    transform: rotateY(180deg);
}

.card-body {
    padding: 2.5rem 2rem 2rem;
    position: relative;
}

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

.text-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.5rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow-lg);
}

.doc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievements-list {
    list-style: none;
    margin: 2rem 0;
}

.achievements-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-connect {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.social-btn {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background: var(--bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

/* Instagram Reels Section */
.instagram-section {
    padding: 8rem 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.accent-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.accent-link:hover {
    text-decoration: underline;
}

.social-follow-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-instagram, .btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.25);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

.btn-youtube {
    background: #ff0000;
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.25);
}

.btn-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.reels-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 4rem;
}

.reels-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.reel-slide {
    flex: 0 0 33.333%;
    padding: 0 1.25rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.reel-card-link {
    display: block;
    text-decoration: none;
    width: 100%;
    max-width: 320px;
    outline: none;
}

@media (max-width: 1024px) {
    .reel-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .reel-slide {
        flex: 0 0 100%;
        padding: 0 0.5rem;
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--text-muted);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    opacity: 1;
    background: var(--accent);
    width: 24px;
}

.reel-card {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #000000;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.reel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.reel-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Merged Location & CTA */
.location-cta {
    padding: 4rem 0;
}

.location-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.location-map {
    height: 100%;
    min-height: 400px;
}

.location-info-cta {
    padding: 5rem;
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info-cta h2 {
    color: #fff;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.location-info-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Booking Section */
.booking {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #edf2f7 100%);
    position: relative;
}

.booking-container {
    max-width: 1100px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

/* Left Column Styling */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-info h2 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--primary);
}

.booking-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(37, 71, 138, 0.03);
    border: 1px solid rgba(37, 71, 138, 0.05);
    transition: var(--transition);
}

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 71, 138, 0.08);
}

.detail-item i {
    color: var(--accent);
    background: var(--accent-light);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.detail-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.booking-cta {
    margin-top: 1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

/* Right Column Form Card */
.booking-form-wrapper {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(37, 71, 138, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.appointment-form .btn-block {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 16px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 25px rgba(37, 71, 138, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.appointment-form .btn-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 71, 138, 0.35);
}

.success-msg {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ecfdf5;
    border: 1.5px solid #a7f3d0;
    color: #065f46;
    padding: 1.1rem 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
    animation: fadeIn 0.4s ease;
}

.success-msg i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Footer */
footer {
    padding: 4rem 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.footer-bottom {
    opacity: 1;
}

/* Sticky Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: none; /* Mobile only */
    grid-template-columns: 1fr 1fr;
    padding: 0.75rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
    z-index: 900;
}

.sticky-item {
    text-decoration: none;
    padding: 0.85rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
}

.sticky-item.phone { background: var(--bg-light); color: var(--primary); }
.sticky-item.book { background: var(--gradient); color: var(--white); }

/* 5. Mobile & Responsive Overrides (Grouped) */
@media (max-width: 1024px) {
    .nav-links, .nav-cta, .desktop-only { display: none !important; }
    .mobile-menu-btn { display: block; }
    
    .hero { min-height: auto; padding: 9rem 0 4rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 4rem; }
    .hero-content { align-items: center; }
    .hero h1 { font-size: 2.75rem; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
    .hero-media { max-width: 500px; margin: 0 auto; }
    
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .booking-grid { grid-template-columns: 1fr; }
    .location-cta-grid { grid-template-columns: 1fr; }
    .location-info-cta { padding: 3.5rem 2rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .hero h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2.25rem; }
    
    .trust-scroller {
        gap: 1.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }
    .trust-scroller::-webkit-scrollbar { display: none; }
    .trust-item-pill { white-space: nowrap; }
    
    .sticky-bar { display: grid; }
    .conditions, .about, .testimonials, .instagram-section, .booking { padding: 5rem 0; }
    
    .booking-form-wrapper { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
}

/* --- Entrance Reveal Animations (High Performance, No Scroll Lag) --- */
.reveal, .reveal-type, .reveal-left, .reveal-right {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal {
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-type {
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* In View State */
.reveal.in-view, .reveal-type.in-view, .reveal-left.in-view, .reveal-right.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered entry for grid items */
.conditions-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.conditions-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.conditions-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.conditions-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.conditions-grid .reveal:nth-child(6) { transition-delay: 0.5s; }
.conditions-grid .reveal:nth-child(7) { transition-delay: 0.6s; }

.testimonials-slider .reveal:nth-child(2) { transition-delay: 0.15s; }
.testimonials-slider .reveal:nth-child(3) { transition-delay: 0.3s; }

.reels-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.reels-grid .reveal:nth-child(3) { transition-delay: 0.3s; }

/* Utility Classes */
.hidden {
    display: none !important;
}
