:root {
    --primary-color: #644499;
    --accent-color: #c7345c;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #f8f9fa;
    --border-light: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #ffffff;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.1rem 0;
    transition: all 0.3s;
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::after {
    width: 80%;
}

.btn-login {
    background: var(--primary-color);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-login:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    border: 2px solid #4d2f7d;
}

/* Hero Section */
/* Live Action Hero Background */
.hero-section {
    background: linear-gradient(135deg, #eeebf3 0%, #e3dff0 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 60px;
    z-index: 1;
}

/* Floating Bubbles */
.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95) 0%, rgba(100,68,153,0.92) 65%);
    border-radius: 50%;
    opacity: 0.95;
    animation: rise linear infinite;
    box-shadow: 0 8px 30px rgba(100,68,153,0.35), inset 0 3px 8px rgba(255,255,255,0.6);
    border: 2px solid rgba(255,255,255,0.65);
    will-change: transform, opacity;
}

/* existing bubbles */
.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 25%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 40%;
    animation-duration: 20s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 70px;
    height: 70px;
    left: 60%;
    animation-duration: 16s;
    animation-delay: 1s;
}

.bubble:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 75%;
    animation-duration: 22s;
    animation-delay: 3s;
}

.bubble:nth-child(6) {
    width: 50px;
    height: 50px;
    left: 85%;
    animation-duration: 14s;
    animation-delay: 5s;
}

/* additional bubbles */
.bubble:nth-child(7) {
    width: 40px;
    height: 40px;
    left: 5%;
    animation-duration: 12s;
    animation-delay: 6s;
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(100,68,153,0.25), inset 0 2px 6px rgba(255,255,255,0.55);
}

.bubble:nth-child(8) {
    width: 120px;
    height: 120px;
    left: 18%;
    animation-duration: 26s;
    animation-delay: 2.5s;
    opacity: 0.97;
}

.bubble:nth-child(9) {
    width: 35px;
    height: 35px;
    left: 33%;
    animation-duration: 13s;
    animation-delay: 8s;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.98) 0%, rgba(199,52,92,0.88) 65%);
    box-shadow: 0 5px 15px rgba(199,52,92,0.2), inset 0 2px 5px rgba(255,255,255,0.6);
}

.bubble:nth-child(10) {
    width: 160px;
    height: 160px;
    left: 48%;
    animation-duration: 30s;
    animation-delay: 0.5s;
    opacity: 0.92;
    border-width: 3px;
}

.bubble:nth-child(11) {
    width: 45px;
    height: 45px;
    left: 68%;
    animation-duration: 17s;
    animation-delay: 7s;
    transform-origin: center;
}

.bubble:nth-child(12) {
    width: 28px;
    height: 28px;
    left: 92%;
    animation-duration: 11s;
    animation-delay: 4.5s;
    opacity: 0.85;
}

/* subtle horizontal variance for odd/even bubbles to avoid straight lines */
.bubble:nth-child(odd) {
    transform: translateX(-5px);
}

.bubble:nth-child(even) {
    transform: translateX(5px);
}

/* smaller screens: reduce sizes and animation distances for performance */
@media (max-width: 768px) {
    .bubble {
        opacity: 0.9;
        box-shadow: 0 6px 18px rgba(100,68,153,0.25), inset 0 2px 6px rgba(255,255,255,0.5);
    }

    .bubble:nth-child(3),
    .bubble:nth-child(5),
    .bubble:nth-child(10) {
        width: calc(var(--w, 80px) * 0.7);
        height: calc(var(--h, 80px) * 0.7);
    }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-button:hover {
    background: #4d2f7d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(100, 68, 153, 0.3);
}

/* Animations */
@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, -100px) scale(0.9);
    }

    75% {
        transform: translate(-70px, -50px) scale(1.05);
    }
}

@keyframes rise {
    0% {
        bottom: -150px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        bottom: 110vh;
        opacity: 0;
        transform: translateX(100px) rotate(360deg);
    }
}

@keyframes particle-float {
    0% {
        bottom: -10px;
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        bottom: 110vh;
        opacity: 0;
        transform: translateX(50px);
    }
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Modern Image Carousel */
.hero-carousel {
    width: 100%;
    max-width: 600px;
    height: 450px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.btn-cta {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
    margin-right: 15px;
}

.btn-cta:hover {
    background: #4d2f7d;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary-cta {
    background: transparent;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-secondary-cta:hover {
    background: #4d2f7d;
    color: white;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #f0f0f0;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #eeebf3;
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid var(--border-light);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.price-header h3 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-list {
    list-style: none;
    padding: 0;
}

.price-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list .service-name {
    color: var(--text-dark);
    font-weight: 500;
}

.price-list .service-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.price-note {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
    font-size: 0.9rem;
    color: #666;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: white;
}

.review-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1rem;
}

.review-info h5 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.review-stars {
    color: #ffc107;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.25rem;
}

.review-text {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #eeebf3;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-light);
}

.accordion-button {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-info {
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    padding: 3rem;
    height: 100%;
}

.contact-info h3 {
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 5px;
}

.contact-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
}

.map-container iframe {
    display: block;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 0 0.5rem;
}

.footer-content {
    margin-bottom: 1rem;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
    margin-top: 0.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Reviews Carousel Styles */
.reviews-carousel-container {
    position: relative;
    min-height: 350px;
}

.reviews-page {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.reviews-page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reviews-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.reviews-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-dot:hover {
    background-color: #bbb;
    transform: scale(1.2);
}

.reviews-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.review-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-text {
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 1199px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }

    .btn-login {
        margin-top: 0.5rem;
        display: block;
        text-align: center;
        width: fit-content;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .hero-section {
        padding-top: 140px;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 130px;
        padding-bottom: 40px;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        padding-top: 0;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-cta,
    .btn-secondary-cta {
        padding: 12px 30px;
        font-size: 1rem;
        margin-bottom: 10px;
        display: block;
        width: 100%;
        margin-right: 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero-carousel {
        max-width: 100%;
        height: 350px;
        margin-top: 1.5rem;
    }

    .navbar {
        padding: 0.3rem 0;
    }

    .navbar-logo {
        height: 60px;
    }

    .navbar-brand span {
        font-size: 1.2rem;
    }

    /* Pricing adjustments for mobile */
    .price-list {
        font-size: 0.9rem;
    }

    .price-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
        gap: 5px;
    }

    .price-list .service-name {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .price-list .service-price {
        font-size: 1rem;
        align-self: flex-end;
        margin-top: 5px;
    }

    .price-card {
        padding: 1.5rem 1rem;
    }

    .price-header h3 {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-carousel {
        height: 280px;
    }

    .navbar-logo {
        height: 50px;
    }

    .navbar-brand span {
        font-size: 1.1rem;
    }

    .price-list .service-name {
        font-size: 0.85rem;
    }

    .price-list .service-price {
        font-size: 0.95rem;
    }
}