/* ============================================
   AIR-CON.AE — Design System & Styles
   ============================================ */

/* --- CSS Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility
}

img,
picture,
video,
canvas {
    display: block;
    max-width: 100%
}

svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0
}

svg:not([width]) {
    width: 24px;
    height: 24px
}

input,
button,
textarea,
select {
    font: inherit
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word
}

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

ul,
ol {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none
}

/* --- Design Tokens --- */
:root {
    --c-primary: #0c4a6e;
    --c-primary-light: #0369a1;
    --c-primary-dark: #082f49;
    --c-accent: #0ea5e9;
    --c-accent-light: #38bdf8;
    --c-cta: #f97316;
    --c-cta-hover: #ea580c;
    --c-cta-light: #fed7aa;
    --c-green: #10b981;
    --c-whatsapp: #25d366;
    --c-dark: #0f172a;
    --c-dark-2: #1e293b;
    --c-dark-3: #334155;
    --c-gray: #64748b;
    --c-gray-light: #94a3b8;
    --c-gray-lighter: #cbd5e1;
    --c-light: #f0f9ff;
    --c-light-2: #e0f2fe;
    --c-white: #ffffff;
    --c-body: #f8fafc;
    --c-text: #1e293b;
    --c-text-light: #475569;
    --c-border: #e2e8f0;
    --g-hero: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
    --g-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --g-accent: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --g-cta: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --f-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --f-heading: 'Outfit', system-ui, -apple-system, sans-serif;
    --fs-xs: .75rem;
    --fs-sm: .875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3rem;
    --fs-5xl: 3.75rem;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --lh-tight: 1.2;
    --lh-normal: 1.5;
    --lh-relaxed: 1.7;
    --s-xs: .25rem;
    --s-sm: .5rem;
    --s-md: 1rem;
    --s-lg: 1.5rem;
    --s-xl: 2rem;
    --s-2xl: 3rem;
    --s-3xl: 4rem;
    --s-4xl: 6rem;
    --s-5xl: 8rem;
    --max-w: 1280px;
    --max-w-narrow: 960px;
    --max-w-wide: 1440px;
    --header-h: 80px;
    --r-sm: .375rem;
    --r-md: .5rem;
    --r-lg: .75rem;
    --r-xl: 1rem;
    --r-2xl: 1.5rem;
    --r-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, .12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .15);
    --shadow-glow: 0 0 40px rgba(14, 165, 233, .3);
    --ease: cubic-bezier(.4, 0, .2, 1);
    --t-fast: .15s var(--ease);
    --t-base: .3s var(--ease);
    --t-slow: .5s var(--ease);
}

/* --- Base --- */
body {
    font-family: var(--f-primary);
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--c-text);
    background: var(--c-body)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--f-heading);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    color: var(--c-dark)
}

h1 {
    font-size: var(--fs-4xl)
}

h2 {
    font-size: var(--fs-3xl)
}

h3 {
    font-size: var(--fs-2xl)
}

h4 {
    font-size: var(--fs-xl)
}

h5 {
    font-size: var(--fs-lg)
}

p {
    color: var(--c-text-light);
    line-height: var(--lh-relaxed)
}

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--s-lg)
}

.section {
    padding: var(--s-4xl) 0
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--s-3xl)
}

.section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .375rem 1rem;
    background: var(--c-light-2);
    color: var(--c-primary);
    border-radius: var(--r-full);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--s-md);
    border: 1px solid rgba(14, 165, 233, .2)
}

.section-header .badge svg {
    width: 16px;
    height: 16px
}

.section-header h2 {
    margin-bottom: var(--s-md)
}

.section-header p {
    font-size: var(--fs-md);
    color: var(--c-gray)
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 2rem;
    border-radius: var(--r-lg);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-base);
    transition: all var(--t-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.btn-primary {
    background: var(--g-cta);
    color: var(--c-white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, .35)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, .45)
}

.btn-secondary {
    background: var(--c-white);
    color: var(--c-primary);
    box-shadow: var(--shadow-md)
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, .4);
    color: var(--c-white);
    backdrop-filter: blur(4px)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .7)
}

