﻿/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    background: #E8E8F5;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

    .header.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px 0;
    }

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

    .logo-img:hover {
        transform: scale(1.1);
    }

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.logo-main {
    color: #71296D; /* Updated to primary color */
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.logo-sub {
    color: #483F76; /* Updated to secondary color */
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 500;
    margin: 2px 0 0;
    text-transform: uppercase;
}

@media (max-width: 768px) {

    .logo-main {
        font-size: 20px;
    }

    .logo-sub {
        font-size: 12px;
    }

    .logo-img {
        height: 40px;       
    }
}

.nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li {
    margin-left: 25px;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 0;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        color: #8A4B87; /* Lighter purple for hover */
    }

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .dropdown-toggle i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown:hover > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-link.dropdown-toggle:hover + .dropdown-menu,
.dropdown-menu:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-submenu .dropdown-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu {
    pointer-events: none;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    min-width: 220px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .nav-link.dropdown-toggle:hover + .dropdown-menu,
    .dropdown-menu:hover {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-menu a {
        display: block;
        padding: 12px 20px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .dropdown-menu a:hover {
            background: #8A4B87; /* Lighter purple for hover */
            color: #fff;
            padding-left: 25px;
        }

/* Multilevel Dropdown */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .dropdown-menu {
        display: none;
        top: 0;
        left: 100%;
        margin-left: 2px;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .dropdown-submenu:hover .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

.btn-book {
    background: linear-gradient(135deg, #71296D, #483F76); /* Updated gradient */
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .btn-book:hover {
        background: linear-gradient(135deg, #483F76, #71296D); /* Reversed gradient */
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(113, 41, 109, 0.4); /* Shadow with primary color */
    }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

    .mobile-menu-btn span {
        width: 30px;
        height: 3px;
        background: #71296D; /* Updated to primary color */
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

    .hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInDown 1s ease;
}

    .hero-title span {
        color: #71296D; /* Updated to primary color */
    }

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #71296D, #483F76);
    color: white;
    text-decoration: none;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #483F76, #71296D);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(113, 41, 109, 0.4);
    }

.btn-secondary {
    background: white;
    color: #71296D;
    text-decoration: none;
}

    .btn-secondary:hover {
        transform: translateY(-3px);
        background:white;
    }

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

    .hero-img:hover {
        transform: scale(1.05);
    }

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: #E8E8F5; /* Updated light purple-gray background */
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .why-card:hover {
        transform: translateY(-10px);
    }

    .why-card i {
        font-size: 40px;
        color: #71296D;
        margin-bottom: 20px;
    }

    .why-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .why-card p {
        color: #666;
    }

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
}

    .section-title span {
        color: #e144d8;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        background: #E8E8F5;
    }

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .service-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: #71296D; /* Updated to primary color */
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

    .service-link::after {
        content: '→';
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .service-link:hover::after {
        transform: translateX(5px);
    }

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* Client Transformations */
.transformations {
    padding: 100px 0;
    background: #E8E8F5;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.transformation-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

    .transformation-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .transformation-card:hover img {
        transform: scale(1.1);
    }

.transformation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.transformation-card:hover .transformation-overlay {
    transform: translateY(0);
}

.transformation-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.transformation-overlay p {
    font-size: 0.8rem;
}

/* Special Offer */
.special-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #71296D, #483F76); /* Updated gradient */
    color: white;
    text-align: center;
}

.offer-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.offer-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.btn-offer {
    background: #fff;
    color: #71296D;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-offer:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(113, 41, 109, 0.4);
    }

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #fff;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #71296D;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #777;
}

.slick-prev::before,
.slick-next::before {
    content: none !important;
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    cursor: pointer;
    border: none;
    background: #71296D;
    border-radius: 50%;
    z-index: 2;
    transition: background 0.3s ease;
}

    .slick-prev::after,
    .slick-next::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 20px;
        color: #fff;
    }

    .slick-prev::after {
        content: "\f053";
    }

    .slick-next::after {
        content: "\f054";
    }

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

    .slick-prev:hover,
    .slick-next:hover,
    .slick-prev:focus,
    .slick-next:focus {
        background: #483F76;
        outline: none;
    }

        .slick-prev:hover::after,
        .slick-next:hover::after {
            color: #fff;
        }

.slick-dots {
    text-align: center;
    margin-top: 20px;
    padding: 0;
}

    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }

        .slick-dots li button {
            font-size: 0;
            width: 12px;
            height: 12px;
            background: #6A5B9E;
            border-radius: 50%;
            border: none;
            cursor: pointer;
        }

            .slick-dots li button::before {
                content: '';
                width: 12px;
                height: 12px;
                background: #71296D;
                border-radius: 50%;
                display: block;
            }

        .slick-dots li.slick-active button::before {
            background: #483F76;
        }

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonial {
        padding: 30px;
    }

    .slick-prev {
        left: -35px;
    }

    .slick-next {
        right: -35px;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }
}

/* Mobile Devices (≤ 768px) */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 20px;
    }

    .testimonial {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .testimonial-author h4 {
        font-size: 1.3rem;
    }

    .slick-prev,
    .slick-next {
        width: 32px;
        height: 32px;
    }

        .slick-prev::after,
        .slick-next::after {
            font-size: 16px;
        }

    .slick-prev {
        left: -25px;
    }

    .slick-next {
        right: -25px;
    }
}

/* Small Mobiles (≤ 480px) */
@media (max-width: 480px) {
    .testimonial {
        padding: 20px 15px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-author h4 {
        font-size: 1.1rem;
    }
}

/* Hero Image Section */
.hero-img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(113, 41, 109, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 2px solid #71296D;
}

    .hero-img:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(113, 41, 109, 0.6);
    }

    .hero-img::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 4s infinite linear;
        z-index: 1;
    }

.hero-image .container {
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-image .hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    color: #333;
}

.hero-image .hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

/* Mobile Responsive Hero Image Section */ 
@media (max-width: 768px) {
    .hero-image .container {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding: 60px 15px 30px;
    }

    .hero-content {
        flex: 1 1 60%;
        margin-bottom: 0;
    }

    .hero-image .hero-title {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .hero-image .hero-description {
        order: 2;
        width: 100%;
        margin: 15px 0 25px 0;
        font-size: 1rem;
    }

    .hero-image .hero-img {
        order: 1;
        flex: 0 0 35%;
        width: 120px;
        height: 120px;
        border-radius: 50%;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero-image .container {
        gap: 10px;
    }

    .hero-image .hero-title {
        font-size: 1.8rem;
        margin-top: 15%;
    }

    .hero-image .hero-img {
        width: 120px;
        height: 120px;
        margin-top: -40%;
    }

    .hero-image .btn-primary {
        font-size: 12px !important;
    }
}

@media (max-width: 360px) {
    .hero-image .hero-title {
        font-size: 1.6rem;
    }

    .hero-image .hero-img {
        width: 90px;
        height: 90px;
    }
}

/* LogIn and Register */
.auth-container {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.auth-tab {
    padding: 15px 30px;
    background: #fff;
    border: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px 10px 0 0;
    margin: 0 5px;
}

    .auth-tab.active {
        background: #71296D; /* Updated to primary color */
        color: white;
    }

.auth-form-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.auth-form {
    display: none;
}

    .auth-form.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #71296D;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: #71296D;
        box-shadow: 0 0 5px rgba(113, 41, 109, 0.3);
    }

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
    color: #6c5ce7;
}

.error-message {
    color: #5A2057;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.btn-auth {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #71296D, #483F76);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

    .btn-auth:hover {
        background: linear-gradient(135deg, #483F76, #71296D);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(113, 41, 109, 0.4);
    }

    .btn-auth:disabled {
        cursor: not-allowed !important;
    }

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

    .auth-footer a {
        color: #71296D;
        text-decoration: none;
        font-weight: 600;
    }

        .auth-footer a:hover {
            color: #483F76;
        }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .auth-form-container {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .auth-tab {
        padding: 12px 20px;
        font-size: 1.2rem;
    }
}

/* Our Story Timeline */
.our-story {
    padding: 100px 0;
    background: #E8E8F5;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        background: #71296D;
        transform: translateX(-50%);
    }

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
}

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
        padding-right: 40px;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
        padding-left: 40px;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        top: 20px;
        width: 20px;
        height: 20px;
        background: #71296D;
        border-radius: 50%;
        z-index: 1;
    }

    .timeline-item:nth-child(odd)::before {
        right: -10px;
    }

    .timeline-item:nth-child(even)::before {
        left: -10px;
    }

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

    .timeline-content h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .timeline-content p {
        color: #666;
    }

/* Mobile Responsive Timeline */
@media (max-width: 768px) {
    .our-story {
        padding: 10px 0;
    }

    .timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

        .timeline-item:nth-child(odd)::before,
        .timeline-item:nth-child(even)::before {
            left: 12px !important;
            right: auto !important;
        }

    .timeline-content {
        text-align: left;
    }
}

/* For very small devices */
@media (max-width: 480px) {
    .timeline-item {
        padding-left: 40px !important;
    }

    .timeline-content {
        padding: 15px;
    }

        .timeline-content h3 {
            font-size: 1.4rem;
        }
}

/* Our Mission */
.our-mission {
    padding: 100px 0;
    background: #fff;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-text {
    flex: 1;
}

    .mission-text p {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 20px;
        animation: fadeInUp 1s ease 0.4s forwards;
        opacity: 0;
    }

.mission-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mission-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 1s ease;
}

/* Our Team */
.our-team {
    padding: 100px 0;
    background: #E8E8F5; /* Updated light purple-gray background */
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-10px);
    }

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #71296D; /* Updated border color */
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.team-card p {
    color: #666;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 1rem;
    color: #777;
}

