/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1566665797739-1674de7a421a?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2980b9;
}

/* Features */
.features {
    padding: 5rem 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Rooms */
.rooms {
    padding: 5rem 0;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-image {
    height: 250px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.room-info {
    padding: 1.5rem;
}

.room-price {
    color: #2ecc71;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.amenity-tag {
    background-color: #e8f4fc;
    color: #3498db;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Forms */
.booking, .auth-form, .checkout {
    padding: 5rem 0;
    min-height: calc(100vh - 200px);
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

input:focus, select:focus {
    outline: none;
    border-color: #3498db;
}

/* Messages */
.message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Price Summary */
.price-summary {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.price-summary h3 {
    margin-bottom: 1rem;
}

.price-summary p {
    margin: 0.5rem 0;
}

.price-summary .total {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2ecc71;
    margin-top: 1rem;
}

/* Booking Summary */
.booking-summary {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* Alert */
.alert {
    background-color: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert i {
    font-size: 1.5rem;
}

/* Popular Beds Section */
.popular-beds {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.beds-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.bed-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.bed-image {
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bed-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.bed-info {
    padding: 2rem 2rem 2rem 0;
}

.bed-rating {
    color: #f39c12;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bed-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.bed-features span {
    background-color: #e8f4fc;
    color: #3498db;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.bed-description {
    margin: 1rem 0;
    line-height: 1.8;
}

.bed-popularity {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 1.5rem;
}

.bed-popularity h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.bed-popularity ul {
    list-style-type: none;
    padding-left: 0;
}

.bed-popularity li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.bed-popularity li:before {
    content: "✓";
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: #3498db;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #666;
    font-size: 0.9rem;
}

/* Room Features */
.room-features {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.feature i {
    color: #3498db;
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #2ecc71;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Add to existing style.css */

/* Dashboard Styles */
.dashboard {
    padding: 5rem 0;
    min-height: calc(100vh - 200px);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.dashboard-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dashboard-card h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-card h3 i {
    color: #3498db;
}

.booking-item {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.booking-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.booking-status.confirmed {
    background-color: #d4edda;
    color: #155724;
}

.booking-status.cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.booking-details {
    margin: 0.5rem 0;
}

.booking-details p {
    margin: 0.3rem 0;
}

.booking-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-danger {
    background-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
}

.receipt-item {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.no-data {
    text-align: center;
    color: #666;
    font-style: italic;
}

.error {
    color: #dc3545;
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

/* Receipt Styles */
.receipt {
    font-family: 'Courier New', monospace;
}

.receipt-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px dashed #333;
    padding-bottom: 1rem;
}

.receipt-number {
    font-weight: bold;
    font-size: 1.1rem;
}

.receipt-date {
    color: #666;
}

.receipt-section {
    margin: 1.5rem 0;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.receipt-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
}

.payment-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.payment-table td {
    padding: 0.5rem 0;
}

.payment-table .total-row {
    border-top: 2px solid #333;
    font-size: 1.2rem;
    font-weight: bold;
}

.status-confirmed {
    color: #28a745;
    font-weight: bold;
}

.receipt-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px dashed #333;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive adjustments for dashboard */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
        padding: 1rem;
    }
}

/* Add these to style.css */

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.payment-option {
    flex: 1;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: #3498db;
    background-color: #f8f9fa;
}

.payment-option input[type="radio"]:checked + .payment-icon {
    color: #3498db;
}

.payment-option input[type="radio"]:checked {
    background-color: #3498db;
}

.payment-option input[type="radio"] {
    margin-right: 0.5rem;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.payment-icon img {
    height: 30px;
    object-fit: contain;
}

.payment-details {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.payment-note {
    background-color: #e8f4fc;
    padding: 0.8rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #2c3e50;
}

.payment-note i {
    color: #3498db;
    margin-right: 0.5rem;
}

/* QR Code Display (for GCash) */
.qr-code-container {
    text-align: center;
    margin: 1rem 0;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
}

.qr-code {
    max-width: 200px;
    margin: 0 auto;
}

.qr-code img {
    width: 100%;
    height: auto;
}

/* Instructions */
.instructions {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.instructions h4 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.instructions ol {
    margin-left: 1.5rem;
    color: #856404;
}

.instructions li {
    margin-bottom: 0.5rem;
}

/* Add these styles to style.css */

/* COD Specific Styles */
.cod-instructions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 5px solid #28a745;
}

.cod-instructions h4 {
    color: #28a745;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cod-details {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid #dee2e6;
}

.cod-details p {
    margin: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.cod-details ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.cod-details li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.cod-terms {
    background-color: #e8f4fc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: white;
    border-radius: 5px;
    border: 1px solid #dee2e6;
    cursor: pointer;
    transition: all 0.3s;
}

.terms-checkbox:hover {
    background-color: #f8f9fa;
    border-color: #3498db;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
}

.terms-checkbox span {
    flex: 1;
    line-height: 1.5;
}

/* Payment Status Badges */
.payment-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.payment-status.pending {
    background-color: #fff3cd;
    color: #856404;
}

.payment-status.paid {
    background-color: #d4edda;
    color: #155724;
}

.payment-status.cod {
    background-color: #cce5ff;
    color: #004085;
}

/* COD Booking Alert */
.cod-alert {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cod-alert i {
    color: #0c5460;
    font-size: 1.2rem;
}

/* Dashboard COD Indicator */
.booking-item.cod-booking {
    border-left: 4px solid #28a745;
}

.cod-badge {
    background-color: #28a745;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

/* Responsive adjustments for COD */
@media (max-width: 768px) {
    .cod-instructions {
        padding: 1rem;
    }
    
    .cod-details {
        padding: 1rem;
    }
    
    .terms-checkbox {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Add to style.css */
.cod-alert-small {
    background-color: #d1ecf1;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.cod-alert-small i {
    color: #0c5460;
    margin-right: 0.5rem;
}

/* COD Specific Styles */
.cod-instructions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 5px solid #28a745;
}

.cod-instructions h4 {
    color: #28a745;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cod-details {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid #dee2e6;
}

.cod-details p {
    margin: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.cod-alert {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cod-terms {
    background-color: #e8f4fc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: white;
    border-radius: 5px;
    border: 1px solid #dee2e6;
    cursor: pointer;
    transition: all 0.3s;
}

.terms-checkbox:hover {
    background-color: #f8f9fa;
    border-color: #3498db;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
}

.terms-checkbox span {
    flex: 1;
    line-height: 1.5;
}

.payment-option {
    position: relative;
}

/* Resort Theme Updates */
:root {
    --primary-color: #1a6d8c;
    --secondary-color: #2a9d8f;
    --accent-color: #e9c46a;
    --dark-color: #264653;
    --light-color: #f8f9fa;
}

/* Update primary colors throughout */
.btn {
    background-color: var(--primary-color);
}

.btn:hover {
    background-color: var(--dark-color);
}

.navbar {
    background-color: var(--dark-color);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero {
    background: linear-gradient(rgba(38, 70, 83, 0.8), rgba(38, 70, 83, 0.8)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.feature-card i {
    color: var(--primary-color);
}

/* Booking Page Specific Styles */
.booking-intro {
    margin-bottom: 2rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a6d8c;
}

.input-with-icon input,
.input-with-icon textarea,
.input-with-icon select {
    padding-left: 40px !important;
}

.form-help {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.summary-details {
    margin-top: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.summary-item.total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2a9d8f;
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(0,0,0,0.1);
}

.total-price {
    color: #2a9d8f;
    font-size: 1.5rem;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #1a6d8c, transparent);
    margin: 1rem 0;
}

.summary-note {
    background-color: rgba(42, 157, 143, 0.1);
    padding: 0.8rem;
    border-radius: 5px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-note i {
    color: #2a9d8f;
}

.booking-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.note i {
    color: #2a9d8f;
}

.security-notice {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(26, 109, 140, 0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.security-notice i {
    color: #1a6d8c;
}

/* Resort Benefits */
.resort-benefits {
    margin-top: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #1a6d8c;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
    text-align: center;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-option {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-option i {
    font-size: 2rem;
    color: #1a6d8c;
    margin-bottom: 1rem;
}

.contact-option h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-option p {
    color: #1a6d8c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-option small {
    color: #666;
}

/* Char Counter */
.char-counter {
    text-align: right;
    margin-top: 5px;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-notes {
        flex-direction: column;
    }
    
    .note {
        min-width: 100%;
    }
    
    .benefits-grid,
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .summary-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.room-price {
    color: var(--secondary-color);
}

.amenity-tag {
    background-color: rgba(26, 109, 140, 0.1);
    color: var(--primary-color);
}

.room-badge, .bed-tag {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.bed-rating {
    color: #f4a261;
}

/* New resort-specific styles */
.resort-highlight {
    background: linear-gradient(135deg, #1a6d8c 0%, #2a9d8f 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.beach-theme {
    background-color: #e8f4f8;
    border-left: 5px solid var(--primary-color);
}

.activity-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 109, 140, 0.2);
}

.water-sports {
    border-color: #1a6d8c;
}

.wellness {
    border-color: #2a9d8f;
}

.adventure {
    border-color: #f4a261;
}

.culinary {
    border-color: #e76f51;
}

/* Activity badges */
.activity-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.water-sports .activity-badge {
    background-color: #1a6d8c;
}

.wellness .activity-badge {
    background-color: #2a9d8f;
}

.adventure .activity-badge {
    background-color: #f4a261;
}

.culinary .activity-badge {
    background-color: #e76f51;
}

/* Resort amenities section */
.resort-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.amenity-item {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.amenity-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Sunset gradient */
.sunset-gradient {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

/* Ocean waves animation */
.ocean-waves {
    position: relative;
    overflow: hidden;
}

.ocean-waves::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: waves 3s infinite linear;
}

@keyframes waves {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Updated form styles for resort */
.form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-color);
}

/* Payment method styles for resort */
.payment-option .payment-icon {
    border-color: #ddd;
}

.payment-option input[type="radio"]:checked + .payment-icon {
    border-color: var(--primary-color);
    background-color: rgba(26, 109, 140, 0.1);
}

/* Updated receipt styles */
.receipt-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px 10px 0 0;
}

.status-confirmed {
    color: var(--secondary-color);
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.payment-option input[type="radio"]:checked + .payment-icon {
    color: #3498db;
    border-color: #3498db;
    background-color: #e8f4fc;
}

.payment-option .payment-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s;
}

.payment-option:hover .payment-icon {
    border-color: #3498db;
    background-color: #f8f9fa;
}

/* Comparison Table */
.comparison-table {
    margin-top: 5rem;
    overflow-x: auto;
}

.comparison-table h2 {
    text-align: center;
    margin-bottom: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #2c3e50;
    color: white;
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: #f8f9fa;
}

tr:hover {
    background-color: #e8f4fc;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .bed-card {
        grid-template-columns: 1fr;
    }
    
    .bed-image {
        min-height: 250px;
    }
    
    .bed-info {
        padding: 2rem;
    }
    
    .room-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .feature-grid,
    .beds-grid,
    .room-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .bed-card,
    .room-card {
        margin-bottom: 2rem;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.8rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .room-grid {
        grid-template-columns: 1fr;
    }
}