.btn-whatsapp {
    background: var(--c-whatsapp);
    color: var(--c-white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, .35)
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, .45)
}

.btn-sm {
    padding: .625rem 1.25rem;
    font-size: var(--fs-sm)
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: var(--fs-md)
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--t-base);
    background: transparent
}

.header.scrolled {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, .08)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    max-width: var(--max-w-wide);
    margin: 0 auto;
    padding: 0 var(--s-xl)
}

.logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-family: var(--f-heading);
    font-size: 1.65rem;
    font-weight: var(--fw-extrabold);
    color: var(--c-white);
    letter-spacing: -0.03em;
    transition: color var(--t-base)
}

.header.scrolled .logo {
    color: var(--c-heading)
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    box-shadow: 0 2px 8px rgba(14, 165, 233, .3);
    transition: transform var(--t-base), box-shadow var(--t-base);
    flex-shrink: 0
}

.logo:hover .logo-icon {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, .4)
}

.logo-icon svg {
    width: 20px;
    height: 20px
}

.logo-dot {
    font-weight: 700;
    color: #38bdf8;
    margin-left: -0.05em
}

.header.scrolled .logo-dot {
    color: #0ea5e9
}

/* backward compat */
.logo span:not(.logo-dot) {
    color: #38bdf8
}

.header.scrolled .logo span:not(.logo-dot) {
    color: #0ea5e9
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--s-xl)
}

.nav-links {
    display: flex;
    gap: var(--s-lg)
}

.nav-links a {
    color: rgba(255, 255, 255, .85);
    font-weight: var(--fw-medium);
    font-size: var(--fs-sm);
    transition: color var(--t-fast);
    position: relative;
    padding: .25rem 0
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-accent-light);
    transition: width var(--t-base)
}

.nav-links a:hover {
    color: var(--c-white)
}

.nav-links a:hover::after {
    width: 100%
}

.header.scrolled .nav-links a {
    color: var(--c-text-light)
}

.header.scrolled .nav-links a:hover {
    color: var(--c-primary)
}

.header.scrolled .nav-links a::after {
    background: var(--c-accent)
}

/* Active navigation link */
.nav-links a.active {
    color: var(--c-white)
}

.nav-links a.active::after {
    width: 100%
}

.header.scrolled .nav-links a.active {
    color: var(--c-accent)
}

.header.scrolled .nav-links a.active::after {
    background: var(--c-accent);
    width: 100%
}

.mobile-nav a.active {
    color: var(--c-accent);
    background: var(--c-light-2)
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--s-md)
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--c-white);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    transition: color var(--t-fast)
}

.nav-phone svg {
    width: 18px;
    height: 18px;
    color: var(--c-accent-light)
}

.header.scrolled .nav-phone {
    color: var(--c-primary)
}

.header.scrolled .nav-phone svg {
    color: var(--c-accent)
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: all var(--t-base)
}

.header.scrolled .menu-toggle span {
    background: var(--c-dark)
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* Mobile nav hidden by default on desktop */
.mobile-nav {
    display: none
}

/* WordPress admin bar compatibility */
.admin-bar .header {
    top: 32px
}

.admin-bar .hero {
    padding-top: calc(var(--header-h) + 32px)
}

.admin-bar .page-hero {
    padding-top: calc(var(--header-h) + var(--s-3xl) + 32px)
}

@media(max-width:782px) {
    .admin-bar .header {
        top: 46px
    }

    .admin-bar .hero {
        padding-top: calc(var(--header-h) + 46px)
    }

    .admin-bar .page-hero {
        padding-top: calc(var(--header-h) + var(--s-3xl) + 46px)
    }

    .admin-bar .mobile-nav {
        top: calc(var(--header-h) + 46px)
    }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--g-hero);
    overflow: hidden;
    padding-top: var(--header-h)
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r=".5" fill="rgba(255,255,255,.07)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
    opacity: .6
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--c-body), transparent)
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: var(--max-w-wide);
    margin: 0 auto;
    padding: 0 var(--s-xl)
}

