/* Design Tokens & Colors (Jaipur Pink Heritage Theme) */
:root {
    --primary-pink: hsl(343, 100%, 63%); /* Vibrant Jaipur Pink */
    --primary-pink-hover: hsl(343, 90%, 55%);
    --primary-pink-light: hsl(343, 100%, 97%);
    --secondary-gold: hsl(38, 100%, 55%); /* Warm Amber */
    --secondary-gold-light: hsl(38, 100%, 95%);
    --accent-blue: hsl(198, 95%, 55%);
    --accent-blue-light: hsl(198, 95%, 95%);
    --accent-green: hsl(152, 65%, 45%);
    --accent-green-light: hsl(152, 65%, 95%);
    --accent-purple: hsl(272, 75%, 60%);
    --accent-purple-light: hsl(272, 75%, 97%);
    --accent-orange: hsl(22, 95%, 58%);
    --accent-orange-light: hsl(22, 95%, 96%);

    --bg-warm: hsl(24, 45%, 98%); /* Warm Off-White */
    --white: #ffffff;
    --text-dark: #1E293B; /* Deep Slate Blue */
    --text-light: #64748B; /* Slate Grey */
    --border-color: rgba(226, 232, 240, 0.8);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 12px rgba(30, 41, 59, 0.03);
    --shadow-md: 0 12px 32px rgba(30, 41, 59, 0.06);
    --shadow-lg: 0 20px 48px rgba(30, 41, 59, 0.09);
    
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset and Core Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-warm);
}
::-webkit-scrollbar-thumb {
    background: hsl(343, 60%, 80%);
    border-radius: 10px;
    border: 3px solid var(--bg-warm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-pink);
}

/* Reusable Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.subheading {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-pink);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 18px;
    position: relative;
}

.section-header p {
    font-size: 1.15rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-pink);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(254, 46, 109, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-pink-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(254, 46, 109, 0.35);
}

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

.btn-outline:hover {
    background: var(--primary-pink-light);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-wa {
    background-color: #25D366;
    color: var(--white);
}

.btn-wa:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* Form Submit Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-bounce);
    text-decoration: none;
}

.whatsapp-float i {
    width: 30px;
    height: 30px;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: var(--text-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Sticky Glassmorphic Navbar */
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 75px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    background: var(--primary-pink-light);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary-pink);
    box-shadow: 0 4px 12px rgba(254, 46, 109, 0.1);
}

.logo-icon i {
    width: 24px;
    height: 24px;
    fill: var(--primary-pink);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo-text .highlight {
    color: var(--primary-pink);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-links a.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.02rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-links a.nav-link:hover {
    color: var(--primary-pink);
}

.nav-links a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-pink);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

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

.nav-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    background: rgba(254, 46, 109, 0.05);
}

.mobile-menu-btn .bar {
    display: block;
    position: absolute;
    height: 3px;
    width: 24px;
    background: var(--text-dark);
    border-radius: var(--radius-full);
    opacity: 1;
    left: 8px;
    transition: var(--transition-smooth);
}

.mobile-menu-btn .bar-1 { top: 13px; }
.mobile-menu-btn .bar-2 { top: 19px; }
.mobile-menu-btn .bar-3 { top: 25px; }

/* Active Menu Button State */
.mobile-menu-btn.active .bar-1 {
    transform: rotate(45deg);
    top: 19px;
    background: var(--primary-pink);
}
.mobile-menu-btn.active .bar-2 {
    width: 0;
    opacity: 0;
}
.mobile-menu-btn.active .bar-3 {
    transform: rotate(-45deg);
    top: 19px;
    background: var(--primary-pink);
}

/* Hero Section */
.hero {
    padding: 170px 0 100px;
    background: linear-gradient(135deg, hsl(24, 45%, 98%) 0%, hsl(343, 80%, 97%) 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--primary-pink-light);
    color: var(--primary-pink);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(254, 46, 109, 0.1);
    box-shadow: var(--shadow-sm);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--primary-pink);
    position: relative;
    z-index: 1;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 16px;
    background: var(--secondary-gold-light);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.8;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image {
    position: relative;
    z-index: 2;
    max-width: 440px;
    width: 100%;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    display: block;
}

/* Floating Card inside Hero */
.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 40px;
    left: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 50px;
    right: -20px;
    animation-delay: 2s;
}

.hero-floating-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
}

.hero-floating-card .text-pink { color: var(--primary-pink); background: var(--primary-pink-light); }
.hero-floating-card .text-yellow { color: var(--secondary-gold); background: var(--secondary-gold-light); }

.hero-floating-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.hero-floating-card p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* Background Decorations */
.hero-decoration {
    position: absolute;
    z-index: 1;
    border-radius: var(--radius-full);
    filter: blur(60px);
    opacity: 0.45;
}

