/* ==========================================
   Lil Seaturtle Detailing - Styles
   Ocean-themed mobile-first responsive design
   ========================================== */

/* ==========================================
   CSS Variables - Ocean Color Palette
   ========================================== */
:root {
    --deep-sea-green: #2d5f4f;
    --teal: #20b2aa;
    --soft-aqua: #87ceeb;
    --light-aqua: #e0f7fa;
    --ocean-blue: #006994;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-dark: #1a1a1a;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    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);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--deep-sea-green);
}

.logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-sea-green);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--teal);
}

.btn-primary {
    background: var(--teal);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--deep-sea-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #006994 0%, #20b2aa 50%, #87ceeb 100%);
    overflow: hidden;
    margin-top: 80px;
}

.ocean-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 80%, rgba(135, 206, 235, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 50%, rgba(32, 178, 170, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 105, 148, 0.2) 0%, transparent 50%);
    opacity: 0.7;
}

.floating-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0.5;
    animation: float-up 15s infinite ease-in;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.bubble:nth-child(3) {
    width: 30px;
    height: 30px;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.bubble:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.bubble:nth-child(5) {
    width: 45px;
    height: 45px;
    left: 90%;
    animation-delay: 3s;
    animation-duration: 14s;
}

@keyframes float-up {
    0% {
        bottom: -100px;
        transform: translateX(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateX(20px) scale(1.1);
        opacity: 0.7;
    }
    100% {
        bottom: 110vh;
        transform: translateX(-20px) scale(0.8);
        opacity: 0;
    }
}

.animated-turtle {
    position: absolute;
    opacity: 0.6;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 1;
}

/* Individual Turtle Animations */
.turtle-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 5%;
    animation: swim-1 14s ease-in-out infinite;
}

.turtle-2 {
    width: 100px;
    height: 100px;
    top: 45%;
    left: 80%;
    opacity: 0.5;
    animation: swim-2 18s ease-in-out infinite;
    animation-delay: -5s;
}

.turtle-3 {
    width: 140px;
    height: 140px;
    top: 65%;
    left: 10%;
    opacity: 0.7;
    animation: swim-3 16s ease-in-out infinite;
    animation-delay: -8s;
}

.turtle-4 {
    width: 90px;
    height: 90px;
    top: 30%;
    left: 60%;
    opacity: 0.55;
    animation: swim-4 20s ease-in-out infinite;
    animation-delay: -12s;
}

.turtle-5 {
    width: 110px;
    height: 110px;
    top: 75%;
    left: 70%;
    opacity: 0.65;
    animation: swim-5 15s ease-in-out infinite;
    animation-delay: -3s;
}

/* Swim Animations - Different Paths */
@keyframes swim-1 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(-8deg);
    }
    25% {
        transform: translateX(60px) translateY(-30px) rotate(-3deg);
    }
    50% {
        transform: translateX(120px) translateY(-10px) rotate(5deg);
    }
    75% {
        transform: translateX(60px) translateY(20px) rotate(-2deg);
    }
}

@keyframes swim-2 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(10deg);
    }
    25% {
        transform: translateX(-50px) translateY(25px) rotate(5deg);
    }
    50% {
        transform: translateX(-100px) translateY(5px) rotate(-5deg);
    }
    75% {
        transform: translateX(-50px) translateY(-20px) rotate(2deg);
    }
}

@keyframes swim-3 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(-5deg);
    }
    30% {
        transform: translateX(80px) translateY(-40px) rotate(0deg);
    }
    60% {
        transform: translateX(140px) translateY(-20px) rotate(8deg);
    }
    90% {
        transform: translateX(70px) translateY(10px) rotate(-3deg);
    }
}

@keyframes swim-4 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(12deg);
    }
    20% {
        transform: translateX(-40px) translateY(-25px) rotate(7deg);
    }
    50% {
        transform: translateX(-90px) translateY(15px) rotate(-4deg);
    }
    80% {
        transform: translateX(-45px) translateY(30px) rotate(3deg);
    }
}

