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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #1a1a1a;
    min-height: 100vh;
    padding-bottom: 50px;
}

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

/* Book Now Pay Later Banner */
.bnpl-banner {
    background: #ed3c0b;
    color: white;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

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

.bnpl-banner h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bnpl-banner p {
    font-size: 1.3em;
    opacity: 0.95;
}

.bnpl-banner .logo {
    max-height: 70px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('wing-foiling-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5em;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Testimonials */
.testimonials-section {
    margin: 50px 0;
    padding: 40px 0;
    overflow: hidden;
}

.testimonials-section h3 {
    text-align: center;
    color: #333;
    font-size: 2em;
    margin-bottom: 30px;
}

.testimonials-scroll {
    display: flex;
    gap: 25px;
    animation: scroll-testimonials 40s linear infinite;
    width: fit-content;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-scroll:hover {
    animation-play-state: paused;
}

.testimonial {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ed3c0b;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.testimonial .stars {
    color: #ffa500;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
    min-height: 120px;
}

.testimonial strong {
    color: #ed3c0b;
    font-size: 0.95em;
}

/* Indemnity Form */
.indemnity-container {
    max-width: 900px;
    margin: 0 auto;
}

.agreement-text h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.indemnity-scroll {
    max-height: 400px;
    overflow-y: auto;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.indemnity-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.95em;
    line-height: 1.8;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.signature-section {
    margin: 30px 0;
}

.signature-section h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.signature-section p {
    color: #666;
    margin-bottom: 20px;
}

.signature-pad-wrapper {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    padding: 10px;
    margin-bottom: 15px;
    display: block;
    width: 100%;
    max-width: 650px;
}

.signature-canvas {
    border: 2px solid #ed3c0b;
    border-radius: 5px;
    cursor: crosshair;
    touch-action: none;
    display: block;
    width: 100%;
    max-width: 600px;
    height: 200px;
    background: white;
}

.signature-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-clear-signature {
    background: white;
    color: #ed3c0b;
    border: 2px solid #ed3c0b;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear-signature:hover {
    background: #ed3c0b;
    color: white;
}

.agreement-checkbox-container {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.agreement-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.agreement-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.agreement-checkbox span {
    flex: 1;
    color: #333;
    font-size: 1.05em;
    line-height: 1.6;
    font-weight: 500;
}

.error-message {
    color: #f44336;
    font-size: 0.9em;
    margin-top: 8px;
    display: block;
}

.error-message.hidden {
    display: none;
}

/* Weather Toggle Section */
.weather-toggle-section {
    margin: 30px 0;
    text-align: center;
}

.weather-toggle-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.weather-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.toggle-icon {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.weather-quick-info {
    margin-top: 10px;
    color: #666;
    font-size: 0.95em;
    font-style: italic;
}

/* Testimonials Grid (replaces scroll) */
.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
    margin-top: 30px;
}

/* Tablet: 2 columns */
@media (max-width: 992px) and (min-width: 769px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonials-section h3 {
    text-align: center;
    color: #333;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.testimonial {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Weather Section */
.weather-section {
    margin: 30px 0;
    padding: 30px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    border-radius: 20px;
}

.weather-section h3 {
    text-align: center;
    color: #333;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.weather-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1em;
    margin-bottom: 40px;
}

/* Webcam Section */
.webcam-container {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

.webcam-title {
    text-align: center;
    color: #ed3c0b;
    font-size: 1.6em;
    margin-bottom: 20px;
}

.webcam-wrapper {
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.webcam-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2em;
    z-index: 1;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Clickable webcam link */
.webcam-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.webcam-placeholder-clickable {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.webcam-link:hover .webcam-placeholder-clickable {
    background: linear-gradient(135deg, #5568d3 0%, #653a8b 100%);
    transform: scale(1.02);
}

.webcam-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeIn 0.5s ease-in;
    border: none;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.webcam-caption {
    text-align: center;
    color: #666;
    font-size: 0.95em;
    margin-top: 10px;
    font-style: italic;
}

.webcam-note {
    text-align: center;
    color: #999;
    font-size: 0.85em;
    margin-top: 8px;
    line-height: 1.5;
}

.webcam-note a {
    color: #ed3c0b;
    text-decoration: underline;
}

.webcam-note a:hover {
    color: #c43109;
}

.weather-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 600px), 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.weather-widget {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.weather-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.weather-widget iframe {
    display: block;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 500px;
}

.weather-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.weather-tip {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ed3c0b;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.weather-tip h4 {
    color: #ed3c0b;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.weather-tip ul {
    list-style: none;
    padding: 0;
}

.weather-tip ul li {
    color: #555;
    line-height: 2;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.weather-tip ul li:last-child {
    border-bottom: none;
}

.weather-tip ul li strong {
    color: #333;
}

.weather-tip p {
    color: #666;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    margin: 50px 0;
    padding: 40px 0;
}

.faq-section h3 {
    text-align: center;
    color: #333;
    font-size: 2em;
    margin-bottom: 30px;
}

.faq-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ed3c0b;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    user-select: none;
}

.faq-icon {
    font-size: 1.5em;
    font-weight: bold;
    color: #ed3c0b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Booking Container */
.booking-container {
    padding: 40px 0;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 25%;
    right: 25%;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
}

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

.step-circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #e0e0e0;
    color: #999;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 1.5em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: #ed3c0b;
    color: white;
    animation: pulse-step 2s infinite;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.step.completed .step-circle {
    background: #4caf50;
    color: white;
}

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

.step-label {
    font-size: 0.95em;
    color: #666;
    font-weight: 500;
}

.step.active .step-label {
    color: #ed3c0b;
    font-weight: 700;
}

/* Booking Steps */
.booking-step {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: fadeIn 0.5s ease;
}

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

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

.step-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Experience Cards */
.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.experience-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.experience-card:hover {
    border-color: #ed3c0b;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.card-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.experience-card h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

.experience-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0;
    color: #555;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.badge {
    background: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.95em;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-weight: 600;
    color: #ed3c0b;
}

/* Package Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.package-category {
    grid-column: 1 / -1;
    color: #ed3c0b;
    font-size: 1.5em;
    margin: 20px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #ed3c0b;
}

.package-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: #ed3c0b;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.package-card.featured {
    border-color: #f5576c;
}

.package-card.best-value {
    border-color: #4caf50;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: #ff9800;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.85em;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.package-badge.best {
    background: #4caf50;
}

.package-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.package-header h4 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
}

.package-price {
    font-size: 2.2em;
    color: #ed3c0b;
    font-weight: bold;
}

.original-price {
    font-size: 1.1em;
    color: #999;
    text-decoration: line-through;
    margin-top: 5px;
}

.package-features {
    list-style: none;
    margin: 20px 0;
}

.package-features li {
    padding: 8px 0;
    color: #555;
}

/* Buttons */
.btn-select,
.btn-select-package,
.btn-primary,
.btn-submit {
    background: #ed3c0b;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: 100%;
}

.btn-select:hover,
.btn-select-package:hover,
.btn-primary:hover,
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-back {
    background: white;
    color: #ed3c0b;
    border: 2px solid #ed3c0b;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #ed3c0b;
    color: white;
}

.btn-next {
    background: #ed3c0b;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 30px;
}

/* BNPL Notice */
.bnpl-notice {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Selected Package Summary */
.selected-package-summary {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1em;
}

/* Calendar */
.calendar-container {
    max-width: 700px;
    margin: 0 auto 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    color: #333;
    font-size: 1.5em;
}

.calendar-nav {
    background: #ed3c0b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-day.header {
    color: #ed3c0b;
    font-weight: bold;
    cursor: default;
}

.calendar-day.available {
    background: #f5f7fa;
    border: 2px solid #e0e0e0;
}

.calendar-day.available:hover {
    background: #ed3c0b;
    color: white;
    border-color: #ed3c0b;
    transform: scale(1.1);
}

.calendar-day.selected {
    background: #4caf50;
    color: white;
    font-weight: bold;
    border: 2px solid #4caf50;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* Time Slots */
.time-slots-container {
    margin: 30px 0;
}

.time-slots-container h3 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.time-slot {
    padding: 15px;
    background: #f5f7fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.loading-slots {
    text-align: center;
    padding: 40px;
    font-size: 1.2em;
    color: #666;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.no-slots-message {
    text-align: center;
    padding: 30px;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    color: #856404;
    font-size: 1.1em;
    font-weight: 500;
}

.time-slot:hover {
    background: #ed3c0b;
    color: white;
    border-color: #ed3c0b;
    transform: scale(1.05);
}

.time-slot.selected {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
}

/* Form */
.booking-summary-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.booking-summary-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.summary-row.total {
    border-bottom: none;
    font-size: 1.3em;
    font-weight: bold;
    color: #ed3c0b;
    margin-top: 10px;
}

.bnpl-badge-summary {
    background: #4caf50;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
}

.booking-form {
    margin-top: 30px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ed3c0b;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: start;
    cursor: pointer;
    gap: 10px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}

/* Confirmation */
.confirmation-container {
    text-align: center;
    padding: 40px 20px;
}

.checkmark-animation {
    font-size: 6em;
    animation: scale-in 0.6s ease;
    margin-bottom: 20px;
}

@keyframes scale-in {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.confirmation-container h2 {
    font-size: 2.5em;
    color: #4caf50;
    margin-bottom: 20px;
}

.confirmation-message {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.confirmation-details {
    background: #f5f7fa;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.confirmation-details h3 {
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.reference-number {
    font-size: 2em;
    font-weight: bold;
    color: #ed3c0b;
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.booking-info {
    margin: 20px 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.bnpl-confirmed {
    background: #4caf50;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    line-height: 1.8;
}

.indemnity-confirmed {
    background: #2196f3;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    line-height: 1.8;
}

/* Auto Calendar Notice */
.auto-calendar-notice {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.auto-calendar-notice h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: white;
}

.auto-calendar-notice p {
    font-size: 1.1em;
    line-height: 1.6;
    opacity: 0.95;
}

/* Next Steps */
.next-steps {
    background: #f5f7fa;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.next-steps h3 {
    color: #333;
    margin-bottom: 20px;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 10px 0;
    color: #555;
    font-size: 1.05em;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 9999;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        padding-bottom: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .bnpl-banner {
        padding: 20px 15px;
    }

    .bnpl-banner h1 {
        font-size: 1.8em;
    }

    .bnpl-banner p {
        font-size: 0.95em;
    }

    /* Hero Section - Show image properly on mobile */
    .hero-section {
        padding: 60px 15px;
        background-attachment: scroll; /* Fix for mobile */
        min-height: 300px;
    }

    .hero-content h2 {
        font-size: 1.8em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .progress-steps {
        padding: 15px 5px;
        gap: 5px;
    }

    .progress-steps::before {
        display: none;
    }

    .step {
        flex: 1;
        min-width: 60px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1em;
    }

    .step-label {
        font-size: 0.7em;
        margin-top: 5px;
    }

    .booking-container {
        margin-top: 20px;
    }

    .booking-step {
        padding: 20px 15px;
    }

    .step-title {
        font-size: 1.4em;
        margin-bottom: 20px;
    }

    .experience-cards,
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .experience-card,
    .package-card {
        padding: 20px;
    }

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

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .button-group button {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    /* Calendar - Better mobile spacing */
    .calendar-grid {
        gap: 5px;
    }

    .calendar-day {
        padding: 10px 5px;
        font-size: 0.9em;
    }

    /* Time Slots - Better mobile layout */
    .time-slots {
        gap: 8px;
        padding: 10px;
    }

    .time-slot {
        padding: 12px;
        font-size: 1em;
    }

    .weather-toggle-btn {
        font-size: 1em;
        padding: 12px 24px;
    }

    .weather-widgets {
        grid-template-columns: 1fr;
    }

    .weather-widget iframe {
        height: 400px;
    }

    .weather-info {
        grid-template-columns: 1fr;
    }

    .weather-section {
        padding: 30px 0;
    }

    .weather-section h3 {
        font-size: 1.6em;
    }

    .webcam-title {
        font-size: 1.2em;
        padding: 0 10px;
    }

    .webcam-container {
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .webcam-wrapper {
        padding-bottom: 75%; /* Adjust aspect ratio for mobile */
        border-radius: 10px;
    }

    .webcam-caption {
        font-size: 0.85em;
        padding: 0 5px;
    }

}

/* Extra small devices (phones in portrait, less than 480px) */
@media (max-width: 480px) {
    .weather-section h3 {
        font-size: 1.3em;
        padding: 0 15px;
    }

    .weather-subtitle {
        font-size: 0.9em;
        padding: 0 15px;
    }

    .webcam-title {
        font-size: 1.1em;
    }

    .webcam-wrapper {
        padding-bottom: 85%; /* Taller aspect ratio for very small screens */
    }

    .weather-widgets {
        gap: 20px;
        padding: 0 10px;
    }

    .weather-widget iframe {
        height: 350px;
    }
}
