:root {
    --color-primary: #0F4C81; /* Premium Corporate Blue */
    --color-primary-dark: #072846; /* Deepest Blue */
    --color-secondary: #00B16A; /* Fresh Vibrant Green */
    --color-secondary-hover: #008f55;
    --color-bg-light: #F4F7F9; /* Cooler light gray */
    --color-text-main: #1F2937;
    --color-text-muted: #4B5563;
    --color-white: #FFFFFF;
    --color-border: #E5E7EB;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 25px 50px -12px rgba(15, 76, 129, 0.15); /* Premium depth */
    
    --radius-md: 10px;
    --radius-lg: 16px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-dark);
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.text-muted { color: var(--color-text-muted); }
.text-small { font-size: 0.875rem; }
.bg-light { background-color: var(--color-bg-light); }
.py-section { padding: 100px 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px; /* Pill shape for modern look */
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(0, 177, 106, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 177, 106, 0.4);
    color: var(--color-white);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 76, 129, 0.2);
}

.btn-outline-white {
    background-color: transparent;
    border-color: rgba(255,255,255,0.5);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition);
}

.header.scrolled .header-container {
    height: 65px;
}

.header-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo-img {
    height: 34px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--color-primary-dark);
    letter-spacing: -0.5px;
}

.logo-text strong {
    color: var(--color-secondary);
}

.nav ul {
    display: flex;
    gap: 32px;
}

.nav a {
    font-weight: 600;
    color: var(--color-text-main);
}

.nav a:hover {
    color: var(--color-secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-contact {
    display: flex;
    align-items: center;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: 6px 16px;
    transition: var(--transition);
}

.header-contact:hover {
    border-color: var(--color-secondary);
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.header-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
}

.header-contact-wa {
    color: #25D366;
    padding-right: 12px;
    border-right: 1px solid var(--color-border);
}

.header-contact-wa:hover {
    color: #1da851;
}

.header-contact-number {
    color: var(--color-primary-dark);
}

.header-contact-phone {
    color: var(--color-primary);
    padding-left: 12px;
}

.header-contact-phone:hover {
    color: var(--color-secondary);
}

.header-contact-icon {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, #08615A 100%);
    color: var(--color-white);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 177, 106, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 95%;
    font-weight: 300;
}

.hero-bullets {
    margin-bottom: 40px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.bullet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.bullet-icon svg {
    width: 16px;
    height: 16px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Form */
.hero-form-wrapper {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    color: var(--color-text-main);
}

.lead-form h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

.lead-form p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #F9FAFB;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
}

/* Sections Global */
.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header .subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

/* Image Showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-grid.reverse .showcase-content {
    order: -1;
}

.showcase-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.showcase-image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(15, 76, 129, 0.3);
}

.premium-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
}

.showcase-image-wrapper:hover .premium-img {
    transform: scale(1.05);
}

.showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--color-primary-dark);
}

.showcase-content .subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-8px);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.1) 0%, rgba(0, 177, 106, 0.1) 100%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.benefit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--color-text-muted);
}

/* Pricing */
.pricing-card-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background-color: var(--color-white);
    border: 3px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    max-width: 550px;
    width: 100%;
    box-shadow: var(--shadow-card);
    position: relative;
    text-align: center;
}

.pricing-card .badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-secondary) 0%, #009955 100%);
    color: var(--color-white);
    padding: 8px 24px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 177, 106, 0.3);
}

.pricing-header {
    margin-bottom: 30px;
}

.plan-title {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
    font-weight: 800;
}

.price-amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--color-primary-dark);
    line-height: 1;
    font-family: var(--font-heading);
}

.price-amount span {
    font-size: 2rem;
    vertical-align: top;
    margin-right: 4px;
    color: var(--color-primary);
}

.price-amount .period {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-left: 4px;
}

.price-desc {
    color: var(--color-text-muted);
    margin-top: 16px;
    font-size: 1.1rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 40px;
    background-color: var(--color-bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
}

.pricing-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text-main);
    font-weight: 500;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-footer-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

/* Upsell */
.upsell-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.upsell-text h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.upsell-text p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.upsell-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--color-secondary);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.upsell-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

