/* GLOBAL RESET & VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal: #1A7B85;
    --teal-dark: #0e5f67;
    --cream: #F9F6F0;
    --coral: #E0765C;
    --warm-gold: #E6B17E;
    --dark: #2E3A3F;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 35px rgba(0,0,0,0.1);
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--teal-dark);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--coral);
    margin: 12px auto 0;
    border-radius: 4px;
}

/* STICKY NAVIGATION */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal);
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--coral);
}

.btn-book-now {
    background: var(--coral);
    color: white;
    padding: 8px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

.btn-book-now:hover {
    background: #c75a3f;
    transform: scale(1.02);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--teal);
}

/* HERO SECTION */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--cream) 0%, #fff5ec 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--teal);
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #4a5b5e;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--teal);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
    padding: 10px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

/* TRUST BADGES */
.trust-badges {
    background: var(--white);
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--teal-dark);
}

/* SERVICES SECTION */
.services {
    padding: 70px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.service-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--coral);
    margin-bottom: 16px;
}

.trust-highlight {
    text-align: center;
    background: #fff0e6;
    padding: 16px;
    border-radius: 60px;
    width: fit-content;
    margin: 0 auto;
}

/* HOW IT WORKS */
.how-it-works {
    background: var(--white);
    padding: 70px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--coral);
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* AREAS TAGS */
.areas {
    padding: 70px 0;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.area-tag {
    background: var(--white);
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.area-tag:hover {
    background: var(--teal);
    color: white;
    transform: scale(1.02);
}

/* PRICING */
.pricing {
    background: #fff;
    padding: 70px 0;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--cream);
    border-radius: 28px;
    padding: 32px;
    width: 300px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card.popular {
    background: var(--white);
    border: 2px solid var(--teal);
    transform: scale(1.02);
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--teal);
    margin: 16px 0;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.pricing-card li {
    margin: 8px 0;
}

.btn-pricing {
    display: inline-block;
    background: var(--teal);
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
}

/* CONTACT + WHATSAPP */
.contact {
    padding: 70px 0;
    background: linear-gradient(to bottom, #fff, var(--cream));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 16px;
    font-family: inherit;
}

.btn-submit {
    background: var(--teal);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
}

.whatsapp-card {
    background: var(--white);
    padding: 30px;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow);
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    margin: 16px 0;
    font-weight: bold;
}

/* FOOTER */
.footer {
    background: var(--teal-dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer a {
    color: #f0e6d8;
    text-decoration: none;
}

/* ANIMATIONS */
.fade-up {
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hero-title {
        font-size: 2rem;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Enhanced contact buttons */
.contact-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.call-btn {
    background: var(--teal);
    color: white;
}

.call-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.email-btn {
    background: var(--warm-gold);
    color: var(--dark);
}

.email-btn:hover {
    background: #dba15e;
    transform: translateY(-2px);
}

/* Enhanced areas contact note */
.areas-contact-note {
    text-align: center;
    margin-top: 32px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow);
    font-weight: 500;
}

.areas-contact-note i {
    color: var(--coral);
    font-size: 1.2rem;
}

.areas-contact-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--coral);
    transition: all 0.2s;
}

.areas-contact-link:hover {
    color: var(--coral);
    border-bottom-color: var(--teal);
}

/* Pricing section enhancements */
.saving-badge {
    background: var(--coral);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 12px;
}

.pricing-footer {
    margin-top: 40px;
    text-align: center;
}

.trust-shield {
    background: var(--cream);
    padding: 12px 24px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--teal-dark);
    flex-wrap: wrap;
}

.trust-shield i {
    color: var(--coral);
    font-size: 1.1rem;
}

.custom-quote-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--coral);
    transition: all 0.2s;
}

.custom-quote-link:hover {
    color: var(--coral);
    border-bottom-color: var(--teal);
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}

.pricing-card ul li i {
    color: var(--coral);
    width: 20px;
}

/* Enhanced contact buttons */
.contact-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.call-btn {
    background: var(--teal);
    color: white;
}

.call-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.email-btn {
    background: var(--warm-gold);
    color: var(--dark);
}

.email-btn:hover {
    background: #dba15e;
    transform: translateY(-2px);
}

/* Enhanced areas contact note */
.areas-contact-note {
    text-align: center;
    margin-top: 32px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow);
    font-weight: 500;
}

.areas-contact-note i {
    color: var(--coral);
    font-size: 1.2rem;
}

.areas-contact-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--coral);
    transition: all 0.2s;
}

.areas-contact-link:hover {
    color: var(--coral);
    border-bottom-color: var(--teal);
}

/* Fix horizontal scroll on mobile */
html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container, 
.nav-container, 
.hero-container,
.services-grid,
.pricing-grid,
.contact-wrapper,
.footer-grid {
    overflow-x: hidden;
    max-width: 100%;
}

/* Fix for any overflowing elements */
img, 
.area-tag,
.service-card,
.pricing-card,
.whatsapp-card,
.contact-form {
    max-width: 100%;
}

/* Ensure hero image doesn't cause overflow */
.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix for areas grid on mobile */
.areas-grid {
    overflow-x: hidden;
    justify-content: center;
}