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

:root {
    /* Ocean & Beach Color Palette */
    --background: hsl(39, 44%, 96%); /* Soft beach sand */
    --foreground: hsl(208, 25%, 25%); /* Deep ocean text */

    --card: hsl(0, 0%, 100%); /* Pure white cards */
    --card-foreground: hsl(208, 25%, 25%);

    /* Ocean Blue Primary */
    --primary: hsl(208, 100%, 35%); /* Deep ocean blue */
    --primary-foreground: hsl(0, 0%, 98%);
    --primary-hover: hsl(208, 100%, 30%); /* Darker on hover */

    /* Light Ocean Secondary */
    --secondary: hsl(199, 89%, 85%); /* Light ocean blue */
    --secondary-foreground: hsl(208, 25%, 25%);

    /* Sandy Muted Tones */
    --muted: hsl(39, 44%, 92%); /* Light sand */
    --muted-foreground: hsl(208, 15%, 50%);

    /* Coral Accent */
    --accent: hsl(14, 88%, 75%); /* Soft coral */
    --accent-foreground: hsl(208, 25%, 25%);

    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(210, 40%, 98%);

    --border: hsl(199, 35%, 88%); /* Soft ocean border */
    --input: hsl(199, 35%, 88%);
    --ring: hsl(208, 100%, 45%);

    /* Ocean Gradients */
    --gradient-ocean: linear-gradient(135deg, hsl(208, 100%, 35%), hsl(199, 89%, 65%));
    --gradient-beach: linear-gradient(135deg, hsl(199, 89%, 85%), hsl(39, 44%, 92%));
    --gradient-sunset: linear-gradient(135deg, hsl(14, 88%, 75%), hsl(39, 78%, 85%));
    --gradient-deep: linear-gradient(180deg, hsl(208, 100%, 25%), hsl(208, 100%, 35%));

    /* Shadows with ocean tint */
    --shadow-ocean: 0 10px 30px -10px hsl(208, 100%, 35%, 0.3);
    --shadow-soft: 0 4px 20px -4px hsl(199, 89%, 65%, 0.2);
    --shadow-elegant: 0 8px 25px -8px hsl(208, 25%, 25%, 0.1);

    /* Animation Variables */
    --wave-duration: 3s;
    --transition-ocean: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --radius: 1rem;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Gradients */
.bg-gradient-ocean {
    background: var(--gradient-ocean);
}

.bg-gradient-beach {
    background: var(--gradient-beach);
}

.bg-gradient-sunset {
    background: var(--gradient-sunset);
}

.bg-gradient-deep {
    background: var(--gradient-deep);
}

/* Shadows */
.shadow-ocean {
    box-shadow: var(--shadow-ocean);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-elegant {
    box-shadow: var(--shadow-elegant);
}

/* Transitions */
.transition-ocean {
    transition: var(--transition-ocean);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-ocean);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.badge .icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

/* Icons */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.icon.fill {
    fill: currentColor;
    stroke: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-ocean);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-ocean);
    color: white;
}

.btn-primary:hover {
    box-shadow: var(--shadow-ocean);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    background: var(--secondary);
    border-color: var(--primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('src/assets/house-exterior.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) / 0.3, var(--primary) / 0.2, transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.hero-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2rem;
    margin-top: 0.5rem;
    animation: pulse 1s infinite;
}

/* Two Column Grid */
.two-column-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .two-column-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Description Section */
.location-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.content-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .content-title {
        font-size: 2rem;
    }
}

.content-text {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 1rem;
}

/* Features Card */
.features-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: var(--transition-ocean);
}

.feature-item:hover {
    background: rgba(var(--secondary), 0.2);
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-text {
    flex: 1;
}

.feature-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.875rem;
}

.feature-description {
    color: var(--muted-foreground);
    font-size: 0.75rem;
}

/* Photo Gallery */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
    group: true;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-ocean);
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--primary) / 0.6, transparent, transparent);
    opacity: 0;
    transition: var(--transition-ocean);
    display: flex;
    align-items: flex-end;
    padding: 0.5rem;
}

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

.photo-title {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 10;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-ocean);
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-close .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-nav .icon {
    width: 2rem;
    height: 2rem;
}

.lightbox-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
    height: 100%;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 70%;
    object-fit: contain;
}

