.logo {
    display: flex;
    align-items: center; /* Vertically center the image and text */
    gap: 10px; /* Space between image and text */
}

.logo img {
    height: 50px; /* Adjust as needed */
}
/* ================================
   Info Policies Heading Centering
================================= */
.info-policies h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: #8f99fb;
  text-align: left;      /* default for small screens */
  margin-bottom: 2rem;
  font-weight: 700;
}

@media (min-width: 992px) {
  .info-policies h2 {
    text-align: center;  /* center on wide screens */
  }
}

/* ================================
   Session Packages Grid Responsive
================================= */
.packages-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: 1fr; /* default = 1x1 for mobile */
}

@media (min-width: 600px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 for tablets */
  }
}

@media (min-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 in a row for desktop */
  }
}
/* Default: left aligned */
h2 {
  text-align: left;
}

/* On wide screens: center */
@media (min-width: 992px) {
  h2 {
    text-align: center;
  }
}
.hero-content {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-text h2 {
    font-size: 4rem;  /* bigger headline on widescreen */
}

.hero-text p {
    font-size: 1.3rem;
}
.portfolio-grid,
.packages-grid,
.social-grid,
.policy-split {
    max-width: 1000px;
    margin: 0 auto;
}
.contact-form {
    margin: 0 auto;
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 1400px) {
    .hero-text h2 {
        font-size: 4.5rem;
    }
    .hero-text p {
        font-size: 1.4rem;
        max-width: 700px;
    }
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8f99fb;
    letter-spacing: -0.5px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #8f99fb;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #8f99fb;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #8f99fb 0%, #8f99fb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #8f99fb;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #8f99fb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 153, 251, 0.3);
}

.learn-more-button {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 15px;
    font-size: 1rem;
}

.learn-more-button:hover {
    background-color: white;
    color: #8f99fb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.02);
}

.placeholder-content {
    text-align: center;
    color: #6c757d;
}

.placeholder-icon {
    display: block;      /* ensures it acts like a block */
    margin-bottom: 0.3rem; /* space between image and text */
}
.placeholder-icon img {
    display: block;
    margin: 0 auto 10px auto; /* 10px space below the image */
}
.placeholder-content p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1.75rem; /* moves it closer to the image */
}
/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #8f99fb;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.portfolio h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.portfolio-item .image-placeholder {
    height: 300px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

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

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8f99fb;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 60px 0 20px;
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8f99fb;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #6c757d;
    line-height: 1.6;
}

.footer-social h4,
.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #8f99fb;
    margin-bottom: 1rem;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-social-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-social-link:hover {
    color: #8f99fb;
}

.footer-contact p {
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

.footer-bottom p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social-links {
        align-items: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .about-content h2,
    .portfolio h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.hero-text,
.hero-image {
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    animation-delay: 0.3s;
}

/* Session Packages Section */
.packages {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.packages h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #8f99fb;
}

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

.package-item {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.package-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.package-image .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}

.package-image .placeholder-icon {
    font-size: 3rem;
}

.package-image .placeholder-content p {
    font-size: 1rem;
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(143, 153, 251, 0.2);
}



.package-header {
    text-align: center;
    margin-bottom: 0;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.package-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8f99fb;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8f99fb;
}

.package-content {
    padding: 2rem;
}

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

.package-content li {
    padding: 0.5rem 0;
    color: #6c757d;
    position: relative;
    padding-left: 1.5rem;
}

.package-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8f99fb;
    font-weight: bold;
}

.package-button {
    display: block;
    background-color: #8f99fb;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #8f99fb;
}

.package-button:hover {
    background-color: transparent;
    color: #8f99fb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 153, 251, 0.3);
}

/* Social Media Section */
.social {
    padding: 80px 0;
    background-color: #fff;
}

.social h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #8f99fb;
}

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

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

.social-item {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-item:hover {
    transform: translateY(-5px);
    border-color: #8f99fb;
    box-shadow: 0 15px 30px rgba(143, 153, 251, 0.2);
}

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

.social-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8f99fb;
    margin-bottom: 0.5rem;
}

.social-item p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}
/* Booking Form Styles */
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    color: #8f99fb;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    color: #2c3e50;
}