.dec-1 {
    width: 250px;
    height: 250px;
    background: var(--primary-pink);
    top: -30px;
    right: -20px;
}

.dec-2 {
    width: 280px;
    height: 280px;
    background: var(--secondary-gold);
    bottom: -60px;
    left: -40px;
}

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

/* Highlights Section */
.highlights {
    padding: 40px 0;
    position: relative;
    z-index: 10;
    margin-top: -40px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
}

.highlight-item:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.highlight-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.highlight-icon-box i { width: 24px; height: 24px; }

.highlight-icon-box.pink { background: var(--primary-pink-light); color: var(--primary-pink); }
.highlight-icon-box.blue { background: var(--accent-blue-light); color: var(--accent-blue); }
.highlight-icon-box.yellow { background: var(--secondary-gold-light); color: var(--secondary-gold); }
.highlight-icon-box.green { background: var(--accent-green-light); color: var(--accent-green); }

.highlight-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.highlight-info p {
    font-size: 0.85rem;
}

/* About Us Section */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-bounce);
    text-align: center;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink-light);
}

.icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: white;
}

.icon-box i { width: 28px; height: 28px; }

.icon-box.blue { background: var(--accent-blue-light); color: var(--accent-blue); }
.icon-box.pink { background: var(--primary-pink-light); color: var(--primary-pink); }
.icon-box.yellow { background: var(--secondary-gold-light); color: var(--secondary-gold); }
.icon-box.green { background: var(--accent-green-light); color: var(--accent-green); }

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.about-card p {
    font-size: 0.95rem;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.program-image-placeholder {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.program-image-placeholder.pink { background: linear-gradient(135deg, var(--primary-pink-light), #ffd6e2); color: var(--primary-pink); }
.program-image-placeholder.yellow { background: linear-gradient(135deg, var(--secondary-gold-light), #ffe8bd); color: var(--secondary-gold); }
.program-image-placeholder.blue { background: linear-gradient(135deg, var(--accent-blue-light), #cceeff); color: var(--accent-blue); }
.program-image-placeholder.green { background: linear-gradient(135deg, var(--accent-green-light), #d1ffd6); color: var(--accent-green); }

.program-avatar {
    width: 60px;
    height: 60px;
    stroke-width: 1.5;
}

.program-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-tag {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.program-tag.pink { background: var(--primary-pink-light); color: var(--primary-pink); }
.program-tag.yellow { background: var(--secondary-gold-light); color: var(--secondary-gold); }
.program-tag.blue { background: var(--accent-blue-light); color: var(--accent-blue); }
.program-tag.green { background: var(--accent-green-light); color: var(--accent-green); }

.program-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.program-body p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.program-features {
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.program-features li {
    font-size: 0.88rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.program-features li i {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
}

/* Daily Routine Timeline */
.routine {
    padding: 100px 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 120px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-pink-light), var(--primary-pink), var(--secondary-gold), var(--primary-pink-light));
    border-radius: var(--radius-full);
}

.timeline-item {
    display: flex;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.time {
    position: absolute;
    left: -120px;
    width: 100px;
    text-align: right;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-pink);
    top: 24px;
}

.activity {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    flex: 1;
    position: relative;
    transition: var(--transition-smooth);
}

.activity:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-pink-light);
}

.activity::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 28px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 4px solid var(--primary-pink);
    border-radius: var(--radius-full);
    z-index: 2;
    transition: var(--transition-smooth);
}

.activity:hover::before {
    background: var(--primary-pink);
    transform: scale(1.2);
}

.activity-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.activity-tag.bg-blue { background: var(--accent-blue-light); }
.activity-tag.bg-pink { background: var(--primary-pink-light); }
.activity-tag.bg-yellow { background: var(--secondary-gold-light); }
.activity-tag.bg-green { background: var(--accent-green-light); }
.activity-tag.bg-purple { background: var(--accent-purple-light); }
.activity-tag.bg-orange { background: var(--accent-orange-light); }

.activity-tag.text-blue { color: var(--accent-blue); }
.activity-tag.text-pink { color: var(--primary-pink); }
.activity-tag.text-yellow { color: var(--secondary-gold); }
.activity-tag.text-green { color: var(--accent-green); }
.activity-tag.text-purple { color: var(--accent-purple); }
.activity-tag.text-orange { color: var(--accent-orange); }

.activity h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.activity p {
    font-size: 0.95rem;
}

/* Safety Section */
.safety {
    padding: 40px 0;
}

.safety-box {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-hover) 100%);
    padding: 80px 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(254, 46, 109, 0.25);
    color: white;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.safety-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 0.98rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.safety-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.safety-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
    background: var(--border-color);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.9) 0%, rgba(30, 41, 59, 0.2) 60%, rgba(30, 41, 59, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    z-index: 2;
}

.gallery-info {
    color: white;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-info h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.gallery-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

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

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

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Parent Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--bg-warm);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

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

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.stars {
    color: var(--secondary-gold);
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.verified {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-green);
    background: var(--accent-green-light);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.testimonial-card p {
    font-size: 1.02rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
}

.parent h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.parent span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* FAQ Accordion Section */
.faqs {
    padding: 100px 0;
}

.faq-accordion-container {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--primary-pink-light);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-question span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    padding-right: 15px;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--primary-pink);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer-inner {
    padding: 0 30px 24px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Active FAQ Item state */
.faq-item.active {
    border-color: var(--primary-pink);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .subheading {
    margin-bottom: 12px;
}

.contact-info h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
}

.contact-info p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-details {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-pink-light);
    color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.info-icon i { width: 22px; height: 22px; }

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.98rem;
    color: var(--text-light);
}

.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.map-embed-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-embed-wrapper iframe {
    display: block;
}

.map-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 10px 24px;
    font-size: 0.88rem;
    z-index: 5;
}

.map-btn:hover {
    background: var(--bg-warm);
    color: var(--primary-pink);
    transform: translateX(-50%) translateY(-2px);
}

/* Contact Form Box */
.contact-form-box {
    background: var(--bg-warm);
    padding: 50px 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-form-box h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.form-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group label .required {
    color: var(--primary-pink);
}

.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--white);
    background-color: var(--white);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: #94A3B8;
}

.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
    border-color: hsl(343, 100%, 80%);
    box-shadow: 0 0 0 4px rgba(254, 46, 109, 0.1);
    background-color: var(--white);
}

/* Select wrapper styling for custom arrow */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 45px;
    cursor: pointer;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.75rem;
    color: var(--text-light);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Footer styling */
.footer {
    background: var(--white);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.98rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-warm);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: var(--transition-bounce);
}

.footer-socials a:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--primary-pink);
}

