/* ============================================
   HARRIS PLUMBING - MODERN REDESIGN 2024
   A fresh, professional look for a trusted business
   Works alongside Bootstrap 5
   ============================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
    /* Primary Colors - Professional Blue/Teal */
    --primary-50: #e6f7fa;
    --primary-100: #b3e8f2;
    --primary-200: #80d9ea;
    --primary-300: #4dcae2;
    --primary-400: #26beda;
    --primary-500: #0891b2;
    --primary-600: #0e7490;
    --primary-700: #155e75;
    --primary-800: #164e63;
    --primary-900: #134152;
    /* Accent - Warm Orange for CTAs */
    --accent-400: #fb923c;
    --accent-500: #f97316;
    --accent-600: #ea580c;
    --accent-700: #c2410c;
    /* Neutrals */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --white: #ffffff;
    /* Typography */
    --font-display: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    /* Bootstrap 5 Primary Color Override */
    --bs-primary: #0e7490;
    --bs-primary-rgb: 14, 116, 144;
    --bs-link-color: #0e7490;
    --bs-link-hover-color: #155e75;
}

/* === BOOTSTRAP 5 OVERRIDES === */
.bg-primary {
    background-color: var(--primary-600) !important;
}

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

.btn-primary:hover {
    background-color: var(--primary-700);
    border-color: var(--primary-700);
}

.btn-outline-primary {
    color: var(--primary-600);
    border-color: var(--primary-600);
}

.btn-outline-primary:hover {
    background-color: var(--primary-600);
    border-color: var(--primary-600);
}

.text-primary {
    color: var(--primary-600) !important;
}

a {
    color: var(--primary-600);
}

a:hover {
    color: var(--primary-700);
}

/* === BASE STYLES === */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background-color: var(--white);
    padding-top: 8rem;
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 50px;
    }
}

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

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

a:hover {
    color: var(--primary-700);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

/* === UTILITY CLASSES === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.section--alt {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-50) 100%);
}

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

.text-white {
    color: var(--white);
}

/* === TOP BAR === (removed - merged into header) */

/* === HEADER === */
.header {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) 0;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.header__logo img {
    height: 110px;
    width: auto;
    transition: transform var(--transition-base);
}

.header__logo:hover img {
    transform: scale(1.02);
}

.header__top-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.header__top-bar-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    white-space: nowrap;
}

.header__top-bar-item i {
    font-size: 1rem;
    color: var(--primary-200);
}

.header__top-bar-item a {
    color: var(--white);
    font-weight: 500;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.header__top-bar-item a:hover {
    color: var(--primary-200);
}

.header__top-bar-item span {
    color: var(--white);
    font-weight: 500;
}

.header__phone-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header__phone-group div {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    white-space: nowrap;
}

.header__phone-group i {
    color: var(--primary-200);
}

.header__phone-group a {
    color: var(--white);
    font-weight: 500;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.header__phone-group a:hover {
    color: var(--primary-200);
}

/* Mobile responsive header */
@media (max-width: 992px) {
    .header__logo img {
        height: 80px;
    }

    .header__top-bar {
        gap: var(--space-md);
    }

    .header__top-bar-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: var(--space-xs) 0;
    }

    .header__content {
        gap: var(--space-md);
    }

    .header__logo img {
        height: 60px;
    }

    .header__top-bar {
        gap: var(--space-sm);
    }

    .header__top-bar-item {
        font-size: 0.75rem;
        gap: var(--space-xs);
    }

    .header__top-bar-item i {
        font-size: 0.85rem;
    }

    .header__top-bar-item span {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__logo img {
        height: 78px;
    }

    .header__top-bar {
        flex-direction: column;
        width: 100%;
        gap: var(--space-md);
        justify-content: center;
        align-items: center;
    }

    .header__top-bar-item {
        font-size: 0.7rem;
        justify-content: center;
        width: 100%;
        white-space: normal;
    }

    .header__top-bar-item--phones {
        order: 1;
    }

    .header__top-bar-item--email {
        order: 2;
    }

    .header__phone-group {
        justify-content: center;
        gap: var(--space-sm);
    }

    .header__phone-group div {
        gap: var(--space-xs);
    }

    .header__top-bar-item i {
        font-size: 0.75rem;
    }

    .header__top-bar-item a {
        font-size: 0.7rem;
    }
}

/* === NAVIGATION === */
.nav {
    background: linear-gradient(90deg, var(--accent-600) 0%, var(--accent-400) 100%);
    box-shadow: var(--shadow-lg);
    position: fixed;
    top: 126px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1002;
    border-top: solid 2px #FFF;
}

@media (max-width: 768px) {
    .nav {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60"><defs><pattern id="pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="60" fill="url(%23pattern)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.nav__content {
    position: relative;
    z-index: 1;
}

.nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 0;
    margin: 0;
}

.nav__item {
    position: relative;
}

.nav__item--cta {
    margin-left: var(--space-md);
    padding-left: var(--space-md);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-lg);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: all var(--transition-fast);
    position: relative;
}

.nav__link i {
    font-size: 0.85rem;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-400);
    transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
    color: var(--white);
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 80%;
}

