/* ====================================
   BELLA BRIDES ALTERATIONS - STYLES
   ==================================== */

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

:root {
    /* Brand Colors - Soft Romantic Wedding Theme */
    --dusty-rose: #D4A5A5;
    --sage-green: #A8B5A0;
    --warm-cream: #FAF6F0;
    --soft-charcoal: #4A4A4A;
    --pearl-white: #FEFDFB;
    --light-mauve: #E8D5DB;

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 60px;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--soft-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 60px;
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
    height: 100vh;
    min-height: 700px;
    background:
        linear-gradient(135deg, rgba(212, 165, 165, 0.75) 0%, rgba(168, 181, 160, 0.75) 100%),
        url('Public/Images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(232, 213, 219, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 165, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(212, 165, 165, 0.3) 0%, rgba(168, 181, 160, 0.4) 100%);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 30px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--pearl-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(250, 247, 242, 0.9);
    font-weight: 300;
}

.hero-trust {
    margin-top: 30px;
    font-size: 14px;
    color: var(--light-mauve);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 2px solid var(--light-mauve);
    border-bottom: 2px solid var(--light-mauve);
    transform: rotate(-45deg);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ====================================
   BUTTONS
   ==================================== */

.cta-button {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.cta-button.primary {
    background: var(--dusty-rose);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 3;
}

.cta-button.primary:hover {
    background: #C19595;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.cta-button.secondary {
    background: transparent;
    color: var(--dusty-rose);
    border: 2px solid var(--dusty-rose);
}

.cta-button.secondary:hover {
    background: var(--dusty-rose);
    color: white;
}

.cta-button.large {
    padding: 20px 50px;
    font-size: 18px;
    width: 100%;
}

/* ====================================
   TRUST BAR
   ==================================== */

.trust-bar {
    background: var(--warm-cream);
    padding: 30px 0;
    border-bottom: 2px solid var(--light-mauve);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trust-item strong {
    font-size: 24px;
    color: var(--dusty-rose);
    font-weight: 600;
}

.trust-item span {
    font-size: 14px;
    color: var(--soft-charcoal);
}

/* ====================================
   SECTIONS
   ==================================== */

.section-white {
    background: white;
    padding: var(--section-padding);
}

.section-ivory {
    background: var(--warm-cream);
    padding: var(--section-padding);
}

.section-dark {
    background: var(--sage-green);
    padding: var(--section-padding);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--dusty-rose);
    margin-bottom: 15px;
    font-weight: 400;
}

.section-header p {
    font-size: 18px;
    color: var(--soft-charcoal);
    max-width: 700px;
    margin: 0 auto;
}

.section-header.light h2 {
    color: var(--pearl-white);
}

.section-header.light p {
    color: rgba(250, 247, 242, 0.8);
}

/* ====================================
   VALUE PROPOSITIONS
   ==================================== */

.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--dusty-rose);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--dusty-rose);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--soft-charcoal);
}

/* ====================================
   PACKAGES
   ==================================== */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.package-card {
    background: white;
    border: 2px solid var(--champagne-gold);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 3px solid var(--savile-navy);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dusty-rose);
    color: var(--dusty-rose);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-header h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--dusty-rose);
    margin-bottom: 10px;
}

.package-price {
    font-size: 56px;
    font-weight: 700;
    color: var(--dusty-rose);
    margin-bottom: 30px;
    font-family: var(--font-serif);
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: var(--soft-charcoal);
    font-size: 15px;
}

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

.package-note {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--champagne-gold);
    font-size: 16px;
    line-height: 1.8;
}

/* ====================================
   PROCESS
   ==================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--dusty-rose);
    color: var(--dusty-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: var(--font-serif);
}

.process-step h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--dusty-rose);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--soft-charcoal);
}

/* ====================================
   GALLERY
   ==================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--soft-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dusty-rose);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* ====================================
   TESTIMONIALS
   ==================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-left: 4px solid var(--champagne-gold);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: var(--dusty-rose);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 17px;
    line-height: 1.8;
    color: var(--soft-charcoal);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-author strong {
    color: var(--dusty-rose);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 14px;
    color: #666;
}

/* ====================================
   FAQ
   ==================================== */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bridal-ivory);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border-left: 4px solid var(--champagne-gold);
}