.hero-content {
    max-width: 620px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--r-full);
    color: rgba(255, 255, 255, .9);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    backdrop-filter: blur(8px);
    margin-bottom: var(--s-lg)
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--c-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
    display: inline-block
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .5)
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0)
    }
}

.hero h1 {
    font-size: var(--fs-5xl);
    color: var(--c-white);
    margin-bottom: var(--s-lg);
    line-height: 1.1;
    letter-spacing: -.02em
}

.hero h1 .highlight {
    background: var(--g-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-subtitle {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, .75);
    margin-bottom: var(--s-2xl);
    line-height: var(--lh-relaxed);
    max-width: 520px
}

.hero-buttons {
    display: flex;
    gap: var(--s-md);
    flex-wrap: wrap;
    margin-bottom: var(--s-2xl)
}

.hero-stats {
    display: flex;
    gap: var(--s-2xl)
}

.hero-stat {
    text-align: center
}

.hero-stat-value {
    font-family: var(--f-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-extrabold);
    color: var(--c-white)
}

.hero-stat-label {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, .6);
    margin-top: .25rem
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-image img {
    border-radius: var(--r-2xl);
    box-shadow: var(--shadow-xl);
    max-height: 520px;
    object-fit: cover;
    width: 100%
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: var(--r-2xl);
    background: var(--g-accent);
    opacity: .15;
    filter: blur(40px)
}

.hero-float {
    position: absolute;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    border-radius: var(--r-lg);
    padding: .875rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .75rem;
    animation: float 3s ease-in-out infinite
}

.hero-float-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s
}

.hero-float-2 {
    bottom: 15%;
    left: -8%;
    animation-delay: 1.5s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.hero-float-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.hero-float-icon svg {
    width: 20px;
    height: 20px
}

.hero-float-icon.orange {
    background: var(--c-cta-light);
    color: var(--c-cta)
}

.hero-float-icon.blue {
    background: var(--c-light-2);
    color: var(--c-accent)
}

.hero-float-text {
    font-size: var(--fs-sm)
}

.hero-float-text strong {
    display: block;
    color: var(--c-dark);
    font-weight: var(--fw-semibold)
}

.hero-float-text span {
    color: var(--c-gray);
    font-size: var(--fs-xs)
}

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-lg)
}

.service-card {
    background: var(--c-white);
    border-radius: var(--r-xl);
    padding: var(--s-2xl);
    border: 1px solid var(--c-border);
    transition: all var(--t-base);
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--g-accent);
    transform: scaleX(0);
    transition: transform var(--t-base);
    transform-origin: left
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s-lg);
    background: var(--c-light);
    color: var(--c-accent);
    transition: all var(--t-base)
}

.service-card:hover .service-icon {
    background: var(--g-accent);
    color: var(--c-white);
    box-shadow: var(--shadow-glow)
}

.service-icon svg {
    width: 28px;
    height: 28px
}

.service-card h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--s-sm)
}

.service-card p {
    font-size: var(--fs-sm);
    color: var(--c-gray);
    margin-bottom: var(--s-lg);
    line-height: var(--lh-relaxed)
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    color: var(--c-accent);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    transition: gap var(--t-base)
}

.service-link:hover {
    gap: .625rem
}

.service-link svg {
    width: 16px;
    height: 16px
}

/* ============ STATS ============ */
.stats-section {
    background: var(--g-dark);
    position: relative;
    overflow: hidden
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(14, 165, 233, .15) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(249, 115, 22, .1) 0%, transparent 50%)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-xl);
    position: relative;
    z-index: 1
}

.stat-card {
    text-align: center;
    padding: var(--s-2xl) var(--s-lg);
    border-radius: var(--r-xl);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    transition: all var(--t-base)
}

.stat-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-4px)
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-lg);
    background: rgba(14, 165, 233, .15);
    color: var(--c-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--s-md)
}

.stat-icon svg {
    width: 26px;
    height: 26px
}