.nav__link--cta {
    background: var(--accent-500);
    color: var(--white) !important;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    font-size: 0.85rem;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    border-radius: var(--radius-md);
}


@media (max-width: 1024px) {
    .nav__link {
        font-size: 0.8rem;
        padding: var(--space-md) var(--space-md);
    }
}

/* Mobile Nav Toggle */
.nav__toggle {
    display: none;
    background: var(--primary-600);
    border: none;
    padding: var(--space-md);
    cursor: pointer;
    color: var(--white);
    font-size: 1.5rem;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-200) 0%, var(--primary-500) 50%, var(--primary-700) 100%);
    overflow-x: hidden;
    overflow-y: visible;
    padding: var(--space-4xl) 0;
}

.hero .container {
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero-pattern.svg') repeat;
    opacity: 0.05;
}

.hero__wrapper {
    display: flex;
    gap: var(--space-4xl);
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero__main-content {
    flex: 0 0 65%;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.hero__trust-cards {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    animation: fadeInRight 0.8s ease-out;
}

.hero__trust-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    animation: slideInDown 0.6s ease-out forwards;
    opacity: 0;
}

.hero__trust-card:nth-child(1) {
    animation-delay: 0.2s;
}

.hero__trust-card:nth-child(2) {
    animation-delay: 0.4s;
}

.hero__trust-card:nth-child(3) {
    animation-delay: 0.6s;
}

.hero__trust-card:nth-child(4) {
    animation-delay: 0.8s;
}

.hero__trust-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero__trust-card--gas-safe {
    border-left: 4px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.08));
}

.hero__trust-card--gas-safe .hero__trust-card-icon {
    color: #10b981;
}

.hero__trust-card--experience {
    border-left: 4px solid var(--accent-400);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.08));
}

.hero__trust-card--experience .hero__trust-card-icon {
    color: var(--accent-400);
}

.hero__trust-card--reviews {
    border-left: 4px solid #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.08));
}

.hero__trust-card--reviews .hero__trust-card-icon {
    color: #fbbf24;
}

.hero__trust-card--available {
    border-left: 4px solid #60a5fa;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(96, 165, 250, 0.08));
}

.hero__trust-card--available .hero__trust-card-icon {
    color: #60a5fa;
}

.hero__trust-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.hero__trust-card-content {
    flex: 1;
}

.hero__trust-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.hero__trust-card-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero__title span {
    color: var(--accent-400);
}

.hero__description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero__decoration {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent-500);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.4);
}

.btn--primary:hover {
    background: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(249, 115, 22, 0.5);
    color: var(--white);
}

.btn--secondary {
    background: var(--white);
    color: var(--primary-700);
}

.btn--secondary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    color: var(--primary-800);
}

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

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