/* Mobile Responsive Our Mission */
@media (max-width: 768px) {
    .our-mission {
        padding: 10px 0;
    }

    .mission-content {
        flex-direction: column;
        gap: 30px;
    }

    .mission-text {
        order: 2;
        text-align: center;
    }

    .mission-image {
        order: 1;
    }

    .mission-text p {
        font-size: 1.1rem;
    }

    .mission-img {
        max-width: 100%;
    }
}

/* Mobile Responsive Our Team */
@media (max-width: 768px) {
    .our-team {
        padding: 10px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-card {
        padding: 25px 20px;
    }

        .team-card:hover {
            transform: none; 
        }

    .team-image {
        width: 100px;
        height: 100px;
    }

    .team-card h3 {
        font-size: 1.5rem;
    }
}

/* For smaller devices */
@media (max-width: 480px) {
    .mission-text p {
        font-size: 1rem;
    }

    .team-card {
        padding: 20px 15px;
    }

    .team-image {
        width: 90px;
        height: 90px;
    }

    .team-card h3 {
        font-size: 1.3rem;
    }

    .team-bio {
        font-size: 0.9rem;
    }
}


/* Admission Modal */
#admissionModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 1050;
    overflow: hidden;
}

    /* Make modal content scrollable */
    #admissionModal .modal-content {
        background: #fff;
        border-radius: 10px;
        padding: 25px;
        width: 90%;
        max-width: 650px;
        max-height: 90vh;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }


/* Call to Action */
.cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #71296D, #483F76);
    color: white;
    text-align: center;
}

    .cta .section-title {
        color: white;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        position: relative;
        display: inline-block;
    }

.cta-description {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

/* Contact */
.contact-form {
    padding: 100px 0;
    background: #E8E8F5;
}

.contact-content {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.contact-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #71296D;
    margin-bottom: 20px;
}

.contact-form-wrapper,
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-panel {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: #71296D; 
        box-shadow: 0 0 5px rgba(113, 41, 109, 0.3);
    }

.error-message {
    color: red;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.contact-info {
    flex: 1;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .contact-info h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: #71296D;
        margin-bottom: 20px;
    }

    .contact-info p {
        margin-bottom: 15px;
        color: #666;
    }


/* Premium Multi-Map Section Styles */
.multi-map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffaf9 0%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
}

    .multi-map-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" stroke="rgba(210,155,155,0.1)" stroke-width="2" x="0" y="0" width="100" height="100"/></svg>');
        z-index: 0;
    }

.maps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
}

    .map-container:hover {
        transform: translateY(-10px) scale(1.01);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(0.2);
        transition: filter 0.5s ease;
    }

    .map-container:hover iframe {
        filter: grayscale(0);
    }

.map-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 25px;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.map-container:hover .map-info-overlay {
    transform: translateY(-5px);
}

.map-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.map-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
    opacity: 0.9;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

    .detail-item i {
        margin-right: 8px;
        color: #71296D;
        font-size: 1.1rem;
    }

