/* ==========================================================
   VAQUI - MINIMALIST DELICATE DESIGN SYSTEM (WHITE THEME)
   Inspired by Jevelin Aesthetic
   Brand Colors: #50bebe, #214567, #ffffff
   ========================================================== */

:root {
    /* Core Palette */
    --brand-teal: #50bebe;
    --brand-teal-dark: #379797;
    --brand-teal-light: #eaf7f7;
    --brand-teal-soft: #d2f2f2;
    --brand-teal-glow: rgba(80, 190, 190, 0.25);

    --brand-navy: #214567;
    --brand-navy-light: #2e5c8a;
    --brand-navy-subtle: #f4f8fa;
    --brand-navy-border: #e6eeee;

    --brand-white: #ffffff;
    --brand-bg: #ffffff;

    --text-navy: #214567;
    --text-body: #475569;
    --text-muted: #8092a7;
    --text-light: #a0aec0;

    --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-card: 20px;
    --radius-pill: 50px;
    --shadow-soft: 0 10px 30px rgba(33, 69, 103, 0.04);
    --shadow-hover: 0 18px 40px rgba(33, 69, 103, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Strict Logo Constraints - Prominent Header Logo */
img.logo-img {
    height: 54px !important;
    max-height: 54px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain !important;
    display: block !important;
}

img.footer-logo {
    height: 48px !important;
    max-height: 48px !important;
    width: auto !important;
    max-width: 240px !important;
    object-fit: contain !important;
    display: block !important;
}

/* Header & Glass Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--brand-navy-border);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

nav a {
    color: var(--brand-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

nav a:hover {
    color: var(--brand-teal-dark);
}

.nav-cta {
    background: var(--brand-teal) !important;
    color: var(--brand-white) !important;
    font-weight: 700 !important;
    padding: 0.65rem 1.4rem !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: 0 4px 14px var(--brand-teal-glow) !important;
    transition: all 0.25s ease !important;
}

.nav-cta:hover {
    background: var(--brand-teal-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(80, 190, 190, 0.4) !important;
}

/* Language Selector Dropdown */
.lang-selector-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-btn {
    background: rgba(80, 190, 190, 0.08);
    border: 1px solid var(--brand-navy-border);
    color: var(--brand-navy);
    padding: 0.42rem 0.8rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.25s ease;
    user-select: none;
}

.lang-btn:hover {
    background: rgba(80, 190, 190, 0.16);
    border-color: var(--brand-teal);
    color: var(--brand-teal-dark);
}

.lang-arrow {
    font-size: 0.6rem;
    margin-left: 0.15rem;
    transition: transform 0.25s ease;
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--brand-white);
    border: 1px solid var(--brand-navy-border);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(33, 69, 103, 0.12);
    min-width: 145px;
    padding: 0.4rem;
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    z-index: 150;
    animation: dropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-dropdown-menu.open {
    display: flex;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    color: var(--brand-navy);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.lang-option:hover {
    background: var(--brand-teal-light);
    color: var(--brand-teal-dark);
}

.lang-option.active {
    background: rgba(80, 190, 190, 0.12);
    color: var(--brand-teal-dark);
    font-weight: 800;
}

/* Minimalist Hero Section */
.hero {
    position: relative;
    max-width: 1200px;
    margin: 3.5rem auto 6rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-subtitle-tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand-teal-dark);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--brand-navy);
}

.hero-title .highlight {
    color: var(--brand-teal-dark);
}

.hero-description {
    font-size: 1.08rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    max-width: 580px;
    line-height: 1.7;
}

/* Store Badge Buttons & Animations */
.store-buttons-group {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.store-badge-link {
    display: inline-block;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 4px 14px rgba(33, 69, 103, 0.08);
}

.store-badge-img {
    height: 54px;
    width: auto;
    display: block;
    border-radius: 10px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-badge-link:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 14px 30px var(--brand-teal-glow), 0 6px 15px rgba(33, 69, 103, 0.12);
}

.store-badge-link:hover .store-badge-img {
    filter: brightness(1.05);
}

.store-badge-link:active {
    transform: translateY(-2px) scale(0.99);
}

/* Single Central Phone Mockup & Interactive 16-Image Swipe Slider */
.hero-single-phone-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-mockup {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1229 / 2437;
    filter: drop-shadow(0 25px 50px rgba(33, 69, 103, 0.16));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.hero-phone-mockup:hover {
    transform: translateY(-8px);
    filter: drop-shadow(0 35px 60px rgba(80, 190, 190, 0.25));
}

/* Inner Screen Cutout under Frame */
.hero-phone-screen {
    position: absolute;
    top: 2.15%;
    left: 4.6%;
    width: 90.8%;
    height: 95.7%;
    border-radius: 36px;
    overflow: hidden;
    z-index: 1;
    cursor: grab;
    touch-action: pan-y;
}

.hero-phone-screen:active {
    cursor: grabbing;
}

/* Track holding all 16 simulator images */
.hero-slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.hero-slide-img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Frame overlay image */
.hero-phone-marco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

/* Prev / Next Navigation Buttons */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: var(--brand-navy);
    border: 1px solid var(--brand-navy-border);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(33, 69, 103, 0.15);
    transition: all 0.25s ease;
}

.hero-nav-prev { left: -18px; }
.hero-nav-next { right: -18px; }

.hero-nav-btn:hover {
    background: var(--brand-teal);
    color: var(--brand-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 18px var(--brand-teal-glow);
}

/* Counter Badge Indicator */
.hero-slide-counter {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-teal-light);
    color: var(--brand-navy);
    border: 1px solid var(--brand-teal-soft);
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 800;
    z-index: 5;
    box-shadow: var(--shadow-soft);
}

/* Section Header (Jevelin Style) */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--brand-navy);
    margin-bottom: 0.75rem;
}