.btn--lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
}

.btn--white {
    background: var(--white);
    color: #25D366;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
    color: #25D366;
}

/* === GOLD STARS === */
.gold-stat__star {
    color: #fbbf24;
    font-size: 0.45em;
}

/* === QUICK CONTACT SECTION === */
.quick-contact-section {
    background: linear-gradient(135deg, #1a7a8a 0%, #0f5a6a 50%, #1a6a7a 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.quick-contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.quick-contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.quick-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    position: relative;
    z-index: 2;
}

/* === QUICK QUOTE & WHATSAPP SECTION === */
.hero--quote {
    min-height: auto;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-50) 100%);
    padding: var(--space-3xl) 0;
}

.hero__quote-section {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .hero__quote-section {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .hero--quote {
        padding: var(--space-2xl) 0;
    }

    .hero__quote-section {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg);
        display: flex !important;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero--quote {
        padding: var(--space-xl) 0;
    }

    .hero__quote-section {
        gap: var(--space-md);
    }
}

/* === QUICK QUOTE WIDGET === */
.quick-quote {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-100);
    position: relative;
    z-index: 10;
    animation: slideInUp 0.8s ease-out;
    transition: all var(--transition-base);
}

.quick-quote:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: var(--primary-200);
}

.quick-quote__title {
    font-size: 1.5rem;
    color: var(--primary-700);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.quick-quote__subtitle {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.quick-quote__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.quick-quote__input {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--gray-50);
}

.quick-quote__input:focus {
    outline: none;
    border-color: var(--primary-500);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.quick-quote__whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
    margin-top: var(--space-sm);
}

.quick-quote__whatsapp {
    display: none;
}

.quick-quote__divider {
    display: none;
}

.quick-quote__divider::before,
.quick-quote__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

@media (max-width: 992px) {
    .quick-quote {
        padding: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .quick-quote {
        padding: var(--space-xl);
        width: 100%;
    }

    .quick-quote__title {
        font-size: 1.25rem;
    }

    .quick-quote__subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .quick-quote {
        padding: var(--space-lg);
    }

    .quick-quote__title {
        font-size: 1.1rem;
    }

    .quick-quote__subtitle {
        font-size: 0.8rem;
    }
}

/* === QUICK WHATSAPP BOX === */
.quick-whatsapp {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
    animation: slideInUp 0.8s ease-out 0.1s backwards;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.quick-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
}

.quick-whatsapp__icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    animation: bounce 2s infinite;
}

.quick-whatsapp__title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.quick-whatsapp__subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    margin-bottom: var(--space-2xl);
    font-weight: 500;
}

.quick-whatsapp .btn--primary {
    background: var(--white);
    color: #10b981;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15);
    font-weight: 700;
}

.quick-whatsapp .btn--primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .quick-whatsapp {
        padding: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .quick-whatsapp {
        padding: var(--space-xl);
        width: 100%;
    }

    .quick-whatsapp__icon {
        font-size: 2.5rem;
        margin-bottom: var(--space-md);
    }

    .quick-whatsapp__title {
        font-size: 1.25rem;
    }

    .quick-whatsapp__subtitle {
        font-size: 0.85rem;
        margin-bottom: var(--space-lg);
    }

    .quick-whatsapp .btn--primary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .quick-whatsapp {
        padding: var(--space-lg);
    }

    .quick-whatsapp__icon {
        font-size: 2rem;
        margin-bottom: var(--space-sm);
    }

    .quick-whatsapp__title {
        font-size: 1.1rem;
    }

    .quick-whatsapp__subtitle {
        font-size: 0.8rem;
        margin-bottom: var(--space-md);
    }
}

/* === TRUST INDICATORS === */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-xl) 0;
}

.trust-bar__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
}

.trust-item__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    color: var(--primary-600);
    font-size: 1.5rem;
}