.map-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.map-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-directions {
    background: linear-gradient(135deg, #71296D, #483F76);
    color: white;
    border: none;
}

    .btn-directions:hover {
        background: linear-gradient(135deg, #483F76, #71296D);
        transform: translateY(-2px);
    }

.btn-call {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

    .btn-call:hover {
        background: white;
        border-color: white;
        color: #483F76;
        transform: translateY(-2px);
    }

.single-map {
    grid-column: 1 / -1;
    justify-self: center;
    width: 80%;
    margin: 0 auto;
}

/* Premium badge */
.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #71296D, #483F76);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(210,155,155,0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .maps-grid {
        gap: 30px;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .maps-grid {
        grid-template-columns: 1fr;
    }

    .single-map {
        width: 100%;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .multi-map-section {
        padding: 70px 0;
    }

    .map-container {
        height: 350px;
    }

    .map-details {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 300px;
        border-radius: 15px;
    }

    .map-info-overlay {
        padding: 15px;
    }

    .map-name {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .map-actions {
        flex-direction: column;
        gap: 10px;
    }

    .map-btn {
        width: 100%;
        justify-content: center;
    }
}


/* FAQ Section */
.faq {
    padding: 100px 20px;
    background: linear-gradient(135deg, #E8E8F5, #F1ECE2);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-accordion {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .faq-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

.faq-question {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.4rem;
    font-weight:600;
    color: #2b2b2b;
    padding: 20px 25px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
}

    .faq-question::after {
        content: '\002B';
        font-size: 1.5rem;
        color: #71296D; /* Updated to primary color */
        transition: transform 0.3s ease;
    }

.faq-item.active .faq-question::after {
    content: '\2212';
    transform: rotate(180deg);
}

.faq-question:hover {
    background: #E8E8F5; /* Updated light purple-gray for hover */
    color: #71296D; /* Updated to primary color */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    padding: 0 25px;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.faq-item.active .faq-answer {
    max-height: 300px !important;
    padding: 20px 25px;
}

.faq-answer::-webkit-scrollbar {
    width: 8px;
}

.faq-answer::-webkit-scrollbar-track {
    background: #E8E8F5; /* Updated light purple-gray */
    border-radius: 10px;
}

.faq-answer::-webkit-scrollbar-thumb {
    background: #71296D; /* Updated to primary color */
    border-radius: 10px;
}

@media (max-width: 768px) {
    .faq {
        padding: 80px 15px;
    }

    .faq-question {
        font-size: 1.4rem;
        padding: 15px 20px;
    }

    .faq-answer {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        max-height: !important;
    }
}

/* Footer */
.footer {
    background: linear-gradient(145deg, #2A2A2A 10%, #3A2F5F 90%);
    color: #E8E8F5;
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    border-top: 5px solid #71296D;
    z-index: 1;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(113,41,109,0.5)" fill-opacity="1" d="M0,48L80,64C160,80,320,112,480,128C640,144,800,144,960,128C1120,112,1280,80,1360,64L1440,48L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"></path></svg>') repeat-x top center;
        z-index: 0;
        animation: waveFlow 12s infinite linear;
    }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 70px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.footer-section.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeInUp 0.8s ease forwards;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.4s ease, filter 0.4s ease;
}

    .footer-logo-img:hover {
        transform: scale(1.2) rotate(8deg);
        filter: brightness(1.3) drop-shadow(0 4px 8px rgba(113, 41, 109, 0.5));
    }

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #8A4B87;
    margin-left: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    animation: fadeInRight 0.9s ease;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8A4B87;
    margin-bottom: 35px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 5px;
        background: linear-gradient(90deg, #71296D, #483F76);
        transition: width 0.5s ease, transform 0.5s ease;
    }

    .footer-section h3:hover::after {
        width: 140px;
        transform: translateX(15px);
    }

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #8A4B87;
    margin-bottom: 25px;
}

.footer-section p {
    color: #E8E8F5;
    font-size: 1rem;
    line-height: 2;
    animation: fadeInUp 1.1s ease forwards;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 18px;
    }

        .footer-section ul li a {
            color: #E8E8F5;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

            

            .footer-section ul li a:hover::before {
                left: 0;
            }

            .footer-section ul li a:hover {
                color: #FFB84D;
                transform: translateX(5px);
            }

            .footer-section ul li a i {
                font-size: 1.1rem;
                color: #6A5B9E; 
                transition: transform 0.4s ease, color 0.4s ease;
            }

            .footer-section ul li a:hover i {
                transform: scale(1.3);
                color: #71296D;
            }

/* Unique Contact Section */
.footer-contact-section h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        color: #8A4B87;
        margin-bottom: 25px;
}

.footer-contact-section p {
    color: #E8E8F5;
    font-size: 1rem;
    line-height: 2;
    margin: 8px 0;
    white-space: nowrap;
}

.footer-contact-link {
    color: #E8E8F5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline;
}

    .footer-contact-link:hover::before {
        left: 0;
    }

    .footer-contact-link:hover {
        color: #FFB84D;
        transform: translateX(5px);
    }

.contact-link {
    color: #E8E8F5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .contact-link:hover::before {
        left: 0;
    }

    .contact-link:hover {
        color: #FFB84D;
        transform: translateX(5px);
    }

    .contact-link i {
        font-size: 1.2rem;
        color: #6A5B9E;
        transition: transform 0.4s ease, color 0.4s ease;
    }

    .contact-link:hover i {
        transform: scale(1.3);
        color: #71296D;
    }

.socials {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
    animation: fadeInUp 1.3s ease forwards;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6A5B9E, #483F76);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.5s ease;
    box-shadow: 0 8px 20px rgba(113, 41, 109, 0.5);
    position: relative;
    overflow: hidden;
}

    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.5s ease;
    }

    .social-link:hover::before {
        left: 100%;
    }

    .social-link i {
        font-size: 1.5rem;
        color: #fff;
        z-index: 1;
        transition: transform 0.5s ease;
    }

    .social-link:hover {
        background: linear-gradient(135deg, #71296D, #483F76);
        transform: scale(1.1);
        box-shadow: 0 10px 25px rgba(113, 41, 109, 0.7);
    }

        .social-link:hover i {
            transform: scale(1.2);
        }

/* Footer bottom - Premium style */
.footer-bottom {
    padding: 30px 15px;
    text-align: center;
    margin-bottom: -60px;
}

    .footer-bottom p {
        margin: 0;
        font-size: 1rem;
        color: #eee;
        font-weight: 400;
        letter-spacing: 0.6px;
        font-family: 'Segoe UI', 'Poppins', sans-serif;
    }

        .footer-bottom p span.year {
            color: #e76f51;
            font-weight: 600;
        }

        .footer-bottom p strong {
            color: #d4a373;
            font-weight: 600;
        }

/* Animations */
@keyframes waveFlow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section.brand {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li a,
    .contact-link {
        justify-content: center;
    }

    .socials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 100px 0 50px;
    }

    .footer-logo-img {
        height: 65px;
    }

    .footer-logo-text {
        font-size: 2.2rem;
    }

    .footer-section h3 {
        font-size: 2rem;
    }

    .footer-section h4 {
        font-size: 1.6rem;
    }

    .footer-section p,
    .footer-section ul li a,
    .contact-link {
        font-size: 1.05rem;
    }

    .social-link {
        width: 60px;
        height: 60px;
    }

        .social-link i {
            font-size: 1.8rem;
        }

    .footer-bottom p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        height: 55px;
    }

    .footer-logo-text {
        font-size: 1.9rem;
    }

    .footer-section h3 {
        font-size: 1.8rem;
    }

    .footer-section p,
    .footer-section ul li a,
    .contact-link {
        font-size: 1rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

        .social-link i {
            font-size: 1.6rem;
        }

    .footer-bottom p {
        font-size: 0.9rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    height: 80vh;
    overflow: auto;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #71296D;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><polyline points="0,0 6,6 12,0" fill="none" stroke="#71296D" stroke-width="2"/></svg>') no-repeat right 10px center; /* Updated stroke color */
    background-size: 12px;
}

/* =========================
   Responsive Modal Styles
========================= */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
    .modal-content {
        max-width: 450px;
        padding: 30px;
    }

        .modal-content h2 {
            font-size: 1.8rem;
        }

    .modal-close {
        top: 8px;
        right: 20px;
        font-size: 26px;
    }
}

/* Mobile Devices (≤ 768px) */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: 400px;
        padding: 25px 20px;
        border-radius: 10px;
    }

        .modal-content h2 {
            font-size: 1.6rem;
            margin-bottom: 15px;
        }

    .modal-close {
        top: 5px;
        right: 15px;
        font-size: 24px;
    }

    .booking-form .form-group {
        margin-bottom: 15px;
    }

    .booking-form select.form-control,
    .booking-form input.form-control,
    .booking-form textarea.form-control {
        font-size: 0.95rem;
        padding: 10px;
    }
}

/* Small Mobiles (≤ 480px) */
@media (max-width: 480px) {
    .modal-content {
        width: 92%;
        max-width: 350px;
        padding: 20px 15px;
        border-radius: 8px;
    }

        .modal-content h2 {
            font-size: 1.4rem;
        }

    .modal-close {
        font-size: 22px;
        right: 12px;
        top: 5px;
    }

    .booking-form .form-group {
        margin-bottom: 12px;
    }

    .booking-form select.form-control,
    .booking-form input.form-control,
    .booking-form textarea.form-control {
        font-size: 0.9rem;
        padding: 8px;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0 !important;
        margin-bottom: 40px;
    }

    .hero-img {
        max-width: 400px;
    }

    .about-hero .container {
        flex-direction: column;
    }

    .mission-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        flex-direction: column;
    }

    .nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        overflow-x: auto;
        height: 50vh;
    }

        .nav ul.show {
            display: flex;
        }

    .nav li {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #E8E8F5; /* Updated light purple-gray background */
        padding-left: 20px;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-submenu .dropdown-menu {
        padding-left: 40px;
        display: none;
    }

    .dropdown-submenu.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0;
        padding-left: 60px;
        padding-right: 20px;
        text-align: left;
    }

        .timeline-item::before {
            left: 10px;
        }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        margin-top:10%;
    }

    .hero-description{
        font-size:1.2rem;
    }

    .hero-img {
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-book, .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Pricing Grid Section */
.pricing-grid {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(113, 41, 109, 0.05), #fff); /* Updated gradient with primary color */
}

    .pricing-grid .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .pricing-grid h2.section-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 50px;
        color: #333;
        position: relative;
    }

        .pricing-grid h2.section-title::after {
            content: '';
            width: 80px;
            height: 3px;
            background-color: #71296D; /* Updated to primary color */
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

    .pricing-grid .pricing-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .pricing-grid .pricing-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        padding: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .pricing-grid .pricing-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .pricing-grid .pricing-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: #71296D; /* Updated to primary color */
            margin-bottom: 15px;
        }

        .pricing-grid .pricing-card .category-description {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
        }

    .pricing-grid .sub-service {
        border-top: 1px solid #E8E8F5; /* Updated light purple-gray border */
        padding: 15px 0;
    }

        .pricing-grid .sub-service h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .pricing-grid .sub-service p {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 10px;
        }

        .pricing-grid .sub-service .details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: #71296D; /* Updated to primary color */
            background-color: #F8F8F8;
            padding: 10px;
            border-radius: 6px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            animation: fadeIn 0.5s ease-in forwards;
        }

            .pricing-grid .sub-service .details:hover {
                background-color: #E8E8F5; /* Updated light purple-gray for hover */
                transform: translateY(-2px);
            }

            .pricing-grid .sub-service .details i {
                margin-right: 8px;
                color: #71296D; /* Updated to primary color */
            }

            .pricing-grid .sub-service .details .duration,
            .pricing-grid .sub-service .details .price {
                display: flex;
                align-items: center;
            }

            .pricing-grid .sub-service .details .divider {
                width: 1px;
                height: 20px;
                background-color: #71296D; /* Updated to primary color */
                margin: 0 15px;
            }

