:root {
    --primary: #ff6b9d;
    --secondary: #c44569;
    --accent: #ff4757;
    --dark: #2d3436;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Poppins', sans-serif; 
    line-height: 1.6; 
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow-x: hidden;
    padding-top: 90px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === PERFECT NAVIGATION === */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    padding: 0.5rem 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    gap: 10px;
}

.logo-icon { 
    font-size: 2rem; 
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--dark) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
    background: rgba(255,107,157,0.1);
    transform: translateY(-2px);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta-btn {
    padding: 12px 25px !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    min-width: 100px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === HERO SECTION === */
.hero { 
    background: rgba(255,255,255,0.95) url('images/hero-bg.jpg') center/cover; 
    backdrop-filter: blur(20px);
    padding: 60px 40px; 
    border-radius: 30px; 
    margin: 40px 0;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.1);
    border-radius: 30px;
    z-index: 1;
}

.hero > * { position: relative; z-index: 2; }

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight { font-size: 0.6em; }
.hero-text { font-size: 1.3rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* === CONTENT SECTIONS === */
.content-section { 
    background: var(--white); 
    padding: 40px; 
    border-radius: 25px; 
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

h2 { 
    font-size: clamp(1.8rem, 4vw, 2.5rem); 
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

/* === PROFILE CARDS === */
.profiles-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px; 
    margin: 30px 0;
}

.profile-card { 
    background: linear-gradient(145deg, #ffffff, #f0f2f5); 
    padding: 30px 25px; 
    border-radius: 20px; 
    text-align: center; 
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,107,157,0.1);
    cursor: pointer;
}

.profile-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow-lg);
}

.profile-img { 
    width: 120px; height: 120px; 
    background: linear-gradient(45deg, var(--primary), var(--accent)) url('images/placeholder.jpg') center/cover;
    border-radius: 50%; 
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 600; font-size: 1.2rem;
    background-size: cover;
}

.age-badge { 
    background: var(--primary); 
    color: white; 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.profile-card h3 { margin-bottom: 15px; color: var(--dark); }

/* === TABLES === */
table { 
    width: 100%; 
    border-collapse: collapse; 
    margin: 25px 0; 
    background: var(--white);
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: var(--shadow);
    font-size: 16px;
}

th { 
    background: linear-gradient(45deg, var(--primary), var(--accent)); 
    color: white; 
    padding: 18px 15px;
    font-weight: 600;
    text-align: center;
}

td { 
    padding: 15px; 
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

tr:hover td { background: #f8f9fa; }

/* === CTA BUTTONS === */
.cta-btn { 
    background: linear-gradient(45deg, var(--accent), var(--primary)); 
    color: white; 
    padding: 18px 40px; 
    border: none; 
    border-radius: 50px; 
    font-size: 1.2rem; 
    font-weight: 600;
    cursor: pointer; 
    display: inline-block; 
    margin: 20px 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,71,87,0.3);
    text-align: center;
}

.cta-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 35px rgba(255,71,87,0.4);
}

.cta-btn.whatsapp { background: linear-gradient(45deg, #25D366, #128C7E); }
.cta-btn.large { padding: 20px 50px; font-size: 1.3rem; }
.cta-btn.extra-large { padding: 25px 60px; font-size: 1.5rem; }
.cta-center { text-align: center; margin-top: 30px; }

/* === FEATURES GRID === */
.features-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
    margin: 30px 0;
}

.feature-item { 
    text-align: center; 
    padding: 25px; 
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover { transform: translateY(-5px); }
.feature-icon { font-size: 3rem; margin-bottom: 15px; display: block; }

/* === TESTIMONIALS === */
.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px; 
    margin: 30px 0;
}

.testimonial-item { 
    background: linear-gradient(145deg, var(--light), white); 
    padding: 25px; 
    border-radius: 20px; 
    box-shadow: var(--shadow);
}

.testimonial-item p { font-style: italic; margin-bottom: 15px; }
.testimonial-item cite { 
    display: block; 
    font-weight: 600; 
    color: var(--primary);
}

/* === VIDEO SECTION === */
.video-section { text-align: center; }
.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.promo-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,71,87,0.5);
}

.play-btn:hover { transform: scale(1.1); }
.video-desc { font-size: 1.1rem; color: var(--dark); }