.stat-number {
    font-family: var(--f-heading);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-extrabold);
    color: var(--c-white);
    line-height: 1
}

.stat-label {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, .6);
    margin-top: .5rem
}

/* ============ FEATURES ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-xl);
    align-items: center
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--s-lg)
}

.feature-item {
    display: flex;
    gap: var(--s-md);
    padding: var(--s-lg);
    border-radius: var(--r-lg);
    transition: all var(--t-base);
    border: 1px solid transparent
}

.feature-item:hover {
    background: var(--c-white);
    border-color: var(--c-border);
    box-shadow: var(--shadow-sm)
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--c-light);
    color: var(--c-accent)
}

.feature-icon svg {
    width: 24px;
    height: 24px
}

.feature-text h4 {
    font-size: var(--fs-base);
    margin-bottom: .25rem
}

.feature-text p {
    font-size: var(--fs-sm);
    color: var(--c-gray)
}

.features-image img {
    border-radius: var(--r-2xl);
    box-shadow: var(--shadow-lg)
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    background: var(--c-light)
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-lg)
}

.testimonial-card {
    background: var(--c-white);
    border-radius: var(--r-xl);
    padding: var(--s-2xl);
    border: 1px solid var(--c-border);
    transition: all var(--t-base)
}

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

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--s-md);
    color: var(--c-cta)
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.testimonial-text {
    font-size: var(--fs-base);
    color: var(--c-text-light);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--s-lg);
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--s-md)
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    font-size: var(--fs-md);
    color: var(--c-white)
}

.testimonial-avatar.a1 {
    background: var(--g-accent)
}

.testimonial-avatar.a2 {
    background: var(--g-cta)
}

.testimonial-avatar.a3 {
    background: var(--g-dark)
}

.testimonial-info strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--c-dark)
}

.testimonial-info span {
    font-size: var(--fs-xs);
    color: var(--c-gray)
}

/* ============ BRANDS ============ */
.brands-section {
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border)
}

.brands-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-3xl);
    flex-wrap: wrap
}

.brand-item {
    font-family: var(--f-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--c-gray-lighter);
    transition: color var(--t-base);
    letter-spacing: .02em
}

.brand-item:hover {
    color: var(--c-primary)
}

/* ============ CTA BANNER ============ */
.cta-banner {
    background: var(--g-hero);
    position: relative;
    overflow: hidden
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(14, 165, 233, .2) 0%, transparent 50%)
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto
}

.cta-inner h2 {
    color: var(--c-white);
    margin-bottom: var(--s-md)
}

.cta-inner p {
    color: rgba(255, 255, 255, .75);
    font-size: var(--fs-lg);
    margin-bottom: var(--s-2xl)
}

.cta-buttons {
    display: flex;
    gap: var(--s-md);
    justify-content: center;
    flex-wrap: wrap
}

/* ============ FAQ ============ */
.faq-grid {
    max-width: var(--max-w-narrow);
    margin: 0 auto
}

.faq-item {
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    margin-bottom: var(--s-md);
    background: var(--c-white);
    overflow: hidden;
    transition: all var(--t-base)
}

.faq-item.active {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, .1)
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--s-lg) var(--s-xl);
    cursor: pointer;
    font-weight: var(--fw-semibold);
    color: var(--c-dark);
    font-size: var(--fs-md);
    gap: var(--s-md)
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--c-gray);
    transition: transform var(--t-base)
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--c-accent)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-base)
}

.faq-answer-inner {
    padding: 0 var(--s-xl) var(--s-lg);
    color: var(--c-text-light);
    line-height: var(--lh-relaxed)
}

