/* ============================================================
   Xpress Drycleaners - Core PHP Website Styles
   Converted from React/Tailwind CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES (Design Tokens)
   ============================================================ */
:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(213, 39%, 16%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(213, 39%, 16%);
    --primary: hsl(213, 53%, 24%);
    --primary-foreground: hsl(210, 40%, 98%);
    --secondary: hsl(214, 82%, 70%);
    --secondary-foreground: hsl(213, 53%, 14%);
    --muted: hsl(216, 71%, 95%);
    --muted-50: hsl(216, 71%, 97.5%);
    --muted-40: hsl(216, 71%, 98%);
    --muted-foreground: hsl(213, 20%, 42%);
    --accent: hsl(214, 67%, 55%);
    --accent-foreground: hsl(0, 0%, 100%);
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(210, 40%, 98%);
    --border: hsl(214, 32%, 88%);
    --input: hsl(214, 32%, 88%);
    --ring: hsl(214, 67%, 55%);
    --radius: 0.75rem;

    --gradient-primary: linear-gradient(135deg, hsl(213, 53%, 24%), hsl(214, 67%, 55%));
    --gradient-hero: linear-gradient(135deg, hsl(213, 53%, 18%), hsl(214, 67%, 45%), hsl(214, 82%, 60%));
    --shadow-card: 0 4px 24px -4px hsla(214, 67%, 55%, 0.12);
    --shadow-card-hover: 0 12px 40px -8px hsla(214, 67%, 55%, 0.2);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-color: var(--border);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--muted); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes bubble {
    0% { transform: translateY(100%) scale(0); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 8s ease-in-out infinite; }
.animate-bubble { animation: bubble 8s ease-in infinite; }
.animate-pulse-soft { animation: pulse-soft 3s ease-in-out infinite; }

/* Scroll-triggered animation classes */
.anim-fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.5s ease, transform 0.5s ease; }
.anim-visible { opacity: 1 !important; transform: none !important; }

/* ============================================================
   GRADIENT & UTILITY CLASSES
   ============================================================ */
.gradient-primary { background: var(--gradient-primary); }
.gradient-hero { background: var(--gradient-hero); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-card-hover { box-shadow: var(--shadow-card-hover); }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline-accent {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
}
.btn-outline-accent:hover { background: var(--accent); color: #fff; }

.btn-whatsapp {
    background: #22c55e;
    color: #fff;
    border: none;
}
.btn-whatsapp:hover { background: #16a34a; }

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    border: 1px solid hsla(214, 67%, 55%, 0.2);
}
.btn-primary:hover { opacity: 0.92; }

.btn-white {
    background: #fff;
    color: var(--primary);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover { background: rgba(255,255,255,0.9); }

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: padding 0.5s ease;
    padding: 0.75rem 0;
}

.site-header.scrolled {
    padding: 0.375rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 3rem;
    width: auto;
    max-height: 3rem;
    transition: height 0.3s ease;
}

.site-header.scrolled .header-logo img {
    height: 2.5rem;
    max-height: 2.5rem;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    position: relative;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.625rem 1.125rem;
    border-radius: 0.5rem;
    color: hsla(213, 39%, 16%, 0.7);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--foreground);
    background: hsla(216, 71%, 95%, 0.6);
}

.nav-link.active {
    color: var(--accent);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.25rem;
    height: 2px;
    background: var(--accent);
    border-radius: 9999px;
}

.header-cta {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 0.5rem;
    color: var(--foreground);
    transition: background 0.2s;
}

.hamburger:hover { background: var(--muted); }

.hamburger svg { width: 1.75rem; height: 1.75rem; }

/* Mobile menu */
.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid hsla(214, 32%, 88%, 0.3);
    margin-top: 0.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mobile-menu.open { display: block; }

.mobile-nav {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.875rem 1.125rem;
    border-radius: 0.75rem;
    color: var(--foreground);
    transition: all 0.2s;
}

.mobile-nav-link:hover { background: var(--muted); }
.mobile-nav-link.active { background: hsla(214, 67%, 55%, 0.1); color: var(--accent); }

.mobile-nav-link svg { width: 1.25rem; height: 1.25rem; }
.mobile-nav-link.active svg { color: var(--accent); }
.mobile-nav-link:not(.active) svg { color: var(--muted-foreground); }

.mobile-cta {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid hsla(214, 32%, 88%, 0.3);
    margin-top: 0.5rem;
}

.mobile-cta .btn { flex: 1; justify-content: center; }

/* Header nav row — larger labels next to main menu links */
.header-cta .btn-sm,
.mobile-cta .btn-sm {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
}

.header-cta .btn-sm svg,
.mobile-cta .btn-sm svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* Tablet (768px–990px): Call + WhatsApp in header beside menu toggle; links stay in drawer */
@media (min-width: 768px) and (max-width: 990px) {
    .header-inner {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .header-cta {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    /* Avoid duplicate Call/WhatsApp inside the open mobile panel */
    .mobile-cta {
        display: none;
    }
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.9;
}

.hero-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: bubble 8s ease-in infinite;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 7rem;
    padding-bottom: 4rem;
}

.hero-inner {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero h1 span { font-weight: 800; }

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    display: block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--foreground);
}

.section-sub {
    color: var(--muted-foreground);
    margin-top: 0.75rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   CHARACTERISTICS SECTION
   ============================================================ */
.characteristics {
    padding: 5rem 0;
    background: var(--muted-50);
}

.experience-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: hsla(214, 67%, 55%, 0.1);
    border: 1px solid hsla(214, 67%, 55%, 0.2);
}

.experience-pill .num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.experience-pill .label {
    color: var(--muted-foreground);
    font-weight: 500;
    font-size: 0.875rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon { transform: scale(1.1); }

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-foreground);
    stroke: var(--primary-foreground);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
    padding: 5rem 0;
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: hsla(214, 67%, 55%, 0.4);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.service-icon {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 0.875rem;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
}

.service-icon svg {
    width: 1.875rem;
    height: 1.875rem;
    color: var(--accent);
    stroke: var(--accent);
    transition: color 0.3s ease, stroke 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: var(--primary-foreground);
    stroke: var(--primary-foreground);
}

.service-card h3 {
    font-size: 1.3125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.service-card p {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    line-height: 1.65;
    margin-bottom: 1.125rem;
}

.service-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5625rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #16a34a;
    transition: all 0.3s ease;
    border-radius: 9999px;
    padding: 0;
}

.service-card:hover .service-wa-link {
    background: #22c55e;
    color: #fff;
    padding: 0.5625rem 1.125rem;
}

.service-wa-link svg {
    width: 1.1875rem;
    height: 1.1875rem;
    stroke: currentColor;
}

.service-wa-link .wa-icon {
    font-size: 1.1875rem;
    line-height: 1;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
    padding: 6rem 0;
    background: var(--muted-40);
    overflow: hidden;
    position: relative;
}

.process-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.process-dots {
    position: absolute;
    display: grid;
    gap: 0.5rem;
    opacity: 0.1;
    pointer-events: none;
}

.process-dots span {
    display: block;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--accent);
}