.upsell-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(15, 76, 129, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upsell-icon {
    font-size: 2rem;
}

.upsell-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.upsell-badge {
    display: inline-block;
    background-color: rgba(15, 76, 129, 0.1);
    color: var(--color-primary-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.upsell-badge.highlight {
    background-color: rgba(0, 177, 106, 0.1);
    color: var(--color-secondary-hover);
}

.upsell-action {
    margin-top: 15px;
}

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-content h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.location-content p.location-intro {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.location-highlights {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.highlight-phrase {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    font-style: italic;
    margin-bottom: 20px;
    border-left: 4px solid var(--color-secondary);
    padding-left: 14px;
    font-weight: 800;
}

.location-bullets {
    margin-bottom: 10px;
}

.location-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: var(--color-text-main);
    font-weight: 500;
}

.location-bullets li:last-child {
    margin-bottom: 0;
}

.zone-badge {
    color: var(--color-primary-dark);
    background-color: rgba(15, 76, 129, 0.08);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 800;
    display: inline-block;
    border: 1px solid rgba(15, 76, 129, 0.15);
}

.address-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--color-bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.address-icon {
    font-size: 2rem;
}

.address-box strong {
    display: block;
    color: var(--color-primary-dark);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.testimonial {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-top: 20px;
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.stars {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.quote {
    font-style: italic;
    color: var(--color-text-main);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.author {
    font-weight: 700;
    color: var(--color-primary-dark);
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.map-overlay-link {
    position: absolute;
    bottom: 24px;
    right: 24px;
}

/* Bottom CTA */
.bottom-cta {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 177, 106, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.bottom-cta h2 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.bottom-cta .subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background-color: #051424; /* Very deep blue for maximum contrast */
    color: var(--color-white);
    padding: 80px 0 40px;
}

.footer .logo-text, .footer .logo-text strong {
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.footer ul li {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer ul a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* WhatsApp Modal */
.wa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wa-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wa-modal-box {
    background-color: #E5DDD5;
    width: 90%;
    max-width: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.wa-modal-overlay.active .wa-modal-box {
    transform: translateY(0) scale(1);
}

.wa-modal-header {
    background-color: #075E54;
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    position: relative;
    width: 44px;
    height: 44px;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}

.wa-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background-color: #25D366;
    border-radius: 50%;
    border: 2px solid #075E54;
}

.wa-header-text h4 {
    margin: 0;
    color: white;
    font-size: 1.1rem;
    font-family: var(--font-body);
}

.wa-header-text p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.wa-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0;
    display: flex;
    align-items: center;
}

.wa-close-btn:hover {
    opacity: 1;
}

.wa-modal-body {
    background-color: #EFEAE2;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 50L50 50" stroke="%23d6d0c4" stroke-width="2" fill="none"/></svg>'); 
    padding: 24px 20px;
    flex-grow: 1;
}

.wa-message-bubble {
    background-color: white;
    padding: 14px 18px;
    border-radius: 0 12px 12px 12px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    max-width: 95%;
    animation: fadeInMessage 0.5s ease-out 0.2s backwards;
}

@keyframes fadeInMessage {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wa-message-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.wa-message-bubble p {
    margin: 0 0 8px 0;
    color: #111b21;
    font-size: 0.95rem;
    line-height: 1.4;
}

.wa-message-bubble p:last-of-type {
    margin-bottom: 0;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: #667781;
    margin-top: 6px;
}

.wa-modal-footer {
    background-color: #F0F0F0;
    padding: 16px 20px;
    text-align: center;
}

.btn-wa-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 14px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    width: 100%;
}

.btn-wa-submit:hover {
    background-color: #1DA851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, visibility, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 177, 106, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(0, 177, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 177, 106, 0); }
}

.cta-pulse {
    animation: pulse 2s infinite;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-container, .upsell-container, .location-grid, .footer-grid, .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid.reverse .showcase-content {
        order: 0;
    }

    .showcase-content {
        text-align: center;
    }

    .showcase-content h2 {
        font-size: 2.2rem;
    }

    .hero {
        padding-top: 140px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .hero-bullets li {
        justify-content: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .pricing-card {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-cta {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        margin-right: 8px;
    }
    
    .header-cta-btn {
        display: none !important;
    }
    
    .header-contact {
        padding: 4px 10px;
    }
    
    .header-contact-item {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .header-contact-number {
        display: none;
    }
    
    .header-contact-wa {
        padding-right: 8px;
        border-right: 1px solid var(--color-border);
    }
    
    .header-contact-phone {
        padding-left: 8px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .bottom-cta h2 {
        font-size: 2.5rem;
    }
}
