@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Color Palette - Ocean Theme */
:root {
    --ocean-deep: #1e3a5f;
    --ocean-medium: #4a90a4;
    --ocean-light: #87ceeb;
    --sand-light: #fafafa;
    --sand-medium: #f0f0f0;
    --sand-dark: #e0e0e0;
    --foam-white: #ffffff;
    --text-dark: #2c3e50;
    --text-medium: #5a6c7d;
    --accent-teal: #5f9ea0;
}

/* Typography */
h1, h2, h3 {
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--ocean-deep);
    letter-spacing: 0.8px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-bottom: 3rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

p {
    margin-bottom: 2.5rem;
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 2.1;
    font-weight: 300;
    letter-spacing: 0.4px;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--foam-white) 0%, var(--sand-light) 100%);
    box-shadow: 0 1px 20px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 25px 25px;
}

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

.logo h1 {
    color: var(--ocean-deep);
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #d4a574;
    font-weight: 500;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: #b8935f;
    text-decoration: underline;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ocean-deep);
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--foam-white);
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 15px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--sand-medium);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover {
    background: var(--sand-light);
    color: var(--ocean-deep);
    transform: translateX(5px);
}

/* Hero Section */
.hero-section {
    background-image: url('waves2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-section h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Comfortaa', 'Poppins', sans-serif;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    line-height: 1.4;
    letter-spacing: 1px;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 1;
    font-weight: 400;
    font-family: 'Nunito', 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Sections */
.content-section {
    position: relative;
    padding: 4rem 2rem 2rem;
    margin: 0;
    text-align: left;
    background-color: #ffffff;
    z-index: 20;
}

.content-section.intro {
    background-color: #ffffff;
}

.content-section.intro::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url('wave-divider.svg');
    background-size: 100% 120px;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 10;
    pointer-events: none;
    transform: scaleY(-1);
    transition: transform 0.1s ease-out;
}

@keyframes waveFloat {
    0% { transform: scaleY(-1) translateX(0px) translateY(0px); }
    25% { transform: scaleY(-1) translateX(-5px) translateY(-2px); }
    50% { transform: scaleY(-1) translateX(0px) translateY(-4px); }
    75% { transform: scaleY(-1) translateX(5px) translateY(-2px); }
    100% { transform: scaleY(-1) translateX(0px) translateY(0px); }
}

.content-section.intro::before.animate {
    animation: waveFloat 3s ease-in-out infinite;
}

.intro-text p {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.content-section.alt-bg {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--foam-white) 100%);
    margin: 0;
}

/* Intro Section */
.intro-text {
    margin: 0;
    text-align: center;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 2.2;
    margin-bottom: 2.5rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.pricing-card {
    background: var(--foam-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--sand-medium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2), 0 15px 30px rgba(0,0,0,0.15), 0 8px 18px rgba(0,0,0,0.12);
}

.pricing-card.most-popular {
    position: relative;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #ff9800;
    box-shadow: 0 20px 40px rgba(255, 152, 0, 0.3), 0 15px 30px rgba(0,0,0,0.15), 0 8px 18px rgba(255, 152, 0, 0.2);
}

.pricing-card.most-popular:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(255, 152, 0, 0.4), 0 20px 40px rgba(0,0,0,0.2), 0 12px 25px rgba(255, 152, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    z-index: 10;
}

.pricing-card.most-popular .price {
    color: #e65100;
    font-size: 3rem;
}

.pricing-card.most-popular .save {
    color: #ff6f00;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-card h3 {
    color: var(--ocean-deep);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ocean-medium);
    margin-bottom: 1.5rem;
    font-family: 'Comfortaa', sans-serif;
}