.trust-item__title {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.trust-item__text {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* === SERVICES SECTION === */
.services-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.services-section__title {
    margin-bottom: var(--space-md);
}

.services-section__subtitle {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    width: 100%;
}

@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

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

.service-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
    border-radius: var(--radius-lg);
    color: var(--primary-600);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
}

.service-card__description {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary-600);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-card__link:hover {
    color: var(--accent-600);
}

.service-card__link i {
    transition: transform var(--transition-fast);
}

.service-card__link:hover i {
    transform: translateX(4px);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    position: relative;
    z-index: 2;
}

.cta-section__text {
    color: var(--white);
    max-width: 600px;
}

.cta-section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-section__description {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section__phone {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--white);
}

.cta-section__phone-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-500);
    border-radius: 50%;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.cta-section__phone-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-section__phone-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.cta-section__phone-number:hover {
    color: var(--accent-400);
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card__quote {
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    font-size: 4rem;
    color: var(--primary-100);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    color: var(--warning);
    margin-bottom: var(--space-md);
}

.testimonial-card__text {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

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

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--gray-900);
}

.testimonial-card__location {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* === FOOTER === */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-4xl) 0 0;
}

/* === INSTAGRAM & FACEBOOK CTA BANNERS === */
.gallery-instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    padding: var(--space-xl) 0;
}

.gallery-instagram__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    color: white;
    text-align: center;
}

.gallery-instagram__icon-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.gallery-instagram__icon {
    font-size: 2.5rem;
}

.gallery-instagram__text {
    text-align: left;
}

.gallery-instagram__title {
    font-weight: 700;
    font-size: 1.1rem;
}

.gallery-instagram__subtitle {
    opacity: 0.9;
}

.gallery-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0A66C2 100%);
    padding: var(--space-xl) 0;
}

.gallery-facebook__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    color: white;
    text-align: center;
}

.gallery-facebook__icon-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.gallery-facebook__icon {
    font-size: 2.5rem;
}

.gallery-facebook__text {
    text-align: left;
}

.gallery-facebook__title {
    font-weight: 700;
    font-size: 1.1rem;
}

.gallery-facebook__subtitle {
    opacity: 0.9;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
    padding: var(--space-4xl) var(--container-padding);
    position: relative;
    overflow: hidden;
}

.cta-section__bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.cta-section__bg-shape--1 {
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(45, 90, 123, 0.3);
}

.cta-section__bg-shape--2 {
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(26, 58, 82, 0.4);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

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

.cta-section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.cta-section__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: #25D366;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-section__title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-weight: 800;
}

.cta-section__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section__actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.cta-section__card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
}

.cta-section__card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-section__card--whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.cta-section__card--whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
}

.cta-section__card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section__card-icon--email {
    color: #FF6B6B;
}

.cta-section__card-icon--whatsapp {
    color: #25D366;
}

.cta-section__card-icon--phone {
    color: #4ECDC4;
}

.cta-section__card-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.cta-section__card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.cta-section__card-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.cta-section__card-btn {
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.cta-section__card-btn--whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.cta-section__card-btn--whatsapp:hover {
    background-color: #20c15e;
    border-color: #20c15e;
}

.cta-section__card-btn--outline {
    color: white;
    border-color: white;
}

.cta-section__card-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}

@media (max-width: 768px) {
    .cta-section {
        padding: var(--space-3xl) var(--container-padding);
    }

    .cta-section__title {
        font-size: 2rem;
    }

    .cta-section__description {
        font-size: 1rem;
    }

    .cta-section__actions {
        gap: var(--space-2xl);
    }

    .cta-section__card {
        padding: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: var(--space-2xl) var(--container-padding);
    }

    .cta-section__title {
        font-size: 1.5rem;
    }

    .cta-section__badge {
        font-size: 0.8rem;
        padding: var(--space-sm) var(--space-md);
    }

    .cta-section__card {
        padding: var(--space-lg);
    }

    .cta-section__card-icon {
        font-size: 2rem;
    }
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-3xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    height: 50px;
    margin-bottom: var(--space-lg);
}