.section-subtitle-tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand-teal-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* How We Can Help You / Features Section */
.features-section {
    background: var(--brand-navy-subtle);
    padding: 6rem 1.5rem;
}

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

.features-card-box {
    background: var(--brand-white);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--brand-navy-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem 2.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Download CTA Below Features Section */
.features-download-cta {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    text-align: center;
}

.download-cta-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-navy);
    letter-spacing: -0.01em;
}

/* Linear Turquoise Icon Wrapper (10% opacity background) */
.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(80, 190, 190, 0.10) !important;
    border: 1px solid rgba(80, 190, 190, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke: #50bebe;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    background: rgba(80, 190, 190, 0.18) !important;
    border-color: rgba(80, 190, 190, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(80, 190, 190, 0.15);
}

.feature-item:hover .feature-icon-wrapper svg {
    transform: scale(1.08);
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 7rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-beach-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 28px;
    display: block;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(33, 69, 103, 0.14);
    border: 1px solid var(--brand-navy-border);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.about-beach-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(80, 190, 190, 0.22);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.about-content .tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand-teal-dark);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.about-content p.desc {
    color: var(--text-body);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

/* Why Vaqui Footnote Callout Box (10% Turquoise Opacity) */
.why-vaqui-footnote {
    background: rgba(80, 190, 190, 0.10);
    border: 1px solid rgba(80, 190, 190, 0.25);
    border-radius: 14px;
    padding: 0.9rem 1.15rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.why-vaqui-footnote:hover {
    background: rgba(80, 190, 190, 0.16);
    border-color: rgba(80, 190, 190, 0.4);
}

.footnote-text {
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--text-body);
    margin: 0;
}

.footnote-text strong {
    color: var(--brand-navy);
    font-weight: 800;
}

/* Accordion Component - Delicate Minimalist Styling */
.accordion-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.accordion-item {
    background: var(--brand-navy-subtle);
    border-radius: 12px;
    border: 1px solid var(--brand-navy-border);
    overflow: hidden;
    transition: all 0.25s ease;
}

.accordion-header {
    padding: 0.95rem 1.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.25s ease;
}

.accordion-header:hover {
    background: rgba(80, 190, 190, 0.08);
}

.accordion-header.active {
    background: var(--brand-teal);
    color: var(--brand-white);
}

.accordion-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.25rem;
    background: var(--brand-white);
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.65;
}

.accordion-body.open {
    max-height: 400px;
    padding: 1rem 1.25rem 1.25rem;
}

/* Testimonials Carousel Section */
.testimonials-section {
    background: var(--brand-navy-subtle);
    padding: 6rem 1.5rem;
    border-top: 1px solid var(--brand-navy-border);
    border-bottom: 1px solid var(--brand-navy-border);
    margin-bottom: 6rem;
}

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

.testimonials-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .testimonial-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        grid-template-columns: 1fr;
    }
}