.save {
    font-size: 1.3rem;
    color: var(--accent-teal);
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.pricing-card p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Emergency Section */
.emergency {
    background: var(--sand-light);
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.emergency-card {
    border-left: 3px solid var(--accent-teal);
    background: var(--foam-white);
}

.emergency-card.emergency-highlighted {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #f44336;
    border-left: 4px solid #d32f2f;
    box-shadow: 0 15px 35px rgba(244, 67, 54, 0.2), 0 8px 20px rgba(0,0,0,0.1), 0 4px 12px rgba(244, 67, 54, 0.15);
}

.emergency-card.emergency-highlighted:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(244, 67, 54, 0.3), 0 15px 30px rgba(0,0,0,0.15), 0 8px 18px rgba(244, 67, 54, 0.2);
}

.emergency-card .price {
    color: var(--accent-teal);
}

.emergency-card.emergency-highlighted .price {
    color: #c62828;
    font-weight: 700;
}

.emergency-card.emergency-highlighted h3 {
    color: #b71c1c;
}

/* Contact Button Styles */
.contact-button {
    margin-top: auto;
    text-align: center;
}

.btn-contact {
    display: inline-block;
    background: linear-gradient(135deg, #05b2b5 0%, #04a0a3 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 178, 181, 0.3);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 178, 181, 0.4);
    background: linear-gradient(135deg, #04a0a3 0%, #05b2b5 100%);
}

.pricing-card.most-popular .btn-contact {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.pricing-card.most-popular .btn-contact:hover {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.emergency-card.emergency-highlighted .btn-contact {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

.emergency-card.emergency-highlighted .btn-contact:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.4);
}

/* Policy List */
.policy-list {
    margin: 2rem 0;
    text-align: left;
}

.policy-list ul {
    list-style: none;
    padding: 0;
}

.policy-list li {
    padding: 0.8rem 0;
    color: var(--text-medium);
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
    font-size: 1rem;
}

.policy-list li:before {
    content: '•';
    color: var(--ocean-medium);
    position: absolute;
    left: 0;
    top: 0.8rem;
    font-size: 1rem;
}

/* CTA Section */
.cta-content {
    text-align: center;
    margin: 0;
}

.cta-content h2 {
    text-align: center;
}

.cta-button {
    margin-top: 2rem;
    text-align: center;
}

.btn-primary {
    display: block;
    margin: 0 auto;
    width: fit-content;
    background: linear-gradient(135deg, #05b2b5 0%, #04a0a3 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(5, 178, 181, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(5, 178, 181, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(5, 178, 181, 0.4), 0 6px 18px rgba(0, 0, 0, 0.25), 0 3px 8px rgba(5, 178, 181, 0.3);
}

/* Disclaimer */
.disclaimer-section {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--foam-white) 100%);
    border-radius: 40px 40px 0 0;
    margin-top: 3rem;
}

.disclaimer-section h3 {
    color: var(--ocean-deep);
    text-align: center;
    margin-bottom: 1.5rem;
}

.disclaimer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #05b2b5 0%, #04a0a3 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-radius: 50px 50px 0 0;
}

.footer-disclaimer {
    font-size: 0.6rem;
    line-height: 1.2;
    margin-top: 1rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

footer p {
    margin: 0;
    color: white;
    opacity: 0.8;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d4a574;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }
    
    .logo {
        margin-right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    header {
        z-index: 998;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--foam-white) 0%, var(--sand-light) 100%);
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
        z-index: 999;
    }
    
    .nav-menu.active {
        max-height: 800px;
        padding: 1.5rem 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem;
        text-align: center;
        border-radius: 8px;
        margin-bottom: 0.8rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 165, 116, 0.2);
    }
    
    .nav-link:hover {
        background: rgba(212, 165, 116, 0.1);
        transform: none;
    }
    
    .nav-link.active {
        background: rgba(5, 178, 181, 0.15);
        border-color: rgba(5, 178, 181, 0.3);
    }
    
    /* Mobile dropdown styles - completely hide dropdowns */
    .dropdown-menu {
        display: none !important;
    }
    
    .nav-dropdown::before {
        display: none;
    }
    
    .hero-section {
        padding: 6rem 1rem 4rem;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Smooth Transitions */
* {
    transition: all 0.3s ease;
}

/* Sections */
section {
    margin-bottom: 0;
}

/* Testimonial Link Styling */
.testimonial-link {
    color: #d4a574;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.testimonial-link:hover {
    color: var(--ocean-medium);
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Smooth Shadows */
.content-section {
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
}

.hero-section {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}