/* Services Modal Styles */
.servicesModal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

    .servicesModal-overlay.active {
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 1;
    }

.servicesModal-container {
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 97vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    flex-direction: column;
}

.servicesModal-overlay.active .servicesModal-container {
    transform: scale(1);
    opacity: 1;
}

.servicesModal-content::-webkit-scrollbar {
    width: 8px;
}

.servicesModal-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.servicesModal-content::-webkit-scrollbar-thumb {
    background: #71296D;
    border-radius: 10px;
}

    .servicesModal-content::-webkit-scrollbar-thumb:hover {
        background: #483F76;
    }

.servicesModal-header {
    background: linear-gradient(135deg, #71296D, #483F76);
    padding: 20px 30px;
    color: white;
    position: relative;
}

.servicesModal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 0;
}

.servicesModal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .servicesModal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    .servicesModal-close i {
        font-size: 20px;
    }

.servicesModal-content {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
}

/* 3-Card Grid Layout */
.servicesModal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.servicesModal-linkItem {
    display: flex;
    justify-content: center;
}

.servicesModal-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 280px;
}

    .servicesModal-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }

.servicesModal-cardHeader {
    color: #71296D;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .servicesModal-cardHeader i {
        font-size: 18px;
    }

.servicesModal-cardBody {
    padding: 15px;
    color: #333;
    font-size: 14px;
    flex-grow: 1;
    margin-top: -15px;
}