.footer__description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--primary-600);
    color: var(--white);
}

.footer__column-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer__links {
    list-style: none;
    padding-left: 0;
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--white);
}

/* === GAS SAFE BADGE STYLES === */
.gas-safe-badge {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    border: 2px solid #059669;
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gas-safe-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    border-color: #10b981;
}

.gas-safe-badge__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.gas-safe-badge__content {
    flex: 1;
}

.gas-safe-badge__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.gas-safe-badge__number {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2px;
}

.gas-safe-badge__verify {
    font-size: 1.2rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* === GAS SAFE SECTION - FULL WIDTH === */
.gas-safe-section-full {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    padding: var(--space-4xl) 0;
    margin: var(--space-4xl) 0;
}

.gas-safe-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-4xl);
    align-items: center;
}

.gas-safe-image-large {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gas-safe-logo-large {
    max-width: 280px;
    width: 100%;
    filter: drop-shadow(0 15px 35px rgba(16, 185, 129, 0.2));
    transition: transform var(--transition-base);
}

.gas-safe-link:hover .gas-safe-logo-large {
    transform: scale(1.08);
}

.gas-safe-info {
    padding: var(--space-xl);
}

.gas-safe-section__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: #dbeafe;
    color: var(--primary-700);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.gas-safe-section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    font-weight: 800;
}

.gas-safe-section__title i {
    color: #10b981;
    margin-right: var(--space-sm);
}

