/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0066cc;
}

.nav-cta {
    background: #0066cc !important;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #0052a3 !important;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px 0;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    padding: 2rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #00b4d8;
    color: white;
    border: 2px solid #00b4d8;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
    background: #0096c7;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4);
    border-color: #0096c7;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-3px);
}

.special-offer {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.offer-badge {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.special-offer p {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
}

.hero-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-contact {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-icon-img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.contact-item:hover .contact-icon-img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(15deg);
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff6b35;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #333;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #666;
    line-height: 1.6;
}

.price-range {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0066cc;
    margin: 1rem 1.5rem;
}

.service-link {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #e55a2b;
}

/* Photo Gallery */
.photo-gallery {
    padding: 5rem 0;
    background: white;
}

.photo-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

/* Services Page Styles */
.services-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-detail {
    padding: 4rem 0;
}

.service-detail.alternate {
    background: #f8f9fa;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail.alternate .service-content {
    grid-template-columns: 1fr 1fr;
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-subtitle {
    font-size: 1.1rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.pricing-table {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item h4 {
    font-size: 1.1rem;
    color: #333;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.price-item.custom {
    flex-direction: column;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.custom-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.additional-info {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* What's Included */
.whats-included {
    padding: 4rem 0;
    background: white;
}

.whats-included h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.included-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.included-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.included-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.included-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Special Offer Section */
.special-offer-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    text-align: center;
}

.offer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.offer-details {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-details li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.offer-details li:before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-method a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-method a:hover {
    color: #004499;
}

.included-services {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-inclusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-inclusion-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
}

.service-inclusion-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-inclusion-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0066cc;
    font-weight: 600;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.service-inclusion-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-inclusion-card li {
    background: white;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 3px solid #00b4d8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
}

.service-inclusion-card li:before {
    content: "✓";
    color: #00b4d8;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-inclusion-card li:hover {
    background: #f0f9ff;
    transform: translateX(3px);
}

.service-inclusion-card li:last-child {
    margin-bottom: 0;
}

.guests-bring-section {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #1e3a8a;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.guests-bring-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    text-align: center;
    font-weight: 600;
}

.guests-bring-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.guests-bring-section li {
    background: rgba(255, 255, 255, 0.15);
    color: #1e3a8a;
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.guests-bring-section li:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.included-services h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.included-services ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.included-services li {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

/* Waiver Section */
.waiver-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
}

.waiver-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.waiver-section p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.waiver-link {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.waiver-link:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #0066cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #555;
    color: #ccc;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 6rem 20px 0;
        min-height: auto;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
        padding: 1rem 0;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-contact {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        width: 100%;
        max-width: 280px;
        padding: 1rem;
        text-align: center;
    }
    
    .special-offer {
        margin: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .included-services ul {
        flex-direction: column;
        align-items: center;
    }
    
    .service-inclusion-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-inclusion-card {
        margin-bottom: 1rem;
    }
    
    .guests-bring-section ul {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .guests-bring-section li {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Additional mobile breakpoint for very small screens */
@media (max-width: 480px) {
    /* Add styles for very small screens here */
}