/* Animation for modal entrance */
@keyframes servicesModalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .servicesModal-container {
        width: 95%;
        margin: 20px;
        height: 85vh;
    }

    .servicesModal-grid {
        grid-template-columns: 1fr;
    }

    .servicesModal-header {
        padding: 20px;
    }

    .servicesModal-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .servicesModal-content {
        padding: 20px;
    }

    .servicesModal-title {
        font-size: 1.3rem;
    }

    .servicesModal-categoryTitle {
        font-size: 1.3rem;
    }

    .servicesModal-close {
        width: 30px;
        height: 30px;
        top: 22px;
    }
}

/* Reviews Grid Section */
.reviews-grid {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(113, 41, 109, 0.05), #fff);
}

    .reviews-grid .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .reviews-grid h2.section-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 50px;
        color: #333;
        position: relative;
    }

        .reviews-grid h2.section-title::after {
            content: '';
            width: 80px;
            height: 3px;
            background-color: #71296D; /* Updated to primary color */
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

    .reviews-grid .review-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .reviews-grid .review-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        padding: 25px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeInUp 0.5s ease-in forwards;
    }

        .reviews-grid .review-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .reviews-grid .review-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: #71296D; /* Updated to primary color */
            margin-bottom: 10px;
        }

        .reviews-grid .review-card .stars {
            color: #71296D; /* Updated to primary color */
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .reviews-grid .review-card p {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 10px;
        }

        .reviews-grid .review-card .reviewer {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            font-style: italic;
            color: #999;
        }

/* Trends Grid Section */
.trends-grid {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(113, 41, 109, 0.05), #fff); /* Updated gradient with primary color */
}

    .trends-grid .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .trends-grid h2.section-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 50px;
        color: #333;
        position: relative;
    }

        .trends-grid h2.section-title::after {
            content: '';
            width: 80px;
            height: 3px;
            background-color: #71296D; /* Updated to primary color */
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

    .trends-grid .trend-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .trends-grid .trend-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        padding: 25px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeInUp 0.5s ease-in forwards;
    }

        .trends-grid .trend-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .trends-grid .trend-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: #71296D; /* Updated to primary color */
            margin-bottom: 10px;
        }

        .trends-grid .trend-card .trend-badge {
            display: inline-block;
            background-color: #71296D; /* Updated to primary color */
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            padding: 5px 10px;
            border-radius: 12px;
            margin-bottom: 10px;
        }

        .trends-grid .trend-card p {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            color: #666;
        }

/* Tips Grid Section */
.tips-grid {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(113, 41, 109, 0.05), #fff); /* Updated gradient with primary color */
}

    .tips-grid .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .tips-grid h2.section-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 50px;
        color: #333;
        position: relative;
    }

        .tips-grid h2.section-title::after {
            content: '';
            width: 80px;
            height: 3px;
            background-color: #71296D; /* Updated to primary color */
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

    .tips-grid .tip-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .tips-grid .tip-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        padding: 25px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeInUp 0.5s ease-in forwards;
    }

        .tips-grid .tip-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .tips-grid .tip-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: #71296D; /* Updated to primary color */
            margin-bottom: 10px;
        }

        .tips-grid .tip-card p {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 10px;
        }

        .tips-grid .tip-card .tip-action {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: #71296D; /* Updated to primary color */
            font-weight: 600;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-grid h2.section-title,
    .trends-grid h2.section-title,
    .tips-grid h2.section-title {
        font-size: 2.2rem;
    }

    .reviews-grid .review-card,
    .trends-grid .trend-card,
    .tips-grid .tip-card {
        padding: 20px;
    }

        .reviews-grid .review-card h3,
        .trends-grid .trend-card h3,
        .tips-grid .tip-card h3 {
            font-size: 1.4rem;
        }

    .reviews-grid .review-cards,
    .trends-grid .trend-cards,
    .tips-grid .tip-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Animation for Smoothness */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-success {
    text-align: center;
    color: green;
    margin-bottom: 15px;
}

.academy-error {
    text-align: center;
    color: red;
    margin-bottom: 15px;
}

.text-danger{
    color: red;
}

/* Register Success Modal Styles */
.register-success-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: darkgrey;
}

    .register-success-modal.show {
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 1;
    }

.register-success-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.18, 1.25, 0.4, 1);
}

.register-success-modal.show .register-success-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.register-success-icon {
    margin-bottom: 15px;
}

