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

:root {
    /* Pastel Color Palette */
    --pastel-pink: #FFB6C1;
    --pastel-blue: #B6D7FF;
    --pastel-purple: #D8BFD8;
    --pastel-yellow: #FFFFE0;
    --pastel-mint: #B0E0E6;
    --pastel-peach: #FFE5CC;
    --pastel-lavender: #E6E6FA;
    --pastel-green: #C8E6C9;
    
    /* Gradient Backgrounds */
    --sky-gradient: linear-gradient(135deg, #FFB6C1 0%, #B6D7FF 25%, #D8BFD8 50%, #FFFFE0 75%, #B0E0E6 100%);
    --soft-gradient: linear-gradient(135deg, #FFE5CC 0%, #E6E6FA 50%, #B6D7FF 100%);
    
    /* Text Colors */
    --text-primary: #444;
    --text-secondary: #666;
    --text-light: #888;
    --white: #ffffff;
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-small: 10px;
    --radius-medium: 20px;
    --radius-large: 30px;
    --radius-round: 50%;
    
    /* Fonts */
    --font-primary: 'Quicksand', sans-serif;
    --font-accent: 'Comfortaa', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    pointer-events: auto;
}

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

.nav-logo .logo {
    height: 98px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    z-index: 100;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    display: block;
    padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pastel-pink);
    transform: translateY(-2px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.8rem;
    height: 0.2rem;
    background: var(--pastel-pink);
    border-radius: 0.1rem;
}

.nav-link:hover {
    color: var(--pastel-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 0;
    height: 0.12rem;
    background: var(--sky-gradient);
    transition: width 0.3s ease;
}

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

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: inline-block;
    cursor: pointer;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: var(--radius-small);
}

.dropdown-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-medium);
    padding: 0.5rem 0;
    z-index: 9999;
    border: 1px solid #e5e7eb;
    display: none;
}

.dropdown-menu.show {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

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

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--pastel-blue);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 1.5rem;
    height: 0.2rem;
    background: var(--text-primary);
    margin: 0.2rem 0;
    transition: 0.3s;
    border-radius: 0.1rem;
}

/* Logo Banner Section */
.logo-banner {
    height: auto;
    min-height: 20vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

/* Pastel background positioned precisely around the logo */
.logo-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: calc(25vh + 20vh); /* 25vh for logo + 10vh above + 10vh below = 45vh total */
    background: var(--sky-gradient);
    z-index: 1;
}

.logo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

/* Main Hero Section */
.hero {
    min-height: 60vh;
    background: var(--pastel-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sky-gradient);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background: var(--sky-gradient); }
    50% { background: linear-gradient(135deg, #D8BFD8 0%, #FFB6C1 25%, #B6D7FF 50%, #B0E0E6 75%, #FFFFE0 100%); }
}

.hero-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    gap: 0;
    padding: 0;
    margin: 0;
}

.hero-left {
    flex: 1;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    max-width: 50%;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    position: relative;
    max-width: 50%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.hero-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    flex: 1;
    display: block;
}

.hero-content {
    text-align: left;
    max-width: 100%;
}

.hero-logo-img {
    height: 25vh;
    width: auto;
    margin-top: calc(1rem + 10vh);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0.6rem 1.2rem rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-accent);
    font-size: 3vw;
    font-weight: 700;
    color: var(--text-primary) !important;
    margin-bottom: 0.5rem;
    margin-top: -3rem;
    text-shadow: 0 0.3rem 0.9rem rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out;
    text-align: left;
}

.hero-subtitle {
    color: var(--text-primary) !important;
    margin-bottom: 1rem;
    opacity: 1;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 28em;
    margin-left: 0;
    margin-right: auto;
    text-shadow: 0 0.12rem 0.25rem rgba(255, 255, 255, 0.8);
    text-align: left;
}

.hero-subtitle p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-primary) !important;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 1rem 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-primary) !important;
}