/* === GALLERY SECTION === */
.gallery-section { text-align: center; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    height: 200px;
    background: #e9ecef url('images/placeholder.jpg') center/cover;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item::after {
    content: '👀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after { opacity: 1; }
.gallery-cta { margin-top: 40px; }

/* === FAQ SECTION === */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    background: var(--primary);
    color: white;
    transition: background 0.3s ease;
}

.faq-question:hover { background: var(--accent); }
.faq-answer {
    padding: 0 20px 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 200px; padding: 20px; }

/* === MAP SECTION === */
.map-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.service-areas {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.area-icon { font-size: 2.5rem; }

.map-placeholder {
    height: 300px;
    background: #e9ecef url('images/lucknow-map.jpg') center/cover;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
}

/* === FOOTER === */
.final-cta { text-align: center; padding: 40px 30px; }
.final-text { font-size: 1.2rem; margin-bottom: 30px; }

.footer {
    background: linear-gradient(135deg, var(--dark), #1e272e);
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 { margin-bottom: 20px; color: var(--primary); }

.city-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.city-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.city-links a:hover { color: var(--primary); }

.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 8px; color: #ccc; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

.footer-bottom a { color: var(--primary); text-decoration: none; }

.whatsapp-link {
    color: #25D366 !important; 
    font-weight: 700; 
    font-size: 1.1rem;
    display: block;
    margin-top: 15px;
    text-decoration: none;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    to { opacity: 1; transform: translateY(0); }
}

.content-section, .profile-card, .feature-item {
    animation: fadeInUp 0.8s ease-out;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hamburger { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 100%);
        background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,107,157,0.1));
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(30px);
        margin: 1rem 0;
        width: 90%;
        max-width: 400px;
        animation: slideDown 0.4s ease forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu li:nth-child(7) { animation-delay: 0.7s; }
    
    .nav-cta { display: none; }
    body.menu-open { overflow: hidden; }
}

@media (max-width: 768px) { 
    body { padding-top: 80px; }
    .container { padding: 0 15px; }
    .navbar .container { padding: 0 15px; }
    .hero, .content-section { padding: 30px 25px; margin: 20px 0; }
    table { font-size: 14px; }
    th, td { padding: 12px 8px; }
    .profiles-grid { grid-template-columns: 1fr; }
    .cta-btn { 
        display: block; 
        margin: 15px auto; 
        width: 90%;
    }
    .map-container { grid-template-columns: 1fr; }
    .video-container { margin: 20px 0; }
    .promo-video { height: 250px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .area-item { flex-direction: column; text-align: center; gap: 10px; }
    .nav-link { font-size: 1.1rem !important; padding: 1rem !important; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
/* === FAQ SECTION - PERFECT === */
.faq-container { 
    max-width: 800px; 
    margin: 0 auto; 
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 22px 25px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    user-select: none;
}

.faq-question::after {
    content: '➕';
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '➖';
    transform: rotate(180deg);
}

.faq-question:hover { 
    background: linear-gradient(135deg, var(--accent), var(--primary));
    transform: translateX(5px);
}

.faq-answer {
    padding: 0 25px 25px;
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer { 
    max-height: 300px; 
    padding: 25px; 
    opacity: 1;
}
/* === PROFILE IMAGES - PERFECT DISPLAY === */
.profile-img { 
    width: 140px; 
    height: 140px; 
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%; 
    margin: 0 auto 20px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: rgba(255,255,255,0.9); 
    font-weight: 700; 
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 4px solid rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.profile-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.profile-img:hover::before {
    opacity: 1;
}

.profile-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 50px rgba(255,107,157,0.4);
}

/* Loaded image styles */
.profile-img.loaded {
    color: transparent;
    background-size: cover !important;
    background-position: center !important;
}
/* === GALLERY SECTION - PERFECTLY WORKING === */
.gallery-section { text-align: center; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    height: 220px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    border: 3px solid rgba(255,255,255,0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item::after {
 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover::before,
.gallery-item:hover::after { opacity: 1; }

.gallery-cta { margin-top: 40px; }
/* === GALLERY LIGHTBOX === */
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.9); z-index: 9999; display: flex;
    align-items: center; justify-content: center;
}
.lightbox img {
    max-width: 90%; max-height: 90%; border-radius: 10px;
}
.lightbox-close {
    position: absolute; top: 20px; right: 30px; background: none;
    border: none; color: white; font-size: 30px; cursor: pointer;
}