/* ============ BLOG ============ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-lg)
}

.blog-card {
    background: var(--c-white);
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--c-border);
    transition: all var(--t-base)
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.blog-card-img {
    height: 200px;
    overflow: hidden
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow)
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05)
}

.blog-card-body {
    padding: var(--s-lg)
}

.blog-card-category {
    display: inline-block;
    padding: .25rem .75rem;
    background: var(--c-light-2);
    color: var(--c-primary);
    border-radius: var(--r-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--s-sm)
}

.blog-card-body h3 {
    font-size: var(--fs-md);
    margin-bottom: var(--s-sm)
}

.blog-card-body h3 a:hover {
    color: var(--c-accent)
}

.blog-card-body p {
    font-size: var(--fs-sm);
    color: var(--c-gray);
    margin-bottom: var(--s-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--s-md);
    font-size: var(--fs-xs);
    color: var(--c-gray-light)
}

.blog-detail {
    max-width: var(--max-w-narrow);
    margin: 0 auto;
    padding: var(--s-3xl) var(--s-lg)
}

.blog-detail-content {
    font-size: var(--fs-md);
    line-height: 1.8
}

.blog-detail-content h2 {
    margin: var(--s-2xl) 0 var(--s-md)
}

.blog-detail-content p {
    margin-bottom: var(--s-lg)
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: var(--s-lg);
    padding-left: var(--s-xl)
}

.blog-detail-content li {
    margin-bottom: .5rem;
    color: var(--c-text-light);
    list-style: disc
}

.blog-detail-content ol li {
    list-style: decimal
}

/* Blog Share */
.blog-share {
    display: flex;
    align-items: center;
    gap: var(--s-md);
    margin-top: var(--s-2xl);
    padding-top: var(--s-xl);
    border-top: 1px solid var(--c-border)
}

.blog-share span {
    font-weight: var(--fw-medium);
    color: var(--c-dark);
    font-size: var(--fs-sm)
}

.blog-share a {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gray);
    transition: all var(--t-fast)
}

.blog-share a:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: var(--c-white)
}

/* Pagination */
.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--s-sm);
    list-style: none;
    padding: 0;
    margin: var(--s-xl) 0 0
}

.page-numbers li {
    list-style: none
}

.page-numbers a,
.page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--s-md);
    border-radius: var(--r-md);
    font-weight: var(--fw-medium);
    font-size: var(--fs-sm);
    transition: all var(--t-fast);
    color: var(--c-text-light);
    border: 1px solid var(--c-border)
}

.page-numbers a:hover {
    background: var(--c-light);
    color: var(--c-primary);
    border-color: var(--c-accent)
}

.page-numbers .current {
    background: var(--c-accent);
    color: var(--c-white);
    border-color: var(--c-accent)
}

.page-numbers .prev,
.page-numbers .next {
    font-weight: var(--fw-semibold);
    gap: .25rem
}

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3xl)
}

.contact-form {
    background: var(--c-white);
    border-radius: var(--r-xl);
    padding: var(--s-2xl);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm)
}

.form-group {
    margin-bottom: var(--s-lg)
}

.form-group label {
    display: block;
    font-weight: var(--fw-medium);
    font-size: var(--fs-sm);
    color: var(--c-dark);
    margin-bottom: .5rem
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .875rem 1rem;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-md);
    font-size: var(--fs-base);
    transition: all var(--t-fast);
    background: var(--c-body)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, .1)
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-md)
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--s-lg)
}

.contact-info-card {
    display: flex;
    gap: var(--s-md);
    padding: var(--s-lg);
    background: var(--c-white);
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border)
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--c-light);
    color: var(--c-accent)
}

.contact-info-icon svg {
    width: 22px;
    height: 22px
}

.contact-info-text h4 {
    font-size: var(--fs-base);
    margin-bottom: .25rem
}

.contact-info-text p,
.contact-info-text a {
    font-size: var(--fs-sm);
    color: var(--c-gray)
}

.contact-info-text a:hover {
    color: var(--c-accent)
}

.contact-map {
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 300px;
    margin-top: var(--s-lg);
    border: 1px solid var(--c-border)
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0
}

/* ============ FOOTER ============ */
.footer {
    background: var(--c-dark);
    color: rgba(255, 255, 255, .7);
    position: relative;
    overflow: hidden
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent)
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--s-3xl);
    padding: var(--s-4xl) 0 var(--s-2xl)
}