.check-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.hero-closing {
    font-size: 1.1rem;
    margin-top: 0.75rem;
    font-style: italic;
    opacity: 1;
    color: var(--text-primary) !important;
}

.cta-button {
    background: var(--white);
    color: var(--text-primary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-large);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    background: var(--pastel-lavender);
}

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

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-large);
    animation: floatCloud 20s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-round);
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cloud-1::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 10px;
}

.cloud-1::after {
    width: 60px;
    height: 50px;
    top: -25px;
    right: 10px;
}

.cloud-2 {
    width: 80px;
    height: 30px;
    top: 60%;
    right: 15%;
    animation-delay: -10s;
}

.cloud-2::before {
    width: 30px;
    height: 30px;
    top: -15px;
    left: 15px;
}

.cloud-2::after {
    width: 40px;
    height: 35px;
    top: -18px;
    right: 15px;
}

.cloud-3 {
    width: 60px;
    height: 25px;
    top: 80%;
    left: 70%;
    animation-delay: -5s;
}

.cloud-3::before {
    width: 25px;
    height: 25px;
    top: -12px;
    left: 10px;
}

.cloud-3::after {
    width: 35px;
    height: 30px;
    top: -15px;
    right: 5px;
}

@keyframes floatCloud {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(-15px) translateY(5px); }
    75% { transform: translateX(10px) translateY(-5px); }
}

.star {
    position: absolute;
    background: var(--white);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 3s ease-in-out infinite;
}

.star-1 {
    width: 20px;
    height: 20px;
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.star-2 {
    width: 15px;
    height: 15px;
    top: 70%;
    left: 20%;
    animation-delay: 1s;
}

.star-3 {
    width: 12px;
    height: 12px;
    top: 30%;
    left: 60%;
    animation-delay: 2s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Section Styles */
section {
    padding: 2rem 0;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Packages Section */
.packages {
    background: var(--soft-gradient);
}

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

.package-card {
    background: var(--white);
    border-radius: var(--radius-medium);
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--sky-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--pastel-purple);
}

.popular-badge {
    position: absolute;
    top: -5px;
    right: 10px;
    background: var(--pastel-purple);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-medium);
    font-size: 0.75rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 1rem;
}

.package-icon {
    width: 40px;
    height: 40px;
    background: var(--pastel-green);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1rem;
    color: var(--white);
}

.package-title {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.package-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.package-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pastel-purple);
}

.period {
    color: var(--text-light);
    font-size: 1rem;
}

.package-features {
    list-style: none;
    margin-bottom: 1rem;
}

.package-features li {
    padding: 0.25rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.package-features i {
    color: var(--pastel-purple);
    width: 10px;
    font-size: 0.4rem;
}

.package-btn {
    width: 100%;
    background: var(--pastel-blue);
    color: var(--white);
    border: none;
    padding: 0.5rem;
    border-radius: var(--radius-medium);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

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

.tab-btn {
    background: transparent;
    border: 2px solid var(--pastel-purple);
    color: var(--pastel-purple);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-large);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--pastel-purple);
    color: var(--white);
}

.gallery-tab-content {
    display: none;
}

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

/* Compact gallery grid for Browse Our Collections section */
.package-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.package-gallery .gallery-item {
    position: relative;
    border-radius: var(--radius-small);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

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

.package-gallery .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1rem 0.75rem 0.75rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.package-gallery .gallery-overlay h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.package-gallery .gallery-overlay p {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.2;
}

/* Coming Soon placeholder styles */
.coming-soon-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--pastel-pink) 0%, 
        var(--pastel-blue) 25%, 
        var(--pastel-purple) 50%, 
        var(--pastel-mint) 75%, 
        var(--pastel-peach) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatingBubbles 15s ease-in-out infinite;
}

.coming-soon-placeholder h3 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

.coming-soon-placeholder::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    color: var(--white);
    top: 25%;
    left: 25%;
    animation: sparkle 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.5; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg); 
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-medium);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