.steps-list {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    transition: all 0.3s ease;
}

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

.step-icon-wrap {
    position: relative;
    flex-shrink: 0;
}

.step-number {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10;
}

.step-icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: hsla(216, 71%, 95%, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-box svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
    stroke: var(--accent);
    stroke-width: 1.5;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================================
   ABOUT / CTA SECTION
   ============================================================ */
.about {
    padding: 6rem 0;
    background: var(--background);
    overflow: hidden;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: hsla(214, 67%, 55%, 0.1);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.about-eyebrow svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
}

.about-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-desc {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--muted-50);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: hsla(214, 67%, 55%, 0.3);
    box-shadow: var(--shadow-card);
}

.highlight-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-foreground);
    stroke: var(--primary-foreground);
}

.highlight-text {
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.4;
    padding-top: 0.5rem;
}

/* CTA Card (right column) */
.cta-card-wrap {
    position: relative;
}

.cta-card-decor-1 {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    background: hsla(214, 67%, 55%, 0.1);
    transform: rotate(3deg);
}

.cta-card-decor-2 {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    background: hsla(213, 53%, 24%, 0.05);
    transform: rotate(-2deg);
}

.cta-card {
    position: relative;
    background: var(--gradient-hero);
    border-radius: 1.5rem;
    padding: 2.5rem 3rem;
    color: #fff;
    overflow: hidden;
}

.cta-card-bubble-1 {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: float 6s ease-in-out infinite;
}

.cta-card-bubble-2 {
    position: absolute;
    bottom: 2rem;
    left: 1.5rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: float-slow 8s ease-in-out infinite;
}

.cta-card-content { position: relative; z-index: 10; }

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cta-card h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-card p {
    color: rgba(255,255,255,0.75);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
.cta-buttons .btn { width: 100%; justify-content: center; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
    padding: 5rem 0;
    background: var(--muted-50);
}

.carousel-wrapper {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
}

.carousel-track-outer {
    overflow: hidden;
    border-radius: 0.5rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 1.5rem;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
}

.testimonial-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.stars svg {
    width: 1rem;
    height: 1rem;
}

.star-filled { color: #facc15; fill: #facc15; }
.star-empty { color: var(--border); fill: none; }

.testimonial-text {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--foreground);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-card);
}

.carousel-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.carousel-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
    width: 1.5rem;
    border-radius: 9999px;
}

/* ============================================================
   FAQs SECTION
   ============================================================ */
.faqs {
    padding: 5rem 0;
    background: var(--background);
}

.faqs-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--card);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--foreground);
    line-height: 1.5;
    transition: color 0.2s;
}

.faq-trigger:hover { color: var(--accent); }

.faq-chevron {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
}

.faq-item.open .faq-body {
    max-height: 20rem;
}

.faq-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.footer-brand p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.75;
    margin-top: 1rem;
}