.contact-form .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .button-group button {
    background-color: #8f99fb;
    color: white;
    border: 2px solid #8f99fb;
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .button-group button:hover,
.contact-form .button-group button.active {
    background-color: white;
    color: #8f99fb;
    box-shadow: 0 5px 15px rgba(143, 153, 251, 0.3);
    transform: translateY(-2px);
}

.contact-form input[type="datetime-local"] {
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input[type="datetime-local"]:focus {
    outline: none;
    border-color: #8f99fb;
}

.contact-form textarea {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 15px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
}

.contact-form textarea:focus {
    border-color: #8f99fb;
}

.contact-form .cta-button {
    margin-top: 1rem;
    background-color: #8f99fb;
    color: white;
    border: 2px solid #8f99fb;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .cta-button:hover {
    background-color: white;
    color: #8f99fb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 153, 251, 0.3);
}

/* Responsive Form Adjustments */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form .button-group {
        flex-direction: column;
    }

    .contact-form .button-group button {
        width: 100%;
    }
}
.option-button {
    display: inline-block;
    margin: 0.5rem 0.5rem 0 0;
    cursor: pointer;
}

.option-button input {
    display: none;
}

.option-button span {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #8f99fb;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.option-button input:checked + span {
    background-color: white;
    color: #8f99fb;
    box-shadow: 0 5px 15px rgba(143, 153, 251, 0.3);
    transform: translateY(-2px);
}

.option-button span:hover {
    background-color: white;
    color: #8f99fb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 153, 251, 0.3);
}
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    color: #8f99fb;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8f99fb;
    box-shadow: 0 0 10px rgba(143, 153, 251, 0.2);
}

.contact-form label {
    font-weight: 500;
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
}

.option-button span {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background-color: #8f99fb;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-button input:checked + span {
    background-color: white;
    color: #8f99fb;
    border: 2px solid #8f99fb;
    box-shadow: 0 5px 15px rgba(143, 153, 251, 0.3);
    transform: translateY(-2px);
}

.option-button span:hover {
    background-color: white;
    color: #8f99fb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 153, 251, 0.2);
}

.cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    margin-top: 1.5rem;
    background-color: #8f99fb;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: white;
    color: #8f99fb;
    box-shadow: 0 5px 15px rgba(143, 153, 251, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
    }

    .option-button span {
        width: 100%;
        text-align: center;
    }
}
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.option-btn {
    background-color: #8f99fb;
    color: white;
    border: 2px solid #8f99fb;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-btn:hover {
    background-color: white;
    color: #8f99fb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 153, 251, 0.3);
}

.option-btn.active {
    background-color: #8f99fb;
    color: white;
    box-shadow: 0 5px 15px rgba(143, 153, 251, 0.3);
}

/* Remove Hamburger Button */
.hamburger {
    display: none !important; /* hide the button */
}

/* Make nav always visible on mobile */
.nav ul {
    display: flex !important;
    flex-direction: row !important; /* keep horizontal layout */
    gap: 2rem !important;
}

/* Optional: remove any mobile-only nav adjustments */
@media (max-width: 768px) {
    .nav ul {
        flex-direction: row !important;
        gap: 1rem !important;
    }
}
.info-policies {
    background: #faf9f6;
    padding: 80px 0;
    margin: 0;
}

.info-policies .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-policies h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: #8f99fb;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-policies p {
    color: #6c757d;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.info-policies ul {
    list-style: none;
    padding-left: 0;
}

.info-policies > .container > ul > li {
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(139, 92, 246, 0.07);
    padding: 1.5rem 1.5rem 1rem 2.5rem;
    position: relative;
    border-left: 5px solid #8f99fb;
}

.info-policies > .container > ul > li strong {
    color: #8f99fb;
    font-size: 1.15rem;
    font-family: 'Playfair Display', serif;
}

.info-policies ul ul {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
}

.info-policies ul ul li {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
}

.info-policies ul ul li:before {
    content: "•";
    color: #8f99fb;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    top: 0.1rem;
}

@media (max-width: 768px) {
    .info-policies {
        padding: 50px 0;
    }
    .info-policies .container {
        padding: 0 10px;
    }
    .info-policies h2 {
        font-size: 1.5rem;
    }
    .info-policies > .container > ul > li {
        padding: 1rem 1rem 0.7rem 1.2rem;
    }
}