/* About Section */
.about {
    background: var(--soft-gradient);
}

.about-content {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-text p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pastel-purple);
    font-family: var(--font-accent);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.about-image-placeholder {
    background: var(--white);
    border-radius: var(--radius-medium);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.about-image-placeholder i {
    font-size: 4rem;
    color: var(--pastel-purple);
    margin-bottom: 1rem;
}

.about-image-placeholder p {
    color: var(--text-secondary);
    font-style: italic;
}

/* Personal Photo Container */
.about-image-container {
    background: var(--white);
    border-radius: var(--radius-medium);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 8px solid #f8f8f8;
    min-height: 500px;
}

.about-photo {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: var(--radius-small);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.photo-caption {
    text-align: left;
    line-height: 1.4;
}

.photo-caption p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-family: 'Kalam', cursive;
    font-style: italic;
    letter-spacing: 0.02em;
}

.photo-caption p:first-child {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.photo-caption p:last-child {
    margin-bottom: 0;
    font-style: italic;
}

.signature {
    text-align: right;
    margin-top: 1rem;
    font-family: 'Kalam', cursive;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--pastel-purple);
    font-style: italic;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--soft-gradient);
    border-radius: var(--radius-medium);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pastel-purple);
    font-size: 1.2rem;
}

.contact-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: var(--radius-small);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pastel-purple);
}

.submit-btn {
    width: 100%;
    background: var(--sky-gradient);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--radius-medium);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}



.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-social {
    flex: 1;
    text-align: left;
}

.footer-social h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pastel-purple);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--pastel-purple);
    color: var(--white);
}

.footer-logo img {
    height: 100px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--pastel-purple);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--pastel-purple);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--pastel-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

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

.modal-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 0;
    border-radius: var(--radius-medium);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-strong);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    background: var(--sky-gradient);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-medium) var(--radius-medium) 0 0;
}

.modal-header h2 {
    margin: 0;
    text-align: center;
}

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

.modal-body p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.modal-btn {
    background: var(--pastel-purple);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-medium);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: var(--pastel-pink);
    transform: translateY(-2px);
}

.close {
    color: var(--white);
    float: right;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--sky-gradient);
    color: var(--text-primary);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (max-width: 767px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-contact {
        text-align: center !important;
    }
    
    .contact-info {
        align-items: center !important;
    }
    
    .social-icons {
        justify-content: center !important;
    }
}

.footer-contact {
    flex: 1;
    text-align: right;
}

.footer-contact h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.contact-info i {
    width: 20px;
    color: var(--pastel-purple);
    font-size: 1rem;
}



.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

.footer-bottom p {
    color: var(--text-primary) !important;
    margin: 0;
}

/* Mobile responsive for compact gallery */
@media (max-width: 768px) {
    .package-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .package-gallery .gallery-overlay h4 {
        font-size: 0.8rem;
    }
    
    .package-gallery .gallery-overlay p {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .package-gallery .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.5rem;
    }
}

/* Tablet responsive styles */
@media (max-width: 1024px) and (min-width: 49rem) {
    .nav-logo .logo {
        height: 85px;
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
}

/* Responsive Design */
@media (max-width: 48rem) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 4.4rem;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-soft);
        padding: 2rem 0;
        z-index: 998;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-logo .logo {
        height: 70px;
    }

    .logo-banner {
        height: auto;
        min-height: 15vh;
        padding-bottom: 1rem;
    }
    
    .logo-banner::before {
        height: calc(20vh + 20vh); /* 20vh for mobile logo + 10vh above + 10vh below = 40vh total */
    }

    .hero {
        min-height: 65vh;
    }

    .hero-container {
        flex-direction: column;
        gap: 0;
        min-height: 65vh;
        max-width: 100%;
    }

    .hero-left {
        padding: 2rem 1rem;
        min-height: auto;
        max-width: 100%;
    }

    .hero-right {
        min-height: 50vh;
        max-width: 100%;
    }

    .hero-featured-img {
        height: 50vh;
        border-radius: 0;
        width: 100%;
    }

    .hero-title {
        font-size: 5vw;
    }

    .hero-subtitle p {
        font-size: 0.9rem;
    }
    
    .hero-features {
        text-align: left;
    }
    
    .feature-item {
        font-size: 1.1rem;
        gap: 0.8rem;
    }
    
    .hero-closing {
        font-size: 1.1rem;
    }

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

    .package-card.featured {
        transform: none;
    }

    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: space-around;
    }

    .gallery-tab-content.active {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-logo-img {
        height: 20vh;
        margin-top: calc(0.5rem + 2vh);
    }
}

