/* Modern Luxurious Certificate Ceremony Design (Front Page) */

:root {
    /* Luxurious color palette */
    --primary: #f4c76b;              /* metallic gold */
    --primary-dark: #d9a94a;
    --primary-light: #ffe2a3;
    --secondary: #9ca9c6;
    --accent: #f59e0b;
    --success: #3fbf8c;
    --dark: #06152b;                 /* deep midnight blue */
    --dark-light: #102138;
    --text: #fdfaf5;
    --text-light: #c4cfe0;
    --bg: #020713;
    --bg-light: #071326;
    --gradient-1: linear-gradient(135deg, #f4c76b 0%, #ffe9b0 100%);
    --gradient-2: linear-gradient(135deg, #233a6e 0%, #050c18 100%);
    --gradient-3: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.35);
    --shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.75);
    --shadow-xl: 0 28px 80px rgba(0, 0, 0, 0.85);
    --shadow-2xl: 0 36px 110px rgba(0, 0, 0, 0.9);
    --border-color: rgba(255, 255, 255, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background: radial-gradient(circle at top, #13274b 0%, #020713 55%, #000309 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Animated Background Particles */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-100px) translateX(50px);
    }
    50% {
        transform: translateY(-200px) translateX(-50px);
    }
    75% {
        transform: translateY(-100px) translateX(100px);
    }
}

/* Modern Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(6, 21, 43, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(244, 199, 107, 0.22);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(6, 21, 43, 0.98);
    box-shadow: var(--shadow);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.logo h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover {
    color: #ffffff;
}

.btn-book-nav {
    background: var(--gradient-1);
    color: white !important;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    font-weight: 600;
}

.btn-book-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-book-nav::before {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Futuristic Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at top, #233a6e 0%, #050c18 60%, #000309 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 15, 32, 0.15) 0%, rgba(6, 15, 32, 0.9) 65%, rgba(3, 8, 18, 0.98) 100%);
    z-index: 1;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    z-index: 0;
    animation: slowZoom 20s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff9ec;
    padding: 7rem 1.5rem 3rem;
    max-width: 960px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(9, 23, 47, 0.82);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(244, 199, 107, 0.7);
    animation: pulse 2s ease-in-out infinite;
    color: var(--primary);
}

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

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #ffe7b4 45%, #f4c76b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 249, 236, 0.9);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(240, 232, 217, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-hero {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-xl);
}

.btn-hero-primary {
    background: var(--primary);
    color: #1b2436;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    backdrop-filter: blur(10px);
    color: #fdfaf5;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
}

/* Event Details Section */
.event-section {
    padding: 4.5rem 0;
    background: radial-gradient(circle at top, #0f2040 0%, #050c18 70%);
    position: relative;
    overflow: hidden;
}

.event-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2.1rem, 4.2vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-light);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 400;
}

.event-hero-content {
    text-align: center;
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.event-main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.event-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.event-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* New frosted-glass event details bar */
.event-details-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.8rem 2.2rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(12, 30, 60, 0.95), rgba(8, 20, 41, 0.98));
    border: 1px solid rgba(244, 199, 107, 0.35);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    color: #fdfaf5;
}

.event-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
}

.event-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0%, #fffbe6 0%, #f2c35f 45%, #c5932d 100%);
    color: #1a2233;
    font-size: 1.4rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    margin-bottom: 0.35rem;
}

.event-detail-label {
    font-size: 0.9rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: rgba(250, 246, 236, 0.76);
}

.event-detail-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff8e6;
}

.event-detail-text {
    font-size: 0.92rem;
    color: rgba(227, 234, 245, 0.9);
}

.map-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #040c1c 0%, #02060f 100%);
    position: relative;
    color: #fdfaf5;
}

.contact-section .section-header {
    margin-bottom: 2.5rem;
}

.contact-section .section-title {
    color: var(--primary-light);
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(9, 20, 39, 0.92);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(244, 199, 107, 0.25);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-flex;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-light);
}

.contact-card h3 {
    color: #fdfaf5;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.contact-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #fff;
}

/* Guests Section */
.guests-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #050c18 0%, #050c18 55%, #071324 100%);
    position: relative;
}

.guests-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.guests-heading {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 2.5rem;
}

.guests-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

.guest-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #fdfaf5;
}

.guest-avatar {
    width: 150px;
    height: 150px;
    border-radius: 999px;
    border: 4px solid rgba(244, 199, 107, 0.9);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: radial-gradient(circle at 30% 0%, #ffeac1 0%, #f0bf58 40%, #b78121 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #261c0b;
}

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

.guest-name {
    font-weight: 600;
    font-size: 1.1rem;
}

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

/* Booking Section */
.booking-section {
    padding: 4.5rem 0 4rem;
    background: #f7efe3;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.ceremony-banner-booking {
    margin: 2rem 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    position: relative;
}

.ceremony-image-booking {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
    transition: transform 0.5s ease;
}

.ceremony-banner-booking:hover .ceremony-image-booking {
    transform: scale(1.05);
}

.booking-form-container-full {
    background: #faf4ea;
    padding: 2.2rem 2.4rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(209, 181, 124, 0.65);
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem 1.4rem;
    background: #fffaf2;
    border-radius: 16px;
    border: 1px solid rgba(226, 211, 183, 0.9);
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2933;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-section-title::before {
    content: '';
    width: 4px;
    height: 2rem;
    background: var(--gradient-1);
    border-radius: 2px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1f2933;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.radio-label:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.radio-label input[type="radio"]:checked + span {
    color: var(--primary);
    font-weight: 600;
}

.radio-label input[type="radio"]:checked ~ .radio-label {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-submit:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: var(--shadow-2xl);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .event-section,
    .guests-section,
    .booking-section {
        padding: 2.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .booking-form-container-full {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }

    .event-details-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 1.25rem;
    }

    .guests-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 2rem;
    }
}

/* Scroll Animations - Removed (only hero section has animations) */

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Form Errors */
.form-errors {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #dc2626;
}

.form-errors ul {
    list-style: none;
    margin-top: 0.5rem;
}

.form-errors li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.form-errors li::before {
    content: '⚠';
    position: absolute;
    left: 0;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Info Boxes */
.info-box {
    background: rgba(99, 102, 241, 0.15);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.info-box p {
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

.payment-info {
    background: rgba(245, 158, 11, 0.15);
    border-left-color: var(--accent);
}

.payment-qr-wrapper {
    margin-top: 1rem;
    text-align: center;
}

.payment-qr-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.total-amount-display {
    background: var(--gradient-1);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
}

/* Checkbox and Form Controls */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    color: #1f2933;
    font-weight: 600;
}

.checkbox-label:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.checkbox-label input[type="checkbox"]:checked ~ span {
    color: var(--primary);
    font-weight: 600;
}

.checkbox-label span {
    color: inherit;
}

.form-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Guest Forms */
.family-members-container,
.additional-guests-container {
    margin-top: 1.5rem;
}

.guest-form-block {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.guest-form-block:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

/* Extra small screens */
@media (max-width: 480px) {
    .booking-form-container-full {
        padding: 1.25rem;
    }

    .form-section {
        padding: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.85rem 0.9rem;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-label {
        width: 100%;
        justify-content: flex-start;
    }

    .checkbox-label {
        flex-direction: column;
        align-items: flex-start;
    }

    .guest-form-block {
        padding: 1rem;
    }

    .event-details-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
  .container-full {
    padding: 0 !important;
  }
}