.footer-brand p {
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    margin: var(--s-md) 0 var(--s-lg);
    color: rgba(255, 255, 255, .5)
}

.footer-social {
    display: flex;
    gap: var(--s-md)
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    transition: all var(--t-base)
}

.footer-social a:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: var(--c-white)
}

.footer-social a svg {
    width: 18px;
    height: 18px
}

.footer h4 {
    color: var(--c-white);
    font-size: var(--fs-base);
    margin-bottom: var(--s-lg)
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--s-sm)
}

.footer-links a {
    color: rgba(255, 255, 255, .5);
    font-size: var(--fs-sm);
    transition: color var(--t-fast);
    padding: .25rem 0
}

.footer-links a:hover {
    color: var(--c-accent-light)
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: var(--s-md)
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--c-accent);
    flex-shrink: 0;
    margin-top: 3px
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, .5)
}

.footer-contact-item a:hover {
    color: var(--c-accent-light)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: var(--s-lg) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, .35)
}

.footer-bottom-links {
    display: flex;
    gap: var(--s-lg)
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .35);
    transition: color var(--t-fast)
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, .6)
}

/* ============ WHATSAPP CHAT WIDGET ============ */
.wa-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px
}

.wa-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    transition: all .3s ease;
    animation: wa-pulse 2s infinite;
    position: relative
}

.wa-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .5)
}

.wa-float-btn .wa-icon-close {
    display: none
}

.wa-widget.open .wa-float-btn .wa-icon-open {
    display: none
}

.wa-widget.open .wa-float-btn .wa-icon-close {
    display: block
}

.wa-widget.open .wa-float-btn {
    animation: none;
    background: #128c7e
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .4) }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, .4), 0 0 0 12px rgba(37, 211, 102, .08) }
}

/* Chat popup */
.wa-chat {
    width: 340px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, .18), 0 4px 20px rgba(0, 0, 0, .1);
    opacity: 0;
    transform: translateY(20px) scale(.95);
    pointer-events: none;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    transform-origin: bottom right
}

.wa-widget.open .wa-chat {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all
}

/* Header */
.wa-chat-header {
    background: linear-gradient(135deg, #075e54, #128c7e);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

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

.wa-chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0
}

.wa-chat-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2
}

.wa-chat-role {
    color: rgba(255, 255, 255, .7);
    font-size: .8rem;
    margin-top: 1px
}

.wa-chat-status {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #25d366;
    font-size: .78rem;
    font-weight: 500;
    margin-top: 3px
}

.wa-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25d366;
    display: inline-block;
    animation: wa-blink 1.8s infinite
}

@keyframes wa-blink {
    0%, 100% { opacity: 1 }
    50% { opacity: .4 }
}

.wa-chat-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .8);
    transition: all .2s;
    flex-shrink: 0
}

.wa-chat-close:hover {
    background: rgba(255, 255, 255, .25);
    color: #fff
}

/* Chat body */
.wa-chat-body {
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M30 5 L35 15 L25 15Z' fill='%23ccc7be' fill-opacity='.12'/%3E%3Ccircle cx='50' cy='40' r='3' fill='%23ccc7be' fill-opacity='.08'/%3E%3Ccircle cx='10' cy='45' r='2' fill='%23ccc7be' fill-opacity='.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23p)'/%3E%3C/svg%3E");
    padding: 20px 16px;
    min-height: 120px
}

.wa-chat-sender {
    font-size: .7rem;
    font-weight: 700;
    color: #075e54;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 6px
}

.wa-chat-bubble {
    background: #fff;
    padding: 12px 14px;
    border-radius: 0 10px 10px 10px;
    font-size: .92rem;
    line-height: 1.5;
    color: #303030;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
    max-width: 90%
}

.wa-chat-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-right: 8px solid #fff;
    border-bottom: 8px solid transparent
}

.wa-chat-time {
    display: block;
    text-align: right;
    font-size: .68rem;
    color: #999;
    margin-top: 4px
}

