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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}
/* Storm Alert Banner */
.storm-alert {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 12px 20px;
    margin: -20px -20px 20px -20px;
    border-bottom: 3px solid #bd2130;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.storm-alert h2 {
    font-size: 1.2em;
    margin-bottom: 8px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.alert-icon {
    display: none;
}

.storm-details {
    background: rgba(0,0,0,0.2);
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.detail-item {
    margin: 4px 0;
    font-size: 0.9em;
    line-height: 1.4;
}

.detail-item strong {
    color: #ffc107;
}

.premium-notice {
    background: rgba(255,255,255,0.15);
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #ffc107;
    font-size: 0.9em;
    line-height: 1.4;
}

.premium-notice strong {
    color: #ffc107;
    font-size: 1.15em;
}
/* Snowflakes */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

/* Hide falling snow on mobile devices */
@media (max-width: 768px) {
    .snowflakes {
        display: none;
    }
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    animation: fall linear infinite;
    opacity: 0.9;
    user-select: none;
    will-change: transform;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 1;
    }
}

/* Snow accumulation at bottom */
.snow-ground {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.95);
    pointer-events: none;
    z-index: 1;
    animation: snowPileUp 30s ease-out forwards;
    clip-path: polygon(
        0% 100%,
        0% 40%,
        5% 35%,
        10% 30%,
        15% 28%,
        20% 32%,
        25% 38%,
        30% 45%,
        35% 48%,
        40% 44%,
        45% 38%,
        50% 35%,
        55% 38%,
        60% 44%,
        65% 48%,
        70% 45%,
        75% 38%,
        80% 32%,
        85% 28%,
        90% 30%,
        95% 35%,
        100% 40%,
        100% 100%
    );
}

@keyframes snowPileUp {
    0% { height: 0; }
    100% { height: 80px; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    opacity: 0.9;
}

.team-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.team-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

main {
    padding: 40px 20px;
}

.pricing-section {
    margin-bottom: 50px;
}

.pricing-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2em;
}

.pricing-note {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    font-size: 1.05em;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.pricing-card {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
    position: relative;
}

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

.pricing-card.selected {
    border-color: #1e5fa8;
    border-width: 4px;
    background: linear-gradient(135deg, rgba(30,95,168,0.1) 0%, rgba(65,105,225,0.1) 100%);
    box-shadow: 0 8px 30px rgba(30,95,168,0.5), inset 0 0 0 2px #1e5fa8;
    transform: translateY(-5px);
}

.pricing-card.selected::before {
    content: "✓ SELECTED";
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #1e5fa8 0%, #0056d2 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8em;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.pricing-card h3 {
    font-size: 1.4em;
    margin-bottom: 8px;
    color: #1e5fa8;
}

.size-desc {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.base-price {
    color: #1e5fa8;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
}

.price-note {
    color: #666;
    font-size: 0.85em;
    font-weight: 500;
}

.price-tiers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border-left: 3px solid #6c757d;
    transition: all 0.3s ease;
}

.tier:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.tier-storm {
    background: #fff3cd;
    border-left-color: #ffc107;
    box-shadow: 0 2px 8px rgba(255,193,7,0.3);
}

.tier-storm:hover {
    background: #ffe69c;
}

.tier-extreme {
    background: #f8d7da;
    border-left-color: #dc3545;
    box-shadow: 0 2px 8px rgba(220,53,69,0.3);
}

.tier-extreme:hover {
    background: #f5c2c7;
}

.tier-name {
    font-weight: 600;
    color: #495057;
    font-size: 0.85em;
}

.snow-indicator {
    font-size: 0.9em;
    margin-left: 4px;
    opacity: 0.8;
}

.tier-price {
    font-size: 1.1em;
    color: #1e5fa8;
    font-weight: 700;
}

.tier-storm .tier-price,
.tier-extreme .tier-price {
    color: #dc3545;
}

.emergency-surcharge {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #ffc107;
    text-align: center;
    margin-top: 20px;
}

.emergency-surcharge p {
    margin: 8px 0;
    color: #856404;
    font-size: 1.05em;
    line-height: 1.6;
}

.emergency-surcharge strong {
    font-size: 1.2em;
    color: #dc3545;
}

.surcharge-details {
    font-size: 0.95em !important;
}

.service-details {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
    padding: 25px 30px;
    border-radius: 12px;
    border: 2px solid #1e5fa8;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .service-details {
        padding: 20px 15px;
    }
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 968px) {
    .service-content {
        grid-template-columns: 1fr;
    }
}

