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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    /* Lazy loading optimization */
    loading: lazy;
}

/* Critical CSS for above-the-fold content */
.navbar {
    will-change: transform;
    transform: translateZ(0);
}

.hero {
    will-change: transform;
    transform: translateZ(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 4px 30px rgba(255, 107, 157, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.6rem 0;
    background: rgba(255, 107, 157, 0.95);
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0.5rem 0;
    min-width: 180px;
    flex-shrink: 0;
}

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

.logo-image {
    height: 55px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.nav-logo:hover .logo-image {
    filter: brightness(1.2) contrast(1.2);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffd700;
    font-weight: 600;
}

.btn-login, .btn-register {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    white-space: nowrap;
    font-size: 0.85rem;
}

.btn-login:hover, .btn-register:hover {
    background: white;
    color: #ff6b9d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.user-profile:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.profile-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.profile-avatar i {
    color: white;
    font-size: 1.1rem;
}

.user-profile:hover .profile-avatar {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.profile-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.profile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 180px;
    z-index: 1000;
    animation: dropdownFadeIn 0.3s ease;
}

.user-profile:hover .profile-dropdown {
    display: block;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-action {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.6rem 1rem;
    background: none;
    border: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.profile-action:hover {
    background: rgba(255, 107, 157, 0.1);
    color: #ff6b9d;
}

.profile-action.logout:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
}

.profile-action i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
    max-width: 700px;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto 2.5rem auto;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-content .btn-primary {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.95rem !important;
    border-radius: 25px !important;
    font-weight: 500 !important;
    min-width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* About Us Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23ff6b9d" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.6;
}

.about-content {
    display: grid;
    grid-template-areas: 
        "header header"
        "left right";
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

/* Grid Areas */
.about-header {
    grid-area: header;
    text-align: center;
    margin-bottom: 2rem;
}

.about-left {
    grid-area: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.about-right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: space-between;
}

/* About Header Styles */
.about-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Vision Mission Styles */

.vision, .mission {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 200px;
    align-items: center;
}

.vision:hover, .mission:hover {
    transform: translateY(-5px);
}

.vision .icon, .mission .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vision .icon i, .mission .icon i {
    color: white;
    font-size: 1.5rem;
}

.vision .content h3, .mission .content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vision .content p, .mission .content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Right Section Styles */
.about-right .image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-right .image-container:hover {
    transform: translateY(-5px);
}

.about-right .main-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-right .image-container:hover .main-image {
    transform: scale(1.05);
}

.about-right .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.8), rgba(255, 143, 171, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-right .image-container:hover .image-overlay {
    opacity: 1;
}

.about-right .overlay-content {
    text-align: center;
    color: white;
}

.about-right .overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-right .overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Stats Styles */
.about-right .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-right .stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-right .stat-item:hover {
    transform: translateY(-5px);
}

.about-right .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
}

.about-right .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-areas: 
            "header"
            "left"
            "right";
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-left {
        height: auto;
    }
    
    .vision-mission {
        gap: 1.5rem;
    }
    
    .vision, .mission {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        min-height: 180px;
        gap: 1rem;
    }
    
    .vision .icon, .mission .icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .vision .icon i, .mission .icon i {
        font-size: 1.2rem;
    }
    
    .about-right {
        height: auto;
        gap: 1.5rem;
    }
    
    .about-right .main-image {
        height: 250px;
    }
    
    .about-right .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-right .stat-item {
        padding: 1rem;
        height: 100px;
    }
    
    .about-right .stat-number {
        font-size: 1.8rem;
    }
    
    .about-right .stat-label {
        font-size: 0.85rem;
    }
}

/* Lock body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .about-content {
        gap: 1.5rem;
    }
    
    .about-header h2 {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 0.9rem;
    }
    
    .vision, .mission {
        padding: 1.2rem;
        min-height: 160px;
    }
    
    .vision .icon, .mission .icon {
        width: 45px;
        height: 45px;
    }
    
    .vision .icon i, .mission .icon i {
        font-size: 1.1rem;
    }
    
    .vision .content h3, .mission .content h3 {
        font-size: 1.2rem;
    }
    
    .vision .content p, .mission .content p {
        font-size: 0.9rem;
    }
    
    .about-right .main-image {
        height: 220px;
    }
    
    .about-right .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .about-right .stat-item {
        padding: 0.8rem;
        height: 90px;
    }
    
    .about-right .stat-number {
        font-size: 1.6rem;
    }
    
    .about-right .stat-label {
        font-size: 0.8rem;
    }
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    border-radius: 2px;
}

.about-description {
    margin-bottom: 3rem;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vision, .mission {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #ff6b9d;
}

.vision:hover, .mission:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.15);
}

.vision .icon, .mission .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vision .content, .mission .content {
    flex: 1;
}

.vision .content h3, .mission .content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vision .content p, .mission .content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.8), rgba(255, 143, 171, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid #ff6b9d;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.loading {
    text-align: center;
    color: #666;
    font-style: italic;
    grid-column: 1 / -1;
}

/* Appointment Section */
.appointment {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.appointment h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Step Progress Indicator */
.step-progress-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.step-progress-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.step-progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    border-radius: 2px;
    transition: width 0.5s ease;
    width: 25%;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 120px;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
    transform: translateX(-50%);
}

.step-indicator:first-child::before {
    display: none;
}

.step-indicator.completed::before {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 3px solid #e0e0e0;
}

.step-indicator.active .step-number {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
    border-color: #ff6b9d;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.step-indicator.completed .step-number {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border-color: #28a745;
}

.step-indicator.completed .step-number::after {
    content: '✓';
    font-size: 0.8rem;
}

.step-label {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    line-height: 1.2;
}

.step-indicator.active .step-label {
    color: #ff6b9d;
    font-weight: 600;
}

.step-indicator.completed .step-label {
    color: #28a745;
    font-weight: 600;
}

.appointment-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.appointment-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.step-header h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.step-header h3 i {
    color: #ff6b9d;
    font-size: 1.3rem;
}

.step-description {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
    transform: translateY(-1px);
}

.form-group input:valid,
.form-group select:valid {
    border-color: #28a745;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.field-validation {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    min-height: 1.2rem;
    transition: all 0.3s ease;
}

.field-validation.error {
    color: #dc3545;
    font-weight: 500;
}

.field-validation.success {
    color: #28a745;
    font-weight: 500;
}

.field-validation.success::before {
    content: '✓ ';
    font-weight: bold;
}

.step-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: center;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    background: linear-gradient(45deg, #ff5a8a, #ff7ba3);
}

.btn-complete {
    background: linear-gradient(45deg, #28a745, #20c997);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-complete:hover {
    background: linear-gradient(45deg, #218838, #1ea085);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-primary:disabled:hover,
.btn-secondary:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: #ff6b9d;
}

.modal h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.modal form {
    margin-bottom: 1rem;
}

.modal .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* Appointments Modal */
.appointments-modal {
    max-width: 700px;
    max-height: 80vh;
}

/* Appointments Tabs */
.appointments-tabs {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.tab-button {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:hover {
    color: #ff6b9d;
    background: rgba(255, 107, 157, 0.05);
}

.tab-button.active {
    color: #ff6b9d;
    border-bottom-color: #ff6b9d;
    background: rgba(255, 107, 157, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.appointments-list {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.appointment-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #ff6b9d;
    transition: all 0.3s ease;
}

.appointment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.appointment-item.upcoming {
    border-left-color: #28a745;
}

.appointment-item.past {
    border-left-color: #6c757d;
    opacity: 0.8;
}

/* Appointments sections */
.appointments-section {
    margin-bottom: 2rem;
}

.appointments-section:last-child {
    margin-bottom: 0;
}

.section-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff6b9d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #ff6b9d;
    border-radius: 2px;
}

.appointment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.appointment-header h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.appointment-status {
    background: #ff6b9d;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.appointment-item.upcoming .appointment-status {
    background: #28a745;
}

.appointment-item.past .appointment-status {
    background: #6c757d;
}

/* Status-specific styling */
.status-pending {
    background: #ffc107 !important;
    color: #212529 !important;
}

.status-confirmed {
    background: #28a745 !important;
    color: white !important;
}

.status-completed {
    background: #6c757d !important;
    color: white !important;
}

.status-cancelled {
    background: #dc3545 !important;
    color: white !important;
}

.status-unknown {
    background: #6c757d !important;
    color: white !important;
}

.appointment-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.detail-row i {
    color: #ff6b9d;
    width: 16px;
    text-align: center;
}

.no-appointments, .error {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
}

.error {
    color: #dc3545;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.98), rgba(255, 143, 171, 0.98));
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        padding: 80px 0 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .user-profile {
        margin: 0.5rem 0;
        justify-content: center;
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
    }
    
    .profile-dropdown {
        position: static;
        display: block;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        border-radius: 10px;
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .profile-action {
        color: white;
        justify-content: center;
        padding: 0.8rem 1rem;
    }
    
    .profile-action:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-hero {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .beauty-placeholder {
        width: 200px;
        height: 200px;
        margin-top: 2rem;
    }

    .beauty-placeholder i {
        font-size: 5rem;
    }

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

    .appointment-form {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .step-progress-container {
        padding: 0 1rem;
    }
    
    .step-indicators {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .step-indicator {
        flex: 1;
        min-width: 80px;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .step-actions {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-hero {
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
    }

    .services h2, .appointment h2 {
        font-size: 2rem;
    }

    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        max-height: 85vh;
    }
    
    .appointments-modal {
        max-width: 95%;
        margin: 2% auto;
    }
    
    .appointment-item {
        padding: 1rem;
    }
    
    .appointment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .appointment-header h4 {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .appointments-section {
        margin-bottom: 1.5rem;
    }
    
    .tab-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .appointments-modal {
        max-width: 95%;
    }
}

/* Animation for form steps */
.form-step {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff5a8a, #ff7ba3);
}

/* Welcome Popup */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.welcome-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.welcome-popup.show .popup-content {
    transform: scale(1);
}

.popup-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1rem 0 1rem;
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #f0f0f0;
    color: #333;
}

.popup-body {
    padding: 0 2rem 2rem 2rem;
    text-align: center;
}

.popup-icon {
    margin-bottom: 1.5rem;
}

.popup-icon i {
    font-size: 4rem;
    color: #25D366;
    animation: bounce 2s infinite;
}

.popup-body h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.popup-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-join {
    background: linear-gradient(45deg, #25D366, #20BA5A);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-later {
    background: #f8f9fa;
    color: #666;
    padding: 1rem 2rem;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-later:hover {
    background: #e9ecef;
    color: #333;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* WhatsApp Button Container */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    position: relative;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    color: white;
    font-size: 30px;
}

.whatsapp-options {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 180px;
}

.whatsapp-container:hover .whatsapp-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: #333;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-option:hover {
    background: #f8f9fa;
    color: #25D366;
    transform: translateX(5px);
}

.whatsapp-option i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.whatsapp-option span {
    font-size: 0.9rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Chatbot Styles */
.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: chatbotPulse 2s infinite;
}

.chatbot-toggle:hover {
    background: linear-gradient(45deg, #ff5a8a, #ff7ba3);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.6);
}

.chatbot-toggle i {
    color: white;
    font-size: 24px;
}

.chatbot-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 1001;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.chatbot-container.active {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

.chatbot-header {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.chatbot-title i {
    font-size: 1.2rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-message {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-content {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: 80%;
}

.user-message .message-content {
    flex-direction: row-reverse;
}

.message-content i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.bot-message .message-content i {
    color: #ff6b9d;
}

.user-message .message-content i {
    color: #666;
}

.message-text {
    background: #f8f9fa;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.user-message .message-text {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
}

.quick-questions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quick-btn {
    background: white;
    border: 2px solid #ff6b9d;
    color: #ff6b9d;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-align: left;
}

.quick-btn:hover {
    background: #ff6b9d;
    color: white;
    transform: translateY(-1px);
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-color: #ff6b9d;
}

.chatbot-send {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-send:hover {
    background: linear-gradient(45deg, #ff5a8a, #ff7ba3);
    transform: scale(1.1);
}

@keyframes chatbotPulse {
    0% {
        box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 157, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b9d" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-slide {
    display: none;
    padding: 3rem;
    background: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-content {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-text {
    margin-bottom: 2rem;
}

.testimonial-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-height: 120px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}


.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonial Controls */
.testimonial-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 1rem;
    z-index: 3;
}

.testimonial-btn {
    background: rgba(255, 107, 157, 0.8);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-btn:hover {
    background: rgba(255, 107, 157, 1);
    transform: scale(1.1);
}

/* Testimonial Indicators */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    max-width: 100%;
}

.testimonial-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-indicator.active {
    background: #ff6b9d;
    transform: scale(1.3);
}

.testimonial-indicator:hover {
    background: rgba(255, 107, 157, 0.6);
    transform: scale(1.1);
}

/* Add Review Button */
.add-review-section {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.add-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.add-review-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.add-review-btn:hover::before {
    left: 100%;
}

.add-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #3367d6, #2d8f47);
}

.add-review-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

.add-review-btn i {
    font-size: 1.3rem;
    color: white;
}

.add-review-btn span {
    position: relative;
    z-index: 1;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="blog-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23ff6b9d" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-pattern)"/></svg>');
    opacity: 0.6;
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

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

.blog-card.featured .blog-image {
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-meta i {
    color: #ff6b9d;
    font-size: 0.8rem;
}

.blog-content h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card.featured .blog-content h3 {
    font-size: 1.5rem;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #ff5a8a;
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.blog-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: white;
    position: relative;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gallery .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    border-color: #ff6b9d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.9), rgba(255, 143, 171, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-info {
    text-align: center;
    color: white;
    margin-top: auto;
}

.gallery-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-top: auto;
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.gallery-btn i {
    font-size: 1.2rem;
}

/* Gallery Modal */
.gallery-modal .modal-content {
    max-width: 800px;
    max-height: 90vh;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-modal-content {
    position: relative;
}

.gallery-modal-content img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.gallery-modal-info {
    padding: 2rem;
    background: white;
}

.gallery-modal-info h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gallery-modal-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-section h3 {
    color: #ff6b9d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #ff6b9d;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section {
    overflow: hidden;
    word-wrap: break-word;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 157, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b9d;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #bdc3c7;
}

.contact-item i {
    color: #ff6b9d;
    width: 20px;
    margin-top: 0.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b9d;
}

/* Map Container */
.map-container {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    width: 100%;
}

.map-container iframe {
    max-width: 100%;
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 10px;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.map-description {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bdc3c7;
    font-size: 0.9rem;
    margin: 0;
    padding: 0.5rem 0;
}

.map-description i {
    color: #ff6b9d;
    font-size: 1rem;
}


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
    
    .whatsapp-options {
        min-width: 160px;
        bottom: 60px;
    }
    
    .whatsapp-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .whatsapp-option span {
        font-size: 0.8rem;
    }
    
    /* Responsive Welcome Popup */
    .popup-content {
        max-width: 350px;
        margin: 1rem;
    }
    
    .popup-body {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .popup-icon i {
        font-size: 3rem;
    }
    
    .popup-body h3 {
        font-size: 1.3rem;
    }
    
    .popup-body p {
        font-size: 0.9rem;
    }
    
    .popup-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-join, .btn-later {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Responsive Chatbot */
    .chatbot-toggle {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .chatbot-toggle i {
        font-size: 20px;
    }
    
    .chatbot-container {
        width: calc(100vw - 30px);
        height: 400px;
        bottom: 75px;
        right: 15px;
        left: 15px;
    }
    
    .chatbot-messages {
        padding: 0.8rem;
    }
    
    .message-text {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
    
    .quick-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .chatbot-input {
        padding: 0.8rem;
    }
    
    .chatbot-input input {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
    
    .testimonial-slide {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text p {
        font-size: 1.1rem;
    }
    
    .testimonial-controls {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-item {
        justify-content: center;
    }
}
    
    .testimonial-indicators {
        gap: 0.2rem;
        margin-top: 1.5rem;
    }
    
    .testimonial-indicator {
        width: 6px;
        height: 6px;
    }
    
    .nav-logo {
        min-width: auto;
    }
    
    .logo-image {
        height: 45px;
        max-width: 160px;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .vision, .mission {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .vision .icon, .mission .icon {
        align-self: center;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .main-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .vision .content h3, .mission .content h3 {
        font-size: 1.1rem;
    }
    
    .vision .content p, .mission .content p {
        font-size: 0.9rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .add-review-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        gap: 0.6rem;
    }
    
    .add-review-btn i {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    /* Blog Responsive */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card.featured {
        grid-column: span 1;
        display: block;
    }
    
    .blog-card.featured .blog-image {
        height: 250px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-card.featured .blog-content h3 {
        font-size: 1.3rem;
    }
    
    /* Gallery Responsive */
    .gallery-filter {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }
    
    .gallery-info h4 {
        font-size: 1.1rem;
    }
    
    .gallery-info p {
        font-size: 0.8rem;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-btn i {
        font-size: 1rem;
    }
    
    .gallery-modal .modal-content {
        max-width: 95%;
        margin: 2% auto;
    }
    
    .gallery-modal-content img {
        height: 50vh;
    }
    
    .gallery-modal-info {
        padding: 1.5rem;
    }
    
    .gallery-modal-info h3 {
        font-size: 1.3rem;
    }
    
    /* Map Responsive */
    .map-container {
        margin-bottom: 1rem;
    }
    
    .map-container iframe {
        height: 180px;
    }
    
    .map-description {
        font-size: 0.85rem;
        text-align: center;
        justify-content: center;
    }
}