.register-success-modal-content h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 24px;
}

.register-success-modal-content p {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.register-success-countdown {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.register-success-ok-btn {
    background: linear-gradient(135deg, #71296D, #483F76);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
}

    .register-success-ok-btn:hover {
        background: linear-gradient(135deg, #483F76, #71296D);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(230, 126, 34, 0.4);
    }

@media (max-width: 576px) {
    .register-success-modal-content {
        padding: 20px;
        width: 85%;
    }

        .register-success-modal-content h2 {
            font-size: 20px;
        }
}


/* Policy Pages Styles */
.policy-section {
    padding: 120px 0;
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(113, 41, 109, 0.08);
}

.policy-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #71296D;
    margin: 30px 0 15px;
    position: relative;
    padding-left: 20px;
}

    .policy-text h3:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 70%;
        width: 5px;
        background: linear-gradient(to bottom, #71296D, #FFB6C1);
        border-radius: 10px;
    }

.policy-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-text ul, .policy-text ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.policy-text li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.policy-text strong {
    color: #71296D;
}

.policy-note {
    background: #f9f3f9;
    padding: 20px;
    border-left: 4px solid #71296D;
    margin: 25px 0;
    border-radius: 4px;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

    .policy-table th, .policy-table td {
        padding: 12px 15px;
        text-align: left;
        border: 1px solid #e9d7e8;
    }

    .policy-table th {
        background-color: #f5e9f5;
        color: #71296D;
        font-weight: 600;
    }

    .policy-table tr:nth-child(even) {
        background-color: #fcf9fc;
    }

.policy-cta {
    text-align: center;
    margin-top: 60px;
}

.policy-subtitle {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .policy-content {
        padding: 25px 20px;
    }

    .policy-text h3 {
        font-size: 1.6rem;
    }

    .policy-text p {
        font-size: 1rem;
    }

    .policy-table {
        display: block;
        overflow-x: auto;
    }
}

.custom-file-upload {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .custom-file-upload input[type="file"] {
        display: none; /* hide the ugly default input */
    }

    .custom-file-upload .upload-label {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: #fff;
        padding: 8px 18px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .custom-file-upload .upload-label:hover {
            background: linear-gradient(135deg, #5a67d8, #6b46c1);
            transform: translateY(-2px);
            box-shadow: 0px 4px 10px rgba(118, 75, 162, 0.3);
        }

    .custom-file-upload .file-name {
        font-size: 14px;
        color: #555;
        font-style: italic;
    }

.preview img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #ddd;
}

.hero-title .highlight {
    color: #FF4081;
}

.hero-title .single-word {
    color: #71296D;
}

.quantity-container {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.qty-btn {
    background: linear-gradient(135deg, #71296D, #483F76);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

    .qty-btn:hover {
        background-color: #ad2567;
    }

.qty-input {
    width: 60px;
    text-align: center;
    font-size: 16px;
}
/* Offer Section Styles */
.special-offer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

    .special-offer.no-offer {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }

.offer-content {
    max-width: 800px;
    margin: 0 auto;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.offer-description {
    font-size: 1.2em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.offer-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.discount-badge {
    background: #ffd700;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1em;
}

.validity {
    opacity: 0.8;
    font-size: 0.9em;
}

.offer-services {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
}

.offer-service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0;
}

.btn-offer {
    background: #ffd700;
    color: #333;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .btn-offer:hover {
        background: #ffed4a;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

    .modal-close:hover {
        color: #333;
    }

/* Offer Info in Modal */
.offer-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 600;
}

.offer-services-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Service Rows */
.service-row {
    transition: all 0.3s ease;
    border: 2px solid #e9ecef !important;
}

    .service-row:hover {
        border-color: #667eea !important;
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
    }

/* Price Summary */
.price-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #667eea;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

    .price-row:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.total-row {
    font-size: 1.2em;
    color: #333;
    border-top: 2px solid #dee2e6;
    padding-top: 10px;
    margin-top: 10px;
}

.discount-row {
    color: #28a745;
}

/* Quantity Controls */
.input-group {
    width: 130px;
}

    .input-group .btn {
        padding: 8px 12px;
    }

.qty-input {
    border-left: none;
    border-right: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }

    .service-row .row > div {
        margin-bottom: 15px;
    }

    .offer-details {
        flex-direction: column;
        gap: 10px;
    }

    .btn-offer {
        padding: 12px 30px;
        font-size: 1em;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success States */
.text-success {
    color: #28a745 !important;
}

.servicesModal-clickItem,
.signatureService-clickItem {
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
    will-change: transform;
}

    .servicesModal-clickItem:hover,
    .signatureService-clickItem:hover {
        transform: translateY(-6px) scale(1.04);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

/* ===== ULTRA PREMIUM CLIENT TRANSFORMATIONS ===== */
.transformations {
    padding: 120px 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f9ff 25%, #f5f7ff 50%, #f8f9ff 75%, #fefefe 100%);
    position: relative;
    overflow: hidden;
}

    .transformations::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255,182,193,0.3) 50%, transparent 100%);
    }

    .transformations::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255,182,193,0.3) 50%, transparent 100%);
    }

/* Transformation Grid */
.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Transformation Card */
.transformation-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

    .transformation-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
        pointer-events: none;
        border-radius: 24px;
    }

    .transformation-card:hover {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.2);
    }

/* Before-After Container */
.before-after-container {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: #f8f9fa;
}

.image-comparison {
    display: flex;
    height: 100%;
    position: relative;
}

/* Individual Images */
.before-image,
.after-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

    .before-image img,
    .after-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }   

/* ===== ULTRA PREMIUM BEFORE/AFTER LABELS ===== */
.image-label {
    position: absolute;
    top: 10px;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.before-label {
    left: 10px;
    background: linear-gradient(135deg, #ff4d4d 0%, #e60026 50%, #b1001f 100%);
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.after-label {
    right: 10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

/* Mobile Responsiveness for Labels */
@media (max-width: 768px) {
    .image-label {
        top: 20px;
        padding: 10px 20px;
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .before-label {
        left: 20px;
    }

    .after-label {
        right: 20px;
    }

    .image-label::before {
        width: 14px;
        height: 14px;
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .image-label {
        top: 16px;
        padding: 8px 16px;
        font-size: 11px;
        letter-spacing: 1px;
        border-width: 1px;
    }

    .before-label {
        left: 16px;
    }

    .after-label {
        right: 16px;
    }

    .image-label::before {
        width: 12px;
        height: 12px;
        margin-right: 4px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .image-label:hover {
        transform: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .image-label:active {
        transform: scale(0.98);
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .image-label {
        border-width: 2px;
        backdrop-filter: none;
        background: rgba(0, 0, 0, 0.9);
    }

    .before-label {
        border-color: #ff4444;
    }

    .after-label {
        border-color: #44ff44;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .image-label {
        transition: none;
    }

        .image-label:hover {
            transform: none;
        }

    .before-label::after,
    .after-label::after {
        animation: none;
        display: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .image-label {
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .before-label {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.9) 0%, rgba(220, 38, 38, 0.85) 100%);
    }

    .after-label {
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.9) 0%, rgba(22, 163, 74, 0.85) 100%);
    }
}

/* No Transformations State */
.no-transformations {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    color: #a0aec0;
}

    .no-transformations i {
        font-size: 4rem;
        margin-bottom: 24px;
        opacity: 0.6;
        display: block;
    }

    .no-transformations p {
        font-size: 1.2rem;
        font-weight: 300;
        letter-spacing: 0.02em;
    }

/* Divider Line Between Images */
.image-comparison::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
    transform: translateX(-50%);
    z-index: 2;
}

/* ===== ULTRA SMOOTH ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.transformation-card {
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

    .transformation-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .transformation-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .transformation-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .transformation-card:nth-child(4) {
        animation-delay: 0.4s;
    }

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 1200px) {
    .transformation-grid {
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
        gap: 40px;
    }

    .before-after-container {
        height: 340px;
    }
}

@media (max-width: 968px) {
    .transformations {
        padding: 80px 0;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 60px;
    }

    .transformation-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 35px;
    }

    .before-after-container {
        height: 320px;
    }  
}

@media (max-width: 640px) {
    .transformations {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .transformation-grid {
        gap: 30px;
        padding: 0 16px;
    }

    .before-after-container {
        height: 280px;
    }

    .image-label {
        top: 16px;
        padding: 8px 16px;
        font-size: 11px;
    }

    .before-label {
        left: 16px;
    }

    .after-label {
        right: 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .before-after-container {
        height: 240px;
    }

    .image-label {
        padding: 6px 12px;
        font-size: 10px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .transformation-card:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .image-label:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .before-image:hover img,
    .after-image:hover img {
        transform: none;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .transformation-card {
        border-width: 0.5px;
    }

    .image-comparison::after {
        width: 1px;
    }
}

@media (prefers-color-scheme: dark) {
    .transformations {
        background: linear-gradient(135deg, #0f0f13 0%, #1a1a24 25%, #1e1e2a 50%, #1a1a24 75%, #0f0f13 100%);
    }

    .transformation-card {
        background: rgba(30, 30, 42, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .before-after-container {
        background: #1a1a24;
    }
}

.transformation-card:hover img,
.before-image:hover img,
.after-image:hover img {
    transform: none !important;
}

@media (max-width: 600px) {

    #bookingModal .sub-row .subservice-select {
        width: 90% !important;
        margin: 0 auto !important;
        display: block !important;
    }

    #bookingModal .sub-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

        #bookingModal .sub-row .quantity-group,
        #bookingModal .sub-row .remove-sub {
            margin: 0 !important;
            padding: 0 !important;
        }

        #bookingModal .sub-row .quantity-group {
            width: calc(100% - 60px) !important;
            display: flex !important;
            justify-content: center !important;
        }

    #bookingModal .sub-row {
        position: relative !important;
    }

        #bookingModal .sub-row .remove-sub {
            display: block !important;
        }
}

@media (max-width: 768px) {

    .transformation-card{
        height: auto;
    }
}
@media (max-width: 480px) {

    .transformation-card {
        height: auto;
    }
}