.service-left h3 {
    color: #1e5fa8;
    margin-bottom: 15px;
    font-size: 1.4em;
}

@media (max-width: 768px) {
    .service-left h3 {
        font-size: 1.2em;
    }
}

.service-left p {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.service-left li {
    color: #2c3e50;
    font-size: 1.05em;
    line-height: 1.6;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .service-left li {
        font-size: 0.95em;
        padding: 8px 12px;
    }
}

.service-left li strong {
    color: #1e5fa8;
}

.service-right {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.storm-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .storm-warning {
        padding: 15px;
    }
}

.snow-visual {
    font-size: 3em;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 5px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .snow-visual {
        font-size: 2em;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }
}

.storm-warning p {
    margin: 0;
    color: #856404;
}

.storm-warning p:first-child {
    font-size: 1.1em;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .storm-warning p:first-child {
        font-size: 1em;
    }
    
    .storm-warning p {
        font-size: 0.9em;
    }
}

.storm-details {
    font-size: 0.95em;
    line-height: 1.6;
}

.temperature-info {
    font-size: 0.95em;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(133, 100, 4, 0.3);
    line-height: 1.6;
}

.temperature-info strong {
    color: #856404;
}
    color: #2c3e50;
    font-size: 1.05em;
    line-height: 1.6;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-details li strong {
    color: #1e5fa8;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 40px 30px;
    border-radius: 15px;
    margin: 50px 0 30px 0;
    border: 2px solid #42a5f5;
    scroll-margin-top: 20px;
}

.team-section h3 {
    color: #1565c0;
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #1976d2;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar-initials {
    color: white;
    font-size: 2em;
    font-weight: 700;
}

.team-info {
    color: #2c3e50;
}

.team-name {
    font-size: 1.2em;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.95em;
    color: #5f6368;
}

.bio-indicator {
    font-size: 0.85em;
    color: #42a5f5;
    margin-top: 8px;
    font-style: italic;
}

/* Bio Modal */
.bio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bio-modal-content {
    background: white;
    width: 90%;
    max-width: 700px;
    height: 50vh;
    max-height: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

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

.bio-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 2em;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1;
}

.bio-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.bio-modal-header {
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.bio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-avatar.team-avatar-initials {
    color: #1976d2;
    font-size: 1.8em;
    font-weight: 700;
}

.bio-header-info {
    color: white;
    flex: 1;
}

.bio-header-info h2 {
    margin: 0 0 5px 0;
    font-size: 1.8em;
    color: white;
}

.bio-header-info p {
    margin: 0;
    font-size: 1.1em;
    opacity: 0.95;
}

.bio-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    font-size: 1.05em;
    line-height: 1.8;
    color: #2c3e50;
}

.bio-modal-body::-webkit-scrollbar {
    width: 8px;
}

.bio-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.bio-modal-body::-webkit-scrollbar-thumb {
    background: #42a5f5;
    border-radius: 4px;
}

.bio-modal-body::-webkit-scrollbar-thumb:hover {
    background: #1976d2;
}

@media (max-width: 768px) {
    .bio-modal-content {
        width: 95%;
        height: 60vh;
    }
    
    .bio-modal-header {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .bio-avatar {
        width: 70px;
        height: 70px;
    }
    
    .bio-header-info h2 {
        font-size: 1.5em;
    }
    
    .bio-modal-body {
        padding: 20px;
        font-size: 1em;
    }
}

.booking-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2em;
}

.booking-info {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #e7f3ff;
    border-radius: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.calendar-container {
    margin-bottom: 40px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    max-height: 500px;
    overflow-y: auto;
}

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

.calendar-header h3 {
    color: #2c3e50;
    flex: 1;
    text-align: center;
}

.nav-btn {
    background: #1e5fa8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: #0056d2;
}

#calendar {
    display: grid;
    gap: 10px;
}

.day-column {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.day-header {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1e5fa8;
    text-align: center;
    position: relative;
}

.book-day-btn {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 6px 10px;
    background: linear-gradient(135deg, #1e5fa8 0%, #4169e1 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-day-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30,95,168,0.4);
    background: linear-gradient(135deg, #0056d2 0%, #1e5fa8 100%);
}

.book-day-btn.selected {
    background: linear-gradient(135deg, #0056d2 0%, #1e5fa8 100%);
    box-shadow: 0 0 0 3px white, 0 0 0 5px #1e5fa8, 0 6px 20px rgba(30,95,168,0.5);
    transform: translateY(-2px) scale(1.03);
    font-weight: 700;
}

.day-booked-badge {
    display: block;
    margin-top: 8px;
    padding: 6px 10px;
    background: #dc3545;
    color: white;
    border-radius: 6px;
    font-size: 0.75em;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-slot {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.time-slot.available {
    background: #d4edda;
    border-color: #28a745;
}

.time-slot.available:hover {
    background: #28a745;
    color: white;
    transform: scale(1.02);
}

.time-slot.selected {
    background: linear-gradient(135deg, #1e5fa8 0%, #0056d2 100%);
    color: white;
    border-color: #0056d2;
    border-width: 3px;
    box-shadow: 0 4px 15px rgba(30,95,168,0.5), inset 0 0 0 2px rgba(255,255,255,0.3);
    font-weight: 700;
    transform: scale(1.05);
}

.time-slot.booked {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    cursor: not-allowed;
    opacity: 0.8;
    font-weight: 600;
}

.time-slot.past {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.5;
}

.time-slot.unavailable {
    background: #e9ecef;
    color: #6c757d;
    border-color: #dee2e6;
    cursor: not-allowed;
    opacity: 0.6;
}

#bookingForm {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

#bookingForm h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

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

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

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

@media (max-width: 768px) {
    .form-row,
    .form-row.three-col {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

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

@media (max-width: 768px) {
    .form-group label {
        font-size: 0.9em;
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9em;
        padding: 10px;
    }
}

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

.form-group input[readonly] {
    background: #e9ecef;
    cursor: not-allowed;
}

.field-note {
    margin-top: 8px;
    font-size: 0.9em;
    color: #dc3545;
    font-weight: 600;
    background: #fff3cd;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #ffc107;
}

.footnote {
    margin-top: 8px;
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1e5fa8 0%, #4169e1 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .submit-btn {
        font-size: 1em;
        padding: 12px;
    }
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.price-display {
    background: white;
    border: 2px solid #1e5fa8;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price-label {
    font-size: 0.95em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
}

.price-amount {
    font-size: 2.2em;
    font-weight: 700;
    color: #1e5fa8;
    font-family: 'Courier New', monospace;
}

.payment-note {
    font-size: 0.85em;
    color: #666;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
    font-style: italic;
    text-align: center;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.notification.hidden {
    display: none;
}

.notification.success {
    background: #28a745;
    color: white;
}

.notification.error {
    background: #dc3545;
    color: white;
}

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

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    .tagline {
        font-size: 1em;
    }

    .pricing-section h2,
    .booking-section h2 {
        font-size: 1.5em;
    }

    .calendar-header {
        flex-direction: column;
    }

    .nav-btn {
        width: 100%;
    }

    #bookingForm {
        padding: 20px;
    }

    .notification {
        right: 10px;
        left: 10px;
    }
}