.gas-safe-section__text {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.gas-safe-section__highlight {
    margin: var(--space-xl) 0;
}

.highlight-box {
    background: var(--white);
    border-left: 4px solid #10b981;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.highlight-label {
    color: var(--gray-600);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.highlight-text {
    color: var(--gray-600);
    margin-top: var(--space-md);
    font-size: 0.95rem;
}

.text-link {
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.text-link:hover {
    color: #059669;
    text-decoration: underline;
}

.gas-safe-section__checklist {
    list-style: none;
    margin-top: var(--space-xl);
}

.gas-safe-section__checklist li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
}

.gas-safe-section__checklist i {
    color: #10b981;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .gas-safe-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .gas-safe-badge {
        flex-direction: column;
        text-align: center;
        padding: var(--space-md) var(--space-lg);
    }

    .highlight-number {
        font-size: 2rem;
    }

    .gas-safe-logo-large {
        max-width: 200px;
    }
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer__contact-item i {
    color: var(--primary-400);
    margin-top: 3px;
}

.footer__contact-item a {
    color: var(--gray-300);
}

.footer__contact-item a:hover {
    color: var(--white);
}

.footer__bottom {
    margin-top: var(--space-3xl);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.footer__gas-safe {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer__gas-safe img {
    height: 40px;
}

/* === HOMEPAGE SPECIFIC === */
.home-slider {
    position: relative;
}

.home-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.home-intro__lead {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

/* Gas Safe Section */
.gas-safe-section {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    padding: var(--space-3xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.gas-safe-section__image img {
    height: 120px;
}

.gas-safe-section__content {
    flex: 1;
}

.gas-safe-section__title {
    color: var(--success);
    margin-bottom: var(--space-md);
}

.gas-safe-section__text {
    color: var(--gray-600);
    font-size: 1.05rem;
}

/* === BREADCRUMB SECTION === */
.breadcrumb-section {
    padding-top: 4.5rem !important;
    padding-bottom: var(--space-sm);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .breadcrumb-section {
        padding-top: 4rem !important;
    }
}

@media (max-width: 480px) {
    .breadcrumb-section {
        padding-top: 5.5rem !important;
    }
}

/* === FORM STYLES === */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}
/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero {
        padding: var(--space-3xl) 0;
        min-height: auto;
    }

    .hero__wrapper {
        flex-direction: column;
        gap: var(--space-2xl);
    }

    .hero__main-content {
        flex: 1;
    }

    .hero__trust-cards {
        flex: 1;
        width: 100%;
    }

    .quick-contact-section {
        padding: var(--space-3xl) 0;
    }

    .quick-contact__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero__quote-section {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
        margin-top: var(--space-3xl);
    }

    .quick-quote {
        position: static;
        transform: none;
        max-width: 100%;
        margin-top: 0;
    }

    .quick-whatsapp {
        position: static;
    }

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

    .cta-section__actions {
        justify-content: center !important;
    }

    .cta-section__phone {
        margin-top: var(--space-md);
    }

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

@media (max-width: 768px) {
    /* Top bar - stack on mobile */
    .top-bar {
        padding: var(--space-sm) 0;
    }

    .top-bar__content {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .top-bar__item {
        font-size: 0.85rem;
    }
    /* Header */
    .header__content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header__logo img {
        height: 78px;
    }

    .header__badges {
        display: none;
    }

    /* Navigation */
    .nav {
        position: sticky;
        top: 121px;
    }

    .nav .container {
        display: flex;
        justify-content: flex-end;
    }

    .nav__list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-600);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .nav__list.is-open {
        display: flex;
    }

    .nav__toggle {
        display: block;
    }

    .nav__link {
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--primary-500);
    }

    /* Hero section */
    .hero {
        padding: var(--space-2xl) 0;
        min-height: auto;
    }

    .hero__wrapper {
        flex-direction: column;
        gap: var(--space-2xl);
        text-align: center;
    }

    .hero__main-content {
        flex: 1;
    }

    .hero__trust-cards {
        flex: 1;
        width: 100%;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__actions {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }

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


    .hero__decoration {
        display: none;
    }
    /* Quick Contact Section */
    .quick-contact-section {
        padding: var(--space-2xl) 0;
    }

    .quick-contact__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .quick-quote {
        margin: 0;
        padding: var(--space-lg);
    }

    .quick-whatsapp {
        padding: var(--space-lg);
    }
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Trust bar */
    .trust-bar__content {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .trust-item {
        flex-direction: row;
        text-align: left;
        gap: var(--space-md);
    }

    .trust-item__icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .section {
        padding: var(--space-2xl) 0;
    }
    /* CTA Section */
    .cta-section {
        padding: var(--space-2xl) 0;
    }

    .cta-section__content {
        gap: var(--space-lg);
    }

    .cta-section__title {
        font-size: 1.5rem;
    }

    .cta-section__actions {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
    }

    .cta-section__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-section__phone {
        justify-content: center;
        margin-top: var(--space-sm);
    }

    .cta-section__phone-number {
        font-size: 1.5rem;
    }
    /* Gas safe */
    .gas-safe-section {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl);
    }
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    /* Footer */
    .footer {
        padding: var(--space-2xl) 0 0;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__brand {
        max-width: 100%;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }
}





.footer__column-title {
    margin-top: var(--space-md);
}

.footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
}
/* Contact page fixes */
.contact-grid {
    grid-template-columns: 1fr !important;
}

}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero__title {
        font-size: 1.5rem;
    }

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

    .cta-section__phone-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .quick-quote__title {
        font-size: 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* === HIDE OLD STYLES === */
#header,
#menu-mobile,
#company,
#menu-main,
#footer,
.bxslider,
.expander {
    display: none !important;
}

/* ============================================
   FLOATING CONTACT BUTTONS
   ============================================ */
.floating-contact {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    z-index: 1000;
}

.floating-contact__btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-contact__btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.floating-contact__btn--whatsapp {
    background-color: #25D366;
}

.floating-contact__btn--whatsapp:hover {
    background-color: #128C7E;
}

.floating-contact__btn--phone {
    background-color: #3b82f6; 
}

.floating-contact__btn--phone:hover {
    background-color: #2563eb;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: var(--space-lg);
        right: var(--space-md);
    }

    .floating-contact__btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Hide Google reCAPTCHA Badge */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
}