.faq-item summary {
    padding: 25px;
    font-weight: 600;
    font-size: 17px;
    color: var(--dusty-rose);
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-item summary:hover {
    background: rgba(212, 165, 116, 0.1);
}

.faq-item p {
    padding: 0 25px 25px 25px;
    color: var(--soft-charcoal);
    line-height: 1.8;
    font-size: 15px;
}

/* ====================================
   BOOKING FORM
   ==================================== */

.section-form {
    background: var(--dusty-rose);
    padding: var(--section-padding);
    color: white;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--dusty-rose);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-sans);
    transition: border-color 0.3s ease;
}

.form-group input[type="date"] {
    cursor: pointer;
    position: relative;
    padding-right: 40px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    position: absolute;
    right: 14px;
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.form-group input[type="date"]:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

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

.form-group textarea {
    resize: vertical;
}

.form-consent {
    margin: 25px 0;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--soft-charcoal);
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 20px;
    line-height: 1.6;
}

/* Centered Input for Step 1 */
.centered-input {
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.centered-input input {
    text-align: center;
    font-size: 18px;
    padding: 18px 20px;
}

.centered-input label {
    text-align: center;
    display: block;
    font-size: 16px;
}

/* Calendar Embed Container */
.calendar-embed-container {
    margin: 20px 0;
    min-height: 400px;
}

.calendar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* ====================================
   MULTI-STEP FORM
   ==================================== */

.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 0.8;
}

.progress-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--dusty-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--dusty-rose);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.progress-step.active .progress-circle {
    background: var(--dusty-rose);
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .progress-circle {
    background: var(--sage-green);
    border-color: var(--sage-green);
    color: white;
}

.progress-step.completed .progress-circle::after {
    content: '✓';
    position: absolute;
}

.progress-label {
    font-size: 13px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.progress-line {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
    margin-bottom: 35px;
    transition: background 0.3s ease;
}

.progress-step.completed + .progress-line {
    background: var(--sage-green);
}

.multi-step-form {
    position: relative;
    min-height: 400px;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideIn 0.4s ease;
}

.form-step.exiting {
    animation: slideOut 0.3s ease;
}

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

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.step-title {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--dusty-rose);
    margin-bottom: 30px;
    text-align: center;
}

.step-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.step-buttons .cta-button {
    flex: 1;
}

/* Timeline Buttons */
.timeline-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.timeline-card {
    position: relative;
    cursor: pointer;
}

.timeline-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 85px;
}

.timeline-card:hover .timeline-content {
    border-color: var(--dusty-rose);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-card input[type="radio"]:checked + .timeline-content {
    background: var(--dusty-rose);
    border-color: var(--dusty-rose);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.3);
}

.timeline-period {
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.timeline-label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
    display: block;
}

@media (max-width: 768px) {
    .timeline-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .timeline-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Alteration Checkboxes */
.alteration-checkboxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.checkbox-card {
    position: relative;
    cursor: pointer;
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 100px;
}

.checkbox-card:hover .checkbox-content {
    border-color: var(--dusty-rose);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content {
    background: var(--dusty-rose);
    border-color: var(--dusty-rose);
    color: white;
}

.checkbox-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.checkbox-text {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .alteration-checkboxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .progress-indicator {
        padding: 0 10px;
    }

    .progress-line {
        width: 40px;
    }

    .progress-label {
        font-size: 11px;
    }

    .step-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .alteration-checkboxes {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
    background: #0a1226;
    color: rgba(250, 247, 242, 0.8);
    padding: 60px 0 30px;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-serif);
    color: var(--dusty-rose);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(232, 213, 219, 0.2);
    font-size: 13px;
}

.footer-bottom p {
    margin: 5px 0;
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 1024px) {
    .three-columns,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .package-card.featured {
        transform: scale(1);
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 30px;
    }

    .container {
        padding: 0 30px;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 36px;
    }

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

    .booking-form {
        padding: 30px 20px;
    }

    .form-container {
        max-width: 100%;
        margin: 0;
    }

    .container {
        padding: 0 15px;
    }

    .section-form .container {
        padding: 0 10px;
    }

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

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

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .package-price {
        font-size: 42px;
    }

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

    .booking-form {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .section-form .container {
        padding: 0 5px;
    }

    .calendar-embed-container {
        margin: 10px -15px;
        width: calc(100% + 30px);
    }
}