@keyframes swim-5 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(-10deg);
    }
    35% {
        transform: translateX(-70px) translateY(-35px) rotate(-5deg);
    }
    65% {
        transform: translateX(-130px) translateY(-15px) rotate(6deg);
    }
    85% {
        transform: translateX(-65px) translateY(15px) rotate(-2deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    animation: fade-in-up 0.8s ease-out, logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 400;
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

.hero-location {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fade-in-up 0.8s ease-out 0.4s both;
}

.btn-hero {
    display: inline-block;
    background: var(--white);
    color: var(--teal);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: fade-in-up 0.8s ease-out 0.6s both;
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: var(--light-aqua);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100'%3E%3Cpath fill='%23ffffff' d='M0,50 Q300,100 600,50 T1200,50 L1200,100 L0,100 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.wave-divider-top {
    position: relative;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100'%3E%3Cpath fill='%23ffffff' d='M0,50 Q300,0 600,50 T1200,50 L1200,0 L0,0 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    margin-bottom: -1px;
}

/* ==========================================
   Section Styles
   ========================================== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--deep-sea-green);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-choose {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--deep-sea-green);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* ==========================================
   Packages Section
   ========================================== */
.packages {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    position: relative;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.package-card.featured {
    border: 3px solid var(--teal);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-card.premium {
    border: 3px solid #ffd700;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(32, 178, 170, 0.4);
}

.package-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
}

.package-card h3 {
    text-align: center;
    color: var(--deep-sea-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.package-price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 5px;
}

.price-sedan,
.price-suv {
    color: var(--teal);
}

.price-divider {
    color: #ccc;
    margin: 0 5px;
}

.price-label {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.package-time {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.package-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.package-best-for {
    text-align: center;
    font-style: italic;
    color: var(--deep-sea-green);
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.btn-package {
    width: 100%;
    padding: 15px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-package:hover {
    background: var(--deep-sea-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.4);
}

/* ==========================================
   Add-ons Section
   ========================================== */
.addons-section {
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.addons-section h3 {
    text-align: center;
    color: var(--deep-sea-green);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.addon-item:hover {
    background: var(--light-aqua);
    transform: translateX(5px);
}

.addon-name {
    font-weight: 500;
    color: var(--text-dark);
}

.addon-price {
    font-weight: 700;
    color: var(--teal);
}

/* ==========================================
   Power Washing Section
   ========================================== */
.power-washing {
    background: var(--white);
}

/* ==========================================
   Bundles Section
   ========================================== */
.bundles {
    background: linear-gradient(135deg, #b2ebf2 0%, #80deea 100%);
    position: relative;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bundle-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.bundle-card.featured {
    border: 3px solid var(--teal);
}

.bundle-card h3 {
    color: var(--deep-sea-green);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.bundle-savings {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.bundle-includes {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 15px 0;
    font-weight: 500;
}

.bundle-best-for {
    font-style: italic;
    color: #666;
    margin: 15px 0 25px;
}

/* ==========================================
   Service Area Section
   ========================================== */
.service-area {
    background: var(--white);
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.location-tag {
    background: linear-gradient(135deg, var(--teal) 0%, var(--ocean-blue) 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(32, 178, 170, 0.3);
    transition: all 0.3s ease;
}

.location-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.4);
}

.service-note {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-style: italic;
}

/* ==========================================
   Booking Section
   ========================================== */
.booking {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    position: relative;
}

.booking-turtle {
    position: absolute;
    width: 140px;
    height: 140px;
    bottom: 15%;
    right: 5%;
    opacity: 0.6;
    animation: swim 15s ease-in-out infinite reverse;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--deep-sea-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--ocean-blue) 100%);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(32, 178, 170, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.4);
}

.form-success {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow);
}

.form-success.hidden {
    display: none;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--deep-sea-green);
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-success p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: var(--light-aqua);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: var(--deep-sea-green);
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--ocean-blue);
}

/* ==========================================
   Aftercare Section
   ========================================== */
.aftercare {
    background: var(--light-gray);
}

.aftercare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.aftercare-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.aftercare-card h3 {
    color: var(--deep-sea-green);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.aftercare-card ul {
    list-style: none;
}

.aftercare-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.aftercare-card li:before {
    content: "🐢";
    position: absolute;
    left: 0;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--deep-sea-green);
    color: var(--white);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 0 30px;
}

.footer-brand img {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.3));
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    opacity: 0.9;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--soft-aqua);
}

.footer-contact p {
    opacity: 0.9;
    padding: 5px 0;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.footer-bottom p {
    opacity: 0.9;
    margin: 5px 0;
}

.guarantee {
    color: var(--soft-aqua);
    font-weight: 600;
}

/* ==========================================
   Mobile Responsiveness
   ========================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: -5px 0 15px var(--shadow);
        transition: right 0.3s ease;
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-location {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .packages-grid,
    .bundles-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .animated-turtle {
        width: 100px;
        height: 80px;
    }

    .booking-turtle {
        display: none;
    }

    .aftercare-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .package-price {
        font-size: 2rem;
    }

    .logo span {
        display: none;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.hidden {
    display: none !important;
}

/* ==========================================
   Loading Animation
   ========================================== */
@keyframes ripple {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(3);
    }
}