.lightbox-info {
    text-align: center;
    margin-top: 1rem;
    max-width: 48rem;
}

.lightbox-info h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    color: rgba(255, 255, 255, 0.8);
}

.lightbox-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: white;
    font-size: 0.875rem;
}

/* Location Section */
.map-container {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
    overflow: hidden;
}

.map-frame {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

.info-card.bg-gradient-ocean {
    background: var(--gradient-ocean);
    color: white;
}

.info-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-header h3 {
    font-size: 1.25rem;
    color: var(--primary);
}

.info-card.bg-gradient-ocean .info-header h3 {
    color: white;
}

.address-info p {
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.check-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.check-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.check-time .icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.nearby-places {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nearby-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.nearby-item .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.nearby-item span {
    color: var(--muted-foreground);
    flex: 1;
}

.nearby-item strong {
    color: var(--primary);
    font-weight: 600;
}

.directions p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.directions strong {
    font-weight: 600;
}

/* Calendar Section */
.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.legend-color {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
}

.legend-color.available {
    background: white;
    border: 2px solid var(--primary);
}

.legend-color.occupied {
    background: rgba(var(--destructive), 0.2);
}

.legend-color.past {
    background: var(--muted);
}

.calendar-container {
    max-width: 80rem;
    margin: 0 auto;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.calendar-current-month {
    background: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calendars-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .calendars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .calendars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.calendar-widget {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.calendar-header {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.calendar-month {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.calendar-content {
    padding: 1rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: var(--transition-ocean);
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.past {
    color: var(--muted-foreground);
    opacity: 0.5;
    cursor: not-allowed;
}

.calendar-day.available {
    color: var(--primary);
    border: 1px solid transparent;
}

.calendar-day.available:hover {
    background: rgba(var(--secondary), 0.5);
    border-color: rgba(var(--primary), 0.2);
}

.calendar-day.occupied {
    background: rgba(var(--destructive), 0.2);
    color: var(--destructive);
    cursor: not-allowed;
}

.calendar-footer {
    text-align: center;
}

.reservation-info {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-ocean);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.reservation-info h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.reservation-info p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Reservation Form */
.reservation-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .reservation-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.reservation-form-container {
    order: 1;
}

@media (min-width: 1024px) {
    .reservation-form-container {
        order: 0;
    }
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.card-content {
    padding: 1.5rem;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--foreground);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--input);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: var(--card);
    transition: var(--transition-ocean);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 2px rgba(var(--ring), 0.2);
}

.form-group textarea {
    min-height: 6rem;
    resize: vertical;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    width: 1rem;
    height: 1rem;
    color: var(--muted-foreground);
    z-index: 10;
}

.input-with-icon input {
    padding-left: 2.5rem;
}

.error-message {
    color: var(--destructive);
    font-size: 0.875rem;
    min-height: 1.25rem;
}

/* Reservation Summary */
.reservation-summary {
    order: 0;
}

@media (min-width: 1024px) {
    .reservation-summary {
        order: 1;
    }
}

.price-display {
    text-align: center;
    padding: 1rem;
    background: var(--gradient-sunset);
    border-radius: 0.5rem;
    color: white;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
}

.price-period {
    font-size: 0.875rem;
    opacity: 0.9;
}

.reservation-details {
    background: rgba(var(--secondary), 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item .icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: var(--gradient-deep);
    color: white;
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-badge .icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-list .contact-item .icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-list .contact-item div p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-list .contact-item div span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-ocean);
}

.social-link:hover {
    color: var(--accent);
    transform: scale(1.05);
}

.social-link .icon {
    width: 1rem;
    height: 1rem;
}

.social-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-copyright {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-ocean);
}

.footer-links a:hover {
    color: white;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
    max-width: 28rem;
    width: 100%;
    overflow: hidden;
}

.modal-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.modal-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
}

.modal-icon.success {
    background: rgba(34, 197, 94, 0.1);
    color: rgb(34, 197, 94);
}

.modal-header h3 {
    color: var(--primary);
    margin: 0;
}

.modal-body {
    padding: 1.5rem;
    text-align: center;
}

.modal-footer {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

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

/* Loading Animation */
.loading-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .calendar-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Print Styles */
@media print {
    .hero-section,
    .lightbox,
    .modal {
        display: none !important;
    }
}