/* Soft Mint / Teal Cards from Screenshot */
.testimonial-card {
    background: var(--brand-teal-light);
    border: 1px solid var(--brand-teal-soft);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 8px 25px rgba(33, 69, 103, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card.highlighted {
    background: var(--brand-white);
    border-color: var(--brand-navy-border);
}

.testimonial-card:hover {
    border-color: var(--brand-teal);
}

.testimonial-user-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-white);
    border: 2px solid rgba(80, 190, 190, 0.4);
    color: var(--brand-navy);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-details h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand-navy);
}

.stars-rating {
    color: #f59e0b;
    font-size: 0.88rem;
    letter-spacing: 2px;
    margin-top: 0.15rem;
}

.use-case-tag {
    display: inline-block;
    background: var(--brand-white);
    color: var(--brand-teal-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(80, 190, 190, 0.4);
    margin-bottom: 1rem;
    align-self: flex-start;
}

.testimonial-quote {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.65;
    font-style: normal;
}

/* Slider Pagination Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2.2rem;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-teal-soft);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--brand-teal);
    width: 28px;
    border-radius: 10px;
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 0 auto 7rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: flex-start;
}

.faq-intro h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* FAQ Cow Icon Header */
.faq-cow-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(80, 190, 190, 0.25));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-cow-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Footer & Compact Contact Form Box */
footer {
    border-top: 1px solid var(--brand-navy-border);
    background: var(--brand-white);
    padding: 4rem 1.5rem 2.5rem;
}

.footer-contact-box {
    background: var(--brand-teal);
    color: var(--brand-white);
    max-width: 520px;
    margin: 0 auto 3.5rem;
    padding: 2.2rem 2rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px var(--brand-teal-glow);
    text-align: center;
    position: relative;
}

/* Prominent Cow Mascot Icon Contained within Card (15% reduction to avoid edge clipping) */
.contact-cow-icon {
    width: 220px;
    max-width: 60%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    margin: 0 auto 1.25rem;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(33, 69, 103, 0.25));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-cow-icon:hover {
    transform: scale(1.05);
}

.contact-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--brand-white);
    letter-spacing: -0.01em;
}

.contact-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

@media (max-width: 576px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-cow-icon {
        width: 170px;
        max-width: 55%;
    }
}

.contact-input,
.contact-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-family: var(--font-family);
    font-size: 0.88rem;
    color: var(--brand-navy);
    outline: none;
    transition: all 0.25s ease;
}

.contact-input:focus,
.contact-textarea:focus {
    background: var(--brand-white);
    border-color: var(--brand-navy);
    box-shadow: 0 0 0 3px rgba(33, 69, 103, 0.18);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: var(--text-muted);
}

.contact-textarea {
    resize: vertical;
    min-height: 75px;
}

.contact-btn {
    background: var(--brand-navy);
    color: var(--brand-white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.7rem 1.8rem;
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    align-self: center;
    box-shadow: 0 6px 18px rgba(33, 69, 103, 0.25);
    transition: all 0.25s ease;
    margin-top: 0.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-btn:hover {
    background: var(--brand-navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(33, 69, 103, 0.35);
}

.contact-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none !important;
}

/* In-place status message alert */
.contact-status-msg {
    margin-top: 1rem;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
    animation: fadeInStatus 0.35s ease;
}

.contact-status-msg.success {
    background: #ffffff;
    color: var(--brand-teal-dark);
    box-shadow: 0 6px 20px rgba(33, 69, 103, 0.15);
    border: 2px solid #ffffff;
}

.contact-status-msg.error {
    background: #ffebe9;
    color: #c53030;
    border: 1px solid #feb2b2;
}

@keyframes fadeInStatus {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--brand-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--brand-teal-dark);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-copy code {
    background: var(--brand-teal-light);
    color: var(--brand-navy);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .hero, .about-section, .faq-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .store-buttons-group {
        justify-content: center;
    }

    .hero-phone-mockup {
        max-width: 280px;
    }

    .about-beach-img {
        max-width: 100%;
    }

    .features-card-box {
        padding: 2.5rem 1.5rem;
    }

    .faq-cow-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

    img.logo-img {
        height: 44px !important;
        max-height: 44px !important;
    }

    nav {
        gap: 0.8rem;
    }

    nav > a:not(.nav-cta) {
        display: none;
    }

    .lang-dropdown-menu .lang-option {
        display: flex !important;
    }

    .store-badge-img {
        height: 46px;
    }
}
