/* Book Robert Page Styles */

/* Hero Section */
.book-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #dbeafe 100%);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(30, 58, 138, 0.1) 35px, rgba(30, 58, 138, 0.1) 70px);
}

.book-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.book-hero-content {
    max-width: 600px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    font-weight: 600;
    color: var(--robert-blue);
    margin-bottom: 24px;
}

.tag-icon {
    width: 16px;
    height: 16px;
}

.book-hero-title {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.book-hero-description {
    font-size: 22px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background: var(--robert-accent);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(6, 67, 140, 0.3);
}

.hero-btn.primary:hover {
    background: var(--robert-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(6, 67, 140, 0.4);
}

.hero-btn.secondary {
    background: white;
    color: var(--robert-accent);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-btn.secondary:hover {
    border-color: var(--robert-accent);
    background: rgba(6, 67, 140, 0.05);
    transform: translateY(-2px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--robert-blue);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual */
.book-hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: var(--robert-blue);
    animation: float 20s infinite ease-in-out;
    white-space: nowrap;
}

.badge-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    right: -10%;
    animation-delay: 5s;
}

.badge-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(-2deg); }
    25% { transform: translate(20px, -30px) rotate(1deg); }
    50% { transform: translate(-10px, 20px) rotate(-1deg); }
    75% { transform: translate(30px, 10px) rotate(2deg); }
}

/* Event Types Section */
.event-types-section {
    padding: 100px 0;
    background: white;
}

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

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.event-type-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.event-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.event-type-card:hover .event-image img {
    transform: scale(1.05);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.event-category {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.event-content {
    padding: 32px;
}

.event-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
}

.event-description {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.event-features {
    list-style: none;
}

.event-features li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 15px;
    position: relative;
    padding-left: 24px;
}

.event-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--robert-accent);
    font-weight: bold;
}

/* Why Book Section */
.why-book-section {
    padding: 100px 0;
    background: #fafbfc;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.benefits-image {
    position: relative;
}

.benefits-image img,
.benefits-image video {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--robert-accent);
    border-radius: 20px;
    z-index: -1;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--robert-blue) 0%, var(--robert-accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.benefit-text h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.benefit-text p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h4 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Testimonial */
.testimonial-slider {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.quote-icon {
    font-size: 60px;
    color: var(--robert-accent);
    opacity: 0.2;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 14px;
}

/* Booking Process Section */
.booking-process-section {
    padding: 100px 0;
    background: #fafbfc;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--robert-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: var(--robert-accent);
    margin: 0 auto 24px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-gray);
    font-size: 14px;
    max-width: 200px;
    margin: 0 auto;
}

.process-connector {
    position: absolute;
    top: 40px;
    left: 25%;
    right: 25%;
    height: 3px;
    background: #e5e7eb;
    z-index: 0;
}

/* Booking Form Section */
.booking-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--robert-blue) 0%, var(--robert-accent) 100%);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}


.form-info {
    color: white;
}

.form-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 24px;
}

.form-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-alternative {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.contact-alternative p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.link-icon {
    width: 20px;
    height: 20px;
}

/* Form Styles */
.booking-form {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    color: var(--robert-blue);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--robert-accent);
    box-shadow: 0 0 0 3px rgba(6, 67, 140, 0.1);
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: var(--robert-accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover {
    background: var(--robert-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

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

.form-disclaimer {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 24px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.faq-item {
    padding: 32px;
    background: #fafbfc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #dbeafe 100%);
}

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

.cta-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: var(--robert-accent);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(6, 67, 140, 0.3);
}

.cta-btn.primary:hover {
    background: var(--robert-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(6, 67, 140, 0.4);
}

.cta-btn.secondary {
    background: white;
    color: var(--robert-accent);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cta-btn.secondary:hover {
    border-color: var(--robert-accent);
    background: rgba(6, 67, 140, 0.05);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .book-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .book-hero-visual {
        display: none;
    }
    
    .book-hero-title {
        font-size: 48px;
    }
    
    .book-hero-description {
        font-size: 20px;
    }
    
    .benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .benefits-image video {
        max-height: 350px;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .book-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .book-hero-title {
        font-size: 36px;
    }
    
    .book-hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: space-around;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .event-types-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 32px 24px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .book-hero-title {
        font-size: 32px;
    }
    
    .book-hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .benefits-image video {
        max-height: 300px;
    }
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
    width: 100%;
    height: 100%;
}

.video-thumbnail:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.video-thumbnail:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.play-button svg {
    width: 40px;
    height: 40px;
    color: var(--robert-accent);
    margin-left: 4px;
    fill: currentColor;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal .modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal video {
    width: 100%;
    height: auto;
    display: block;
}

.video-modal .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-modal .close-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-modal .close-button svg {
    width: 24px;
    height: 24px;
}