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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

main {
    padding-top: 120px;
}

/* Header */
header {
    background: #2c5aa0;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 2rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    flex-wrap: nowrap;
}

.logo h1 {
    font-size: 1.5rem;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.social-icon--facebook {
    background: #1877f2;
}

.social-icon--facebook:hover {
    filter: brightness(0.92);
}

.social-icon--instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 35%, #8134af 65%, #515bd4 100%);
}

.social-icon--instagram:hover {
    filter: brightness(1.05);
}

.social-icon--yelp {
    background: linear-gradient(135deg, #d32323 0%, #c41200 100%);
}

.social-icon--yelp:hover {
    filter: brightness(1.05);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links > li > a:not(.social-icon) {
    position: relative;
    top: 3px;
}

.nav-links a:hover {
    color: #87ceeb;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Flyer Section */
.top-contact {
    margin-top: 10px;
}

.top-contact-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    padding: 0.85rem 2.25rem;
    border-radius: 999px;
    position: relative;
    isolation: isolate;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 38px rgba(44, 90, 160, 0.18);
    border: 1px solid rgba(44, 90, 160, 0.08);
    backdrop-filter: blur(8px);
}

.top-contact-card::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(67, 160, 255, 0.65) 0%, rgba(255, 107, 53, 0.65) 100%);
    opacity: 0.7;
    z-index: -1;
}

.top-contact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 55%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.35), transparent 60%);
    z-index: -1;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.3s ease;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: rgba(44, 90, 160, 0.08);
}

.contact-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
    background: rgba(255, 107, 53, 0.12);
}

.contact-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.contact-divider {
    width: 1px;
    height: 28px;
    background: rgba(44, 90, 160, 0.25);
}

.flyer-section {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.flyer-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0, #87ceeb);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: #ff6b35;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c5aa0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card.featured {
    background: linear-gradient(135deg, #2c5aa0, #87ceeb);
    color: white;
    border: 3px solid #ff6b35;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

/* Destinations Section */
.destinations {
    padding: 80px 0;
}

.destinations h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c5aa0;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: linear-gradient(135deg, #87ceeb, #2c5aa0);
    color: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.2);
    transition: all 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.3);
}

.destination-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c5aa0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
    max-width: 400px;
    margin: 0 auto;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Legal Section */
.legal-section {
    padding: 80px 0;
    background: #ffffff;
}

.legal-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    color: #2c5aa0;
}

.legal-updated {
    text-align: center;
    margin: -1.5rem 0 2.5rem;
    font-size: 0.95rem;
    color: rgba(44, 90, 160, 0.75);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.legal-section p {
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 0 0 1.5rem 1.25rem;
    padding: 0;
    list-style: disc;
    color: #333;
}

.legal-section li + li {
    margin-top: 0.6rem;
}

.legal-section a {
    color: #2c5aa0;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #ff6b35;
}

/* Footer */
footer {
    background: #2c5aa0;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.affiliate-note {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Mobile Optimization */
@media (max-width: 1100px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #2c5aa0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        font-size: 1.1rem;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
    }

    .nav-right {
        gap: 1rem;
    }

    .social-links {
        gap: 0.6rem;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .legal-section {
        padding: 60px 0;
    }
}

@media (max-width: 900px) {
    .top-contact-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.1rem 1.5rem;
    }

    .contact-divider {
        display: none;
    }

    .legal-section h2 {
        font-size: 2.1rem;
    }

    .legal-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    nav {
        padding: 0 5px;
    }

    .nav-right {
        gap: 0.75rem;
    }

    main {
        padding-top: 110px;
    }

    .top-contact-card {
        width: 100%;
        padding: 1.25rem 1.5rem;
    }

    .legal-section ul {
        margin-left: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .service-grid,
    .destination-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .destination-card {
        padding: 1.5rem;
    }

    .flyer-image {
        border-radius: 15px;
    }

    .contact-item {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .service-card h3,
    .destination-card h3 {
        font-size: 1.3rem;
    }
}