/* Footer */
.wa-chat-footer {
    background: #fff;
    padding: 16px 20px 20px;
    text-align: center
}

.wa-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #25d366, #20bd5a);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, .35);
    transition: all .3s ease
}

.wa-chat-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, .45);
    background: linear-gradient(135deg, #22c55e, #25d366)
}

.wa-chat-btn svg {
    flex-shrink: 0
}

.wa-chat-redirect {
    display: block;
    font-size: .72rem;
    color: #999;
    margin-top: 10px;
    font-style: italic
}

/* ============ MOBILE CTA BAR ============ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background: var(--c-white);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, .1);
    padding: .75rem var(--s-md)
}

.mobile-cta-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-sm)
}

.mobile-cta-bar .btn {
    justify-content: center;
    padding: .75rem;
    border-radius: var(--r-md);
    font-size: var(--fs-sm)
}

/* ============ PAGE HERO ============ */
.page-hero {
    background: var(--g-hero);
    padding: calc(var(--header-h) + var(--s-3xl)) 0 var(--s-3xl);
    text-align: center;
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(14, 165, 233, .2) 0%, transparent 50%)
}

.page-hero h1 {
    color: var(--c-white);
    font-size: var(--fs-4xl);
    margin-bottom: var(--s-md);
    position: relative;
    z-index: 1
}

.page-hero p {
    color: rgba(255, 255, 255, .7);
    font-size: var(--fs-lg);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: var(--s-lg);
    position: relative;
    z-index: 1
}

.breadcrumb a,
.breadcrumb span {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, .6)
}

.breadcrumb a:hover {
    color: var(--c-white)
}

.breadcrumb .sep {
    color: rgba(255, 255, 255, .3)
}

/* ============ SERVICE DETAIL ============ */
.service-detail {
    padding: var(--s-4xl) 0
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--s-3xl)
}

.service-detail-content h2 {
    margin-bottom: var(--s-md);
    font-size: var(--fs-2xl)
}

.service-detail-content p {
    margin-bottom: var(--s-lg)
}

.service-detail-content ul li {
    padding: .5rem 0 .5rem 1.75rem;
    position: relative;
    color: var(--c-text-light)
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--c-green);
    font-weight: var(--fw-bold)
}

.service-sidebar {
    position: sticky;
    top: calc(var(--header-h) + var(--s-xl))
}

.sidebar-card {
    background: var(--c-white);
    border-radius: var(--r-xl);
    padding: var(--s-xl);
    border: 1px solid var(--c-border);
    margin-bottom: var(--s-lg)
}

.sidebar-card h4 {
    margin-bottom: var(--s-md)
}

.sidebar-services-list a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem;
    border-radius: var(--r-md);
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    transition: all var(--t-fast);
    margin-bottom: .25rem
}

.sidebar-services-list a:hover,
.sidebar-services-list a.active {
    background: var(--c-light);
    color: var(--c-primary);
    font-weight: var(--fw-medium)
}

.sidebar-services-list a svg {
    width: 16px;
    height: 16px;
    color: var(--c-accent)
}

.quick-quote {
    background: var(--g-hero);
    border-radius: var(--r-xl);
    padding: var(--s-xl);
    color: var(--c-white)
}

.quick-quote h4 {
    color: var(--c-white);
    margin-bottom: var(--s-md)
}

.quick-quote .form-group label {
    color: rgba(255, 255, 255, .8)
}

.quick-quote .form-group input,
.quick-quote .form-group select {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: var(--c-white)
}

.quick-quote .form-group input::placeholder {
    color: rgba(255, 255, 255, .4)
}

.quick-quote .form-group input:focus,
.quick-quote .form-group select:focus {
    border-color: var(--c-accent);
    background: rgba(255, 255, 255, .15)
}

/* ============ ABOUT VALUES ============ */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-lg)
}

.value-card {
    text-align: center;
    padding: var(--s-2xl);
    background: var(--c-white);
    border-radius: var(--r-xl);
    border: 1px solid var(--c-border);
    transition: all var(--t-base)
}

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