/* Policy Split Section - Make Editing/Distribution look like Session Packages */
.policy-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0 auto;
}

.policy-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    border: 2px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.policy-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.13);
    border-color: #8f99fb;
}

.policy-box h3 {
    font-family: 'Playfair Display', serif;
    color: #8f99fb;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.policy-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
    width: 100%;
}

.policy-box li {
    color: #6c757d;
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 1.5rem;
}

.policy-box li:before {
    content: "✓";
    color: #8f99fb;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    font-weight: bold;
    top: 0.1rem;
}

.policy-box p {
    font-size: 0.98rem;
    color: #8f99fb;
    margin-top: 0.5rem;
    text-align: left;
    width: 100%;
}

@media (max-width: 900px) {
    .policy-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .policy-box {
        max-width: 100%;
        min-width: 0;
    }
}
.policy-agree-label {
    display: flex;
    align-items: baseline; /* aligns checkbox with first line of text */
    gap: 0.5rem;
    font-size: 1rem;
    margin: 1.2rem 0 1.5rem 0;
    color: #6c757d;
    cursor: pointer;
    line-height: 1.4;
    font-weight: 400;
}

.policy-agree-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #8f99fb;
    margin: 0;
    flex-shrink: 0;
    vertical-align: text-bottom; /* helps fine-tune vertical position */
}

.policy-agree-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem 0;
    padding-left: 2px;
}

.policy-agree-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #8f99fb;
    margin: 0;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(143,153,251,0.08);
}

.policy-agree-row label {
    font-size: 1.08rem;
    color: #6c757d;
    cursor: pointer;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    user-select: text;
}

/* Style for read-only payment summary fields */
.payment-summary {
    background: #f8f9fa;
    border: none;
    color: #8f99fb;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0;
    margin: 0 0 1.2rem 0;
    box-shadow: none;
    outline: none;
    width: auto;
    display: inline;
    pointer-events: none;
}

#deposit-balance-fields label,
#discounted-total-field label {
    margin-bottom: 0.2rem;
    margin-top: 1rem;
    color: #2c3e50;
    font-weight: 500;
    display: block;
}

#deposit-balance-fields,
#discounted-total-field {
    margin-bottom: 1.2rem;
}

.policy-note {
    color: #8f99fb;
    font-size: 0.98rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: left;
}

.info-policies-pop {
    background: #faf9f6;
    padding: 80px 0;
    margin: 0;
}

.policy-pop-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(143, 153, 251, 0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    border: 2px solid #f1f5f9;
    max-width: 900px;
    margin: 0 auto;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    z-index: 1;
}

.policy-pop-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(143, 153, 251, 0.18);
    border-color: #8f99fb;
}