.footer-brand img {
    height: 3.25rem;
    width: auto;
    max-height: 3.25rem;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a {
    font-size: 1.0625rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1.0625rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-contact-item:hover { opacity: 1; }

.footer-contact-item svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-map {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.footer-map iframe { display: block; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.7;
    text-align: center;
}

.footer-legal-links {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal-links a {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.page-hero {
    background: var(--gradient-hero);
    padding-top: 8rem;
    padding-bottom: 4rem;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.7;
}

.offers-section {
    padding: 4rem 0;
    background: var(--muted-50);
}

.offers-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 2.5rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.offer-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.75rem;
    border: 2px solid hsla(214, 67%, 55%, 0.2);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.offer-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.offer-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-foreground);
    stroke: var(--primary-foreground);
}

.offer-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.offer-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.pricing-section {
    padding: 4rem 0;
    background: var(--background);
}

.pricing-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.pricing-table {
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.pricing-table-header {
    background: var(--gradient-primary);
    padding: 1rem 1.5rem;
}

.pricing-table-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-foreground);
}

.pricing-table-body { padding: 1.5rem; }

.pricing-table table { width: 100%; border-collapse: collapse; }

.pricing-table tr { border-bottom: 1px solid var(--border); }
.pricing-table tr:last-child { border-bottom: none; }

.pricing-table td {
    padding: 0.75rem 0;
    color: var(--foreground);
    font-size: 0.9375rem;
}

.pricing-table td:last-child {
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--accent);
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

.pricing-cta p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.pricing-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
    padding: 4rem 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

.contact-info-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-foreground);
    stroke: var(--primary-foreground);
}

.contact-info-icon .wa-icon {
    font-size: 1.25rem;
    color: var(--primary-foreground);
    line-height: 1;
}

.contact-info-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-info-value {
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.2s;
}

a.contact-info-value:hover { color: var(--accent); }

.contact-form-card {
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    padding: 2rem;
}

.contact-form-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1rem; }

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--input);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--ring);
    box-shadow: 0 0 0 2px hsla(214, 67%, 55%, 0.2);
}

.form-textarea { resize: vertical; min-height: 6rem; }

.form-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 0.5rem;
}

.map-section {
    padding: 4rem 0;
    background: var(--muted-50);
}

.map-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.map-embed {
    max-width: 56rem;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.map-embed iframe { display: block; }

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: var(--background);
}

.not-found .num-404 {
    font-size: clamp(4rem, 15vw, 8rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.not-found h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 2rem;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    min-width: 16rem;
    max-width: 24rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    pointer-events: auto;
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show { opacity: 1; transform: translateY(0); }

.toast-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--foreground);
}

.toast.destructive {
    border-left: 3px solid var(--destructive);
}

.toast.destructive .toast-title { color: var(--destructive); }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* sm: 640px+ */
@media (min-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: row; }
    .offers-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-cta-buttons { flex-direction: row; }
}

/* Testimonials – show 2 per row on md */
@media (min-width: 768px) and (max-width: 1023px) {
    .carousel-slide { flex: 0 0 calc((100% - 1.5rem) / 2); }
}

/* Hero badge sizing by device:
   - Mobile: unchanged (base .hero-badge)
   - Tablet: larger
   - Desktop: largest */
@media (min-width: 768px) and (max-width: 990px) {
    .hero-badge {
        font-size: 1rem;
        padding: 0.5rem 1.25rem;
    }

    /* Hero title: tablet only increase (mobile unchanged, desktop unchanged) */
    .hero h1 {
        font-size: clamp(2.6rem, 6.8vw, 4.8rem);
    }

    /* Hero paragraph: tablet increase */
    .hero-desc {
        font-size: 1.2rem;
    }
}

/* md: 768px+ */
@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }

    .step-icon-box {
        width: 5rem;
        height: 5rem;
    }
    .step-icon-box svg {
        width: 2.5rem;
        height: 2.5rem;
    }

    .contact-form-buttons { flex-direction: row; }
}

/* Desktop navbar — full horizontal nav + Call/WhatsApp from 991px up; below 991px use hamburger (tablet + phone) */
@media (min-width: 991px) {
    .header-nav { display: flex; }
    .header-cta { display: flex; }
    .hamburger { display: none; }
    .mobile-menu { display: none !important; }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-badge {
        font-size: 1.125rem;
        padding: 0.625rem 1.5rem;
    }

    /* Hero paragraph: desktop increase */
    .hero-desc {
        font-size: 1.3rem;
    }
}

/* lg: 1024px+ */
@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr 1.45fr 1fr; }
    .footer-grid > .footer-col:nth-child(2) { padding-left: 2rem; }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }

    /* Desktop testimonials: force 3 visible cards with balanced card sizing */
    .carousel-slide { flex: 0 0 calc((100% - 3rem) / 3); }
    .testimonial-card { padding: 1.9rem; }
}

/* Carousel — ensure slides don't shrink below their computed width */
.carousel-track { will-change: transform; }
.carousel-slide { min-width: 0; }

/* xl: 1280px+ */
@media (min-width: 1280px) {
    .container { padding-left: 2rem; padding-right: 2rem; }
}