.footer-socials a i { width: 20px; height: 20px; }

.footer-links-col h3,
.footer-contact-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-links-col ul li a:hover {
    color: var(--primary-pink);
    padding-left: 5px;
}

.footer-contact-col p {
    font-size: 0.98rem;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-content p {
    font-size: 0.88rem;
}

/* Success Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

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

.modal-content {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-bounce);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 72px;
    height: 72px;
    background: var(--accent-green-light);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-icon i {
    width: 36px;
    height: 36px;
    stroke-width: 3;
}

.modal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.modal-content p {
    font-size: 1.02rem;
    margin-bottom: 32px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Animation Reveal helper classes */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries & Responsive Layouts */

/* Tablet & Smaller Desktops */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .highlight-item:nth-child(2) {
        border-right: none;
    }
    .highlight-item:nth-child(even) {
        padding-left: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile & Large Phones */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-image-container {
        max-width: 440px;
        margin: 0 auto;
    }
    .card-1 {
        left: -20px;
    }
    .card-2 {
        right: -10px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .navbar {
        height: 80px;
    }
    .navbar.scrolled {
        height: 70px;
    }
    .mobile-menu-btn {
        display: block;
    }
    
    /* Sliding Navigation Drawer for Mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -10px 0 30px rgba(30, 41, 59, 0.15);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        gap: 30px;
        z-index: 1001;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a.nav-link {
        font-size: 1.15rem;
        width: 100%;
        display: block;
    }
    
    .nav-links a.nav-link::after {
        display: none;
    }
    
    .nav-btn {
        width: 100%;
        margin-top: 15px;
    }
    
    /* Overlay background */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(30, 41, 59, 0.4);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        z-index: 998;
        transition: var(--transition-smooth);
    }
    
    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Small Phones */
@media (max-width: 600px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .highlight-item {
        border-right: none !important;
        padding: 12px 0;
    }
    .highlight-item:not(:last-child) {
        border-bottom: 1px solid var(--border-color);
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-btns .btn {
        width: 100%;
    }
    .card-1, .card-2 {
        padding: 8px 12px;
        gap: 10px;
    }
    .card-1 {
        top: 20px;
        left: -10px;
    }
    .card-2 {
        bottom: 20px;
        right: -10px;
    }
    .timeline {
        padding-left: 24px;
    }
    .timeline::before {
        left: 28px;
    }
    .time {
        position: static;
        text-align: left;
        width: auto;
        margin-bottom: 8px;
        padding-left: 20px;
    }
    .activity::before {
        left: -22px;
        top: -24px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        height: 260px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .contact-form-box {
        padding: 30px 20px;
    }
    .modal-content {
        padding: 30px 20px;
    }
    .modal-actions {
        flex-direction: column;
        gap: 12px;
    }
    .modal-actions .btn {
        width: 100%;
    }
}
