/* ================================================
   The Pamper Princess Party Bus - Main Stylesheet
   ================================================ */

:root {
    --princess-pink: #F8B4C4;
    --soft-blush: #FDE8ED;
    --deep-rose: #E87A9F;
    --magenta: #D4477A;
    --cream: #FFF9FA;
    --gold: #D4A574;
    --sparkle: #FFE4EC;
    --text-dark: #5C3D4A;
    --text-light: #8B6B78;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ================================================
   Animations
   ================================================ */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sparkle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sparkle-bg::before,
.sparkle-bg::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-bg::before { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle-bg::after { top: 60%; right: 15%; animation-delay: 1.5s; }

/* ================================================
   Navigation
   ================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(212, 71, 122, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(212, 71, 122, 0.2);
}

.logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.3rem;
    color: var(--magenta);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--deep-rose);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--princess-pink), var(--magenta));
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--magenta);
}

.nav-cta {
    background: linear-gradient(135deg, var(--deep-rose), var(--magenta));
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 71, 122, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 71, 122, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--magenta);
    cursor: pointer;
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(248, 180, 196, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(253, 232, 237, 0.6) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 228, 236, 0.3) 0%, transparent 60%),
        var(--cream);
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
.hero-decoration:nth-child(2) { top: 25%; right: 10%; animation-delay: 1s; font-size: 2rem; }
.hero-decoration:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 2s; font-size: 2.5rem; }
.hero-decoration:nth-child(4) { bottom: 30%; right: 5%; animation-delay: 0.5s; }
.hero-decoration:nth-child(5) { top: 50%; left: 2%; animation-delay: 1.5s; font-size: 1.5rem; }

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--magenta);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(212, 71, 122, 0.15);
}

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: 4rem;
    color: var(--magenta);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--deep-rose);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--princess-pink), var(--deep-rose));
    border-radius: 30px;
    padding: 2rem;
    transform: rotate(3deg);
    box-shadow: 0 20px 60px rgba(212, 71, 122, 0.25);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}

.hero-image-inner {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transform: rotate(-3deg);
    text-align: center;
}

.hero-logo-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(212, 71, 122, 0.2);
}

.hero-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    background: var(--soft-blush);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--magenta);
}

/* ================================================
   Buttons
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--deep-rose), var(--magenta));
    color: white;
    box-shadow: 0 4px 20px rgba(212, 71, 122, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 71, 122, 0.45);
}

.btn-secondary {
    background: white;
    color: var(--magenta);
    border: 2px solid var(--princess-pink);
}

.btn-secondary:hover {
    background: var(--soft-blush);
    border-color: var(--deep-rose);
}

/* ================================================
   Section Styles
   ================================================ */
section {
    padding: 6rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--magenta);
    background: var(--soft-blush);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: var(--magenta);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================================
   About Section
   ================================================ */
.about-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--soft-blush) 100%);
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    background: linear-gradient(135deg, var(--princess-pink), var(--deep-rose));
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(212, 71, 122, 0.2);
}

.about-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-tagline {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: white;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: -2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--magenta);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-content h3 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: var(--magenta);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--soft-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ================================================
   Packages Section
   ================================================ */
.packages-section {
    background: var(--cream);
}

.packages-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 71, 122, 0.2);
}

.package-card.featured {
    border: 3px solid var(--magenta);
}

.package-card.featured::before {
    content: '⭐ Most Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--magenta);
    color: white;
    padding: 0.5rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
}

.package-header {
    background: linear-gradient(135deg, var(--princess-pink), var(--deep-rose));
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.package-tier {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.package-name {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.package-body {
    padding: 2rem;
}

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

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--soft-blush);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    color: var(--magenta);
    font-weight: 700;
    font-size: 1.1rem;
}

.package-pricing {
    background: var(--soft-blush);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.price-option:first-child {
    border-bottom: 1px dashed var(--princess-pink);
}

.price-duration {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.price-kids {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
}

.package-card .btn {
    width: 100%;
    justify-content: center;
}

/* ================================================
   Gallery Section
   ================================================ */
.gallery-section {
    background: linear-gradient(180deg, var(--soft-blush) 0%, var(--cream) 100%);
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--princess-pink), var(--deep-rose));
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

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

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; font-size: 8rem; }

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(212, 71, 122, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================================
   Booking Section
   ================================================ */
.booking-section {
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(248, 180, 196, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(253, 232, 237, 0.5) 0%, transparent 40%),
        var(--cream);
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 71, 122, 0.15);
}

.booking-header {
    background: linear-gradient(135deg, var(--deep-rose), var(--magenta));
    padding: 3rem;
    text-align: center;
    color: white;
}

.booking-header h3 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.booking-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.booking-body {
    padding: 3rem;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.booking-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--soft-blush);
    border-radius: 20px;
    position: relative;
}

.booking-step::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--princess-pink);
}

.booking-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--deep-rose), var(--magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.booking-step h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.booking-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.deposit-info {
    background: linear-gradient(135deg, var(--soft-blush), white);
    border: 2px solid var(--princess-pink);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.deposit-info h4 {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--magenta);
    margin-bottom: 1rem;
}

.deposit-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--magenta);
    margin-bottom: 0.5rem;
}

.deposit-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.bank-details {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bank-details h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--soft-blush);
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-label {
    color: var(--text-light);
    font-weight: 500;
}

.bank-value {
    font-weight: 700;
    color: var(--text-dark);
}

.deposit-warning {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(212, 71, 122, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--magenta);
    font-weight: 600;
}

/* ================================================
   Consent Form Section
   ================================================ */
.consent-section {
    background: var(--soft-blush);
}

.consent-container {
    max-width: 800px;
    margin: 0 auto;
}

.consent-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(212, 71, 122, 0.1);
}

.consent-card h3 {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--magenta);
    margin-bottom: 2rem;
    text-align: center;
}

/* ================================================
   Forms
   ================================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.consent-info-section {
    background: var(--soft-blush);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.consent-info-section h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.consent-info-section ul {
    list-style: none;
    color: var(--text-light);
}

.consent-info-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.consent-info-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--magenta);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color: var(--magenta);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ================================================
   Contact Section
   ================================================ */
.contact-section {
    background: var(--cream);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: var(--magenta);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 71, 122, 0.15);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.contact-method-text h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-method-text span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(212, 71, 122, 0.1);
}

.contact-form-wrapper h4 {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--magenta);
    margin-bottom: 1.5rem;
}

/* ================================================
   Policy Section
   ================================================ */
.policy-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--soft-blush) 100%);
}

.policy-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.policy-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.policy-card h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.policy-card h4 span {
    font-size: 1.5rem;
}

.policy-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ================================================
   Footer
   ================================================ */
footer {
    background: linear-gradient(135deg, var(--magenta), #A03561);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand .footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand .logo-text {
    color: white;
    font-size: 1.5rem;
}

.footer-brand .logo-text span {
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.85;
    line-height: 1.7;
}

.footer-links h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ================================================
   Mobile Menu
   ================================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 999;
    padding: 6rem 2rem 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--magenta);
    cursor: pointer;
}

/* ================================================
   Page Headers (for inner pages)
   ================================================ */
.page-header {
    padding: 10rem 2rem 4rem;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(248, 180, 196, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(253, 232, 237, 0.6) 0%, transparent 40%),
        var(--cream);
    text-align: center;
}

.page-header h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: var(--magenta);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--deep-rose);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--text-light);
}

/* ================================================
   Responsive Design
   ================================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title span {
        font-size: 1.2rem;
    }

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

    .booking-steps {
        grid-template-columns: 1fr;
    }

    .booking-step::after {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        font-size: 4rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}