@media (max-width: 30rem) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 6vw;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

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

    .package-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 20% auto;
    }
}

/* Animations for scroll reveal */
.fade-in {
    opacity: 0;
    transform: translateY(1.8rem);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success states */
.success {
    color: #28a745;
}

.error {
    color: #dc3545;
}

/* Package Section Styles */
.package-section {
    padding: 3rem 0;
    min-height: 100vh;
}

.package-section .section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.package-section .section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.pastel-basic-section {
    background: var(--pastel-yellow);
}

.pastel-plus-section {
    background: #FFD6E1;
}

.ultimate-section {
    background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-blue) 25%, var(--pastel-purple) 50%, var(--pastel-yellow) 75%, var(--pastel-mint) 100%);
}

/* Yellow Pastel Section */
.yellow-pastel-section {
    background: linear-gradient(135deg, #FFFFE0 0%, #FFF8DC 25%, #FFFACD 50%, #F0E68C 75%, #FFE4B5 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.yellow-pastel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 223, 186, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 235, 205, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.yellow-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.yellow-title {
    font-family: var(--font-accent);
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.yellow-subtitle {
    font-size: 1.4rem;
    color: #A0522D;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-highlight {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: var(--radius-large);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-highlight:nth-child(2) {
    animation-delay: 0.6s;
}

.feature-highlight:nth-child(3) {
    animation-delay: 0.8s;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-highlight h3 {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.feature-highlight p {
    color: #A0522D;
    line-height: 1.6;
    font-size: 1.1rem;
}

.cta-container {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.yellow-cta-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    padding: 1.2rem 3rem;
    border-radius: var(--radius-large);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.yellow-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFFF00 0%, #FFD700 100%);
    color: #654321;
}

.package-gallery {
    margin-top: 3rem;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h4 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.coming-soon-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-accent);
}

.coming-soon-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive Dropdown */
@media (max-width: 48rem) {
    .nav-dropdown {
        position: relative;
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        display: block;
        padding: 1rem;
        text-align: center;
        pointer-events: auto !important;
        cursor: pointer;
        background: var(--pastel-purple);
        color: var(--white);
        border-radius: var(--radius-small);
        margin: 0.5rem 0;
        touch-action: manipulation;
        user-select: none;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
    
    .dropdown-toggle:active {
        background: var(--pastel-pink);
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: var(--shadow-soft);
        background: var(--pastel-blue);
        margin-top: 0.5rem;
        border-radius: var(--radius-small);
        width: 100%;
        pointer-events: auto !important;
        z-index: 1001;
        overflow: visible;
    }
    
    .dropdown-menu.show {
        display: block !important;
        animation: fadeIn 0.2s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .dropdown-item {
        color: var(--white);
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        display: block;
        width: 100%;
        text-decoration: none;
        cursor: pointer;
        pointer-events: auto !important;
        touch-action: manipulation;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        user-select: none;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover,
    .dropdown-item:active,
    .dropdown-item:focus {
        background: rgba(255, 255, 255, 0.2);
        text-decoration: none;
    }
}
    
    .package-section .section-title {
        font-size: 2rem;
    }
    
    .package-section .section-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Page Section Padding */
.page-section {
    padding-top: 120px;
    padding-bottom: 3rem;
}

/* Mobile adjustments for page sections */
@media (max-width: 768px) {
    .page-section {
        padding-top: 140px;
        padding-bottom: 2rem;
    }
    
    .gallery, .about, .contact {
        padding-top: 140px !important;
    }
}
/* Footer styles updated at Mon Jul 14 06:09:07 AM UTC 2025 */


/* Testimonials Carousel Section */
.testimonials {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff0f8 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(176, 196, 222, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(221, 160, 221, 0.1) 0%, transparent 50%);
    animation: floatingBubbles 20s ease-in-out infinite;
}

@keyframes floatingBubbles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.testimonial-carousel {
    position: relative;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-slide.prev {
    transform: translateX(-20px);
}

.testimonial-slide.next {
    transform: translateX(20px);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--pastel-purple-rgb), 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content {
    text-align: left;
}

.quote-icon {
    color: var(--pastel-purple);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(var(--pastel-purple-rgb), 0.1);
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-event {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.star-rating {
    display: flex;
    gap: 0.2rem;
}

.star-rating i {
    color: #ffd700;
    font-size: 1rem;
}

/* Mobile responsive for testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .star-rating {
        align-self: flex-start;
    }
}

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

.carousel-btn {
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    color: var(--pastel-purple);
    font-size: 1.2rem;
    pointer-events: auto;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--pastel-purple);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(var(--pastel-purple-rgb), 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator.active {
    background: var(--pastel-purple);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--pastel-purple);
    transform: scale(1.1);
}

.indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--pastel-purple-rgb), 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.indicator.active::after {
    opacity: 1;
    animation: pulseIndicator 2s ease-in-out infinite;
}

@keyframes pulseIndicator {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.5); }
}

/* Enhanced Testimonial Card for Carousel */
.testimonial-carousel .testimonial-card {
    background: var(--white);
    border-radius: var(--radius-large);
    padding: 1.5rem;
    margin: 0.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--pastel-purple-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-carousel .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(var(--pastel-pink-rgb), 0.05) 0%, 
        rgba(var(--pastel-blue-rgb), 0.05) 50%, 
        rgba(var(--pastel-lavender-rgb), 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-slide.active .testimonial-card::before {
    opacity: 1;
}

.testimonial-carousel .quote-icon {
    color: var(--pastel-purple);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    animation: floatQuote 3s ease-in-out infinite;
}

@keyframes floatQuote {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.testimonial-carousel .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-carousel .testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(var(--pastel-purple-rgb), 0.1);
}

.testimonial-carousel .star-rating i {
    color: #ffd700;
    font-size: 1.1rem;
    animation: twinkle 2s ease-in-out infinite;
    animation-delay: calc(var(--star-index) * 0.1s);
}

.testimonial-carousel .star-rating i:nth-child(1) { --star-index: 1; }
.testimonial-carousel .star-rating i:nth-child(2) { --star-index: 2; }
.testimonial-carousel .star-rating i:nth-child(3) { --star-index: 3; }
.testimonial-carousel .star-rating i:nth-child(4) { --star-index: 4; }
.testimonial-carousel .star-rating i:nth-child(5) { --star-index: 5; }

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Auto-play pause on hover */
.testimonial-carousel:hover .carousel-track {
    animation-play-state: paused;
}

/* Mobile responsive for carousel */
@media (max-width: 768px) {
    .testimonials {
        padding: 1.5rem 0;
    }
    
    .testimonial-carousel {
        margin: 1rem auto 0;
        max-width: 90%;
    }
    
    .testimonial-carousel .testimonial-card {
        padding: 1rem;
        margin: 0.25rem;
    }
    
    .carousel-controls {
        padding: 0 0.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-carousel .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-carousel .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .star-rating {
        align-self: flex-start;
    }
}