.value-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--c-light);
    color: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--s-md)
}

.value-card .icon svg {
    width: 28px;
    height: 28px
}

.value-card h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--s-sm)
}

.value-card p {
    font-size: var(--fs-sm);
    color: var(--c-gray)
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s var(--ease)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all .6s var(--ease)
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all .6s var(--ease)
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}

.stagger-1 {
    transition-delay: .1s
}

.stagger-2 {
    transition-delay: .2s
}

.stagger-3 {
    transition-delay: .3s
}

.stagger-4 {
    transition-delay: .4s
}

.stagger-5 {
    transition-delay: .5s
}

.stagger-6 {
    transition-delay: .6s
}

/* ============ RESPONSIVE ============ */
@media(max-width:1024px) {
    h1 {
        font-size: var(--fs-3xl)
    }

    h2 {
        font-size: var(--fs-2xl)
    }

    .hero h1 {
        font-size: var(--fs-4xl)
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-content {
        margin: 0 auto
    }

    .hero-subtitle {
        margin: 0 auto var(--s-2xl)
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center
    }

    .hero-image {
        display: none
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .features-grid {
        grid-template-columns: 1fr
    }

    .features-image {
        order: -1
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .service-detail-grid {
        grid-template-columns: 1fr
    }

    .service-sidebar {
        position: static
    }
}

@media(max-width:768px) {
    :root {
        --header-h: 68px;
        --s-4xl: 4rem
    }

    .hero h1 {
        font-size: var(--fs-3xl)
    }

    .nav-links,
    .nav-cta .btn,
    .nav-phone {
        display: none
    }

    .menu-toggle {
        display: flex
    }

    .mobile-nav {
        display: flex;
        position: fixed;
        top: var(--header-h);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-h));
        background: var(--c-white);
        z-index: 999;
        padding: var(--s-xl);
        transform: translateX(100%);
        transition: transform var(--t-base);
        flex-direction: column;
        gap: var(--s-md)
    }

    .mobile-nav.open {
        transform: translateX(0)
    }

    .mobile-nav a {
        display: block;
        padding: var(--s-md);
        font-size: var(--fs-lg);
        font-weight: var(--fw-medium);
        color: var(--c-dark);
        border-radius: var(--r-md)
    }

    .mobile-nav .btn {
        justify-content: center;
        margin-top: var(--s-md)
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .mobile-cta-bar {
        display: block
    }

    .wa-widget {
        bottom: 80px
    }

    .wa-chat {
        width: 300px
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--s-md);
        text-align: center
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center
    }

    .about-values {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: var(--fs-2xl)
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--s-md)
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .page-hero h1 {
        font-size: var(--fs-2xl)
    }
}

/* Utility */
.text-center {
    text-align: center
}

.mb-0 {
    margin-bottom: 0
}

.mt-lg {
    margin-top: var(--s-lg)
}

.mt-xl {
    margin-top: var(--s-xl)
}

/* WordPress specific */
.wp-block-image img {
    border-radius: var(--r-lg)
}

.aligncenter {
    text-align: center;
    margin: 0 auto
}

.alignleft {
    float: left;
    margin-right: var(--s-lg)
}

.alignright {
    float: right;
    margin-left: var(--s-lg)
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--c-accent);
    outline-offset: 2px
}

/* Skip to content */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--s-md);
    background: var(--c-accent);
    color: var(--c-white);
    padding: var(--s-sm) var(--s-lg);
    z-index: 9999;
    border-radius: var(--r-md);
    font-weight: var(--fw-semibold)
}

.skip-link:focus {
    top: var(--s-md)
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .wa-widget,
    .mobile-cta-bar,
    .cta-banner,
    .quick-quote,
    .blog-share {
        display: none !important
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff
    }

    a {
        color: #000;
        text-decoration: underline
    }

    .container {
        max-width: 100%;
        padding: 0
    }
}

/* Loading state for forms */
.btn[disabled] {
    opacity: .7;
    cursor: not-allowed;
    transform: none !important
}