.policy-pop-box h2 {
    font-family: 'Playfair Display', serif;
    color: #8f99fb;
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.policy-pop-content ul {
    list-style: none;
    padding-left: 0;
}

.policy-pop-content > ul > li {
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.2rem 1.2rem 0.7rem 1.7rem;
    border-left: 5px solid #8f99fb;
    transition: background 0.2s;
}

.policy-pop-title {
    color: #8f99fb;
    font-size: 1.15rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.policy-pop-content ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
}

.policy-pop-content ul ul li {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.2rem;
}

.policy-pop-content ul ul li:before {
    content: "•";
    color: #8f99fb;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    top: 0.1rem;
}

@media (max-width: 900px) {
    .policy-pop-box {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .policy-pop-box h2 {
        font-size: 1.3rem;
    }
    .policy-pop-content > ul > li {
        padding: 1rem 0.7rem 0.5rem 1rem;
    }
}

/* Additional Styles for Policy Section */
.policy-group {
    margin-bottom: 2.2rem;
    background: #f8f9fa;
    border-radius: 14px;
    padding: 1.2rem 1.2rem 0.7rem 1.7rem;
    border-left: 5px solid #8f99fb;
    box-shadow: 0 2px 10px rgba(143, 153, 251, 0.05);
    transition: 
        background 0.2s,
        box-shadow 0.3s,
        border-color 0.3s,
        transform 0.3s;
    position: relative;
}

.policy-group:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(143, 153, 251, 0.13);
    border-color: #8f99fb;
    transform: translateY(-5px) scale(1.03);
    z-index: 2;
}

/* Unified Policies & Form Section */
.info-policies-form {
  background: #f8f9fa;
  padding: 80px 0;
}

.policies-form-flex {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: flex-start;
}

.policies-card, .booking-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(143, 153, 251, 0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  border: 2px solid #f1f5f9;
  flex: 1 1 400px;
  min-width: 340px;
  max-width: 600px;
  margin-bottom: 2rem;
}

.policies-card h2, .booking-card h2 {
  font-family: 'Playfair Display', serif;
  color: #8f99fb;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.policies-card ul {
  list-style: none;
  padding-left: 0;
}

.policies-card > ul > li {
  margin-bottom: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.2rem 1.2rem 0.7rem 1.7rem;
  border-left: 5px solid #8f99fb;
}

.policy-title {
  color: #8f99fb;
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.policies-card ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
}

.policies-card ul ul li {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.2rem;
}

.policies-card ul ul li:before {
  content: "•";
  color: #8f99fb;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
  top: 0.1rem;
}

@media (max-width: 1100px) {
  .policies-form-flex {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .policies-card, .booking-card {
    max-width: 100%;
  }
}

/* --- FORM CARD IMPROVEMENTS --- */
.booking-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(143, 153, 251, 0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  border: 2px solid #f1f5f9;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.booking-card h2 {
  font-family: 'Playfair Display', serif;
  color: #8f99fb;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: 700;
}

.booking-card h3 {
  font-family: 'Playfair Display', serif;
  color: #8f99fb;
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem 0;
  text-align: left;
  font-weight: 600;
}

.booking-card label {
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 0.3rem;
  margin-top: 0.7rem;
  display: block;
}

.booking-card input,
.booking-card textarea {
  width: 100%;
  padding: 13px;
  margin-bottom: 0.7rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #f8f9fa;
}

.booking-card input:focus,
.booking-card textarea:focus {
  outline: none;
  border-color: #8f99fb;
  box-shadow: 0 0 8px rgba(143, 153, 251, 0.13);
}

.booking-card textarea {
  min-height: 90px;
  resize: vertical;
}

.booking-card .button-group {
  margin-bottom: 1.2rem;
}

.booking-card .cta-button {
  margin-top: 1.2rem;
  width: 100%;
  padding: 15px 0;
  font-size: 1.1rem;
}

.booking-card small {
  color: #6c757d;
  font-size: 0.97rem;
  margin-bottom: 1rem;
  display: block;
}

@media (max-width: 900px) {
  .booking-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    max-width: 100%;
  }
}
#posterPreview {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering if it has height */
  margin: 20px 0;          /* optional spacing */
  text-align: center;      /* centers text inside poster */
}


/* --- Top Instagram CTA (header right) --- */
.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link a {
  --accent: #8f99fb;

  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;

  color: var(--accent);
  background: #fff;
  border: 2px solid var(--accent);

  box-shadow: 0 6px 16px rgba(143,153,251,0.12);
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.social-link a::before {
  content: "📷";
  font-size: 1.1rem;
  line-height: 1;
}

.social-link a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(143,153,251,0.28);
}

.social-link a:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(143,153,251,0.2);
}

.social-link a:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 6px rgba(143,153,251,0.65);
  border-color: transparent;
}

/* Optional: subtle pulsing dot to draw attention */
.social-link a .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 2px;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(143,153,251,0.6);
  animation: instaPulse 1.8s ease-out infinite;
}

@keyframes instaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(143,153,251,0.6); }
  80%  { box-shadow: 0 0 0 10px rgba(143,153,251,0); }
  100% { box-shadow: 0 0 0 0 rgba(143,153,251,0); }
}

/* Header layout tweaks so CTA sits nicely on the right */
.header .container {
  gap: 1rem;
}

.logo { flex: 1 1 auto; }
.social-link { flex: 0 0 auto; }

/* Responsive: full-width CTA on small screens */
@media (max-width: 768px) {
  .social-link {
    width: 100%;
    justify-content: center;
  }
  .social-link a {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 1rem;
  }
}

/* Optional: light underline for header link-only version */
.header .social-link a.is-text {
  background: transparent;
  border-color: transparent;
  color: #8f99fb;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.header .social-link a.is-text:hover {
  text-decoration: underline;
  transform: none;
}
