/* ===================================
   CHAVEIRO LISBOA - DESIGN SYSTEM
   =================================== */

/* === IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
    /* Colors - Professional & Trustworthy */
    --color-primary-dark: #0B3C5D;
    --color-primary-medium: #1D6FA3;
    --color-primary-light: #328CC1;
    --color-text-dark: #2E2E2E;
    --color-text-medium: #4A4A4A;
    --color-text-light: #6B6B6B;
    --color-bg-light: #F4F6F8;
    --color-bg-white: #FFFFFF;
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #1EBE56;
    --color-accent: #F39C12;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Font Sizes */
    --text-xs: 0.875rem;
    --text-sm: 1rem;
    --text-base: 1.125rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 1.875rem;
    --text-3xl: 2.25rem;
    --text-4xl: 3rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--text-4xl);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
}

h3 {
    font-size: var(--text-xl);
    font-weight: 600;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--color-text-medium);
}

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

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

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

.section--alt {
    background-color: var(--color-bg-light);
}

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

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

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary-medium), var(--color-primary-light));
    color: var(--color-bg-white);
    animation: btn-glow 2.5s ease-in-out infinite;
}

@keyframes btn-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(29, 111, 163, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(29, 111, 163, 0.6), 0 0 30px rgba(50, 140, 193, 0.3);
    }
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-medium));
    color: var(--color-bg-white);
    animation: none;
    box-shadow: 0 6px 30px rgba(29, 111, 163, 0.5);
}

.btn--whatsapp {
    background: linear-gradient(135deg, var(--color-whatsapp), #2EE86D);
    color: var(--color-bg-white);
}

.btn--whatsapp:hover {
    background: linear-gradient(135deg, #2EE86D, var(--color-whatsapp));
    color: var(--color-bg-white);
}

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

.btn--icon {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

/* === HEADER === */
.header {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-medium) 100%);
    color: var(--color-bg-white);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.header__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-bg-white);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.logo-text {
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-primary-dark);
    text-shadow:
        2px 2px 0 #fff,
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;
}

.logo-highlight {
    color: var(--color-primary-light);
    font-weight: 800;
    text-shadow:
        2px 2px 0 #fff,
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;
}

/* New Hero Logo */
.hero__logo-main {
    height: 180px;
    /* Large visible size */
    width: auto;
    max-width: 90%;
    object-fit: contain;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    animation: fadeInUp 0.6s ease;
}

.footer__logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

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

.header__phone {
    color: var(--color-bg-white);
    font-weight: 600;
    font-size: var(--text-lg);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: transform var(--transition-base);
}

.header__phone:hover {
    transform: scale(1.05);
    color: var(--color-bg-white);
}

/* === NAVIGATION === */
.nav {
    margin-left: auto;
    margin-right: var(--space-lg);
}

.nav__list {
    display: flex;
    gap: var(--space-md);
    list-style: none;
    align-items: center;
}

.nav__link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: var(--text-base);
    text-decoration: none;
    transition: color var(--transition-base);
}

.nav__link:hover {
    color: var(--color-bg-white);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-bg-white);
    font-size: var(--text-2xl);
    cursor: pointer;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-bg-white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: var(--space-xs) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__menu li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--color-text-dark);
    font-size: var(--text-sm);
    transition: background var(--transition-fast);
}

.dropdown__menu li a:hover {
    background: var(--color-bg-light);
    color: var(--color-primary-medium);
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav__toggle {
        display: block;
    }

    .nav__list {
        position: fixed;
        top: 70px;
        /* Header height */
        left: 0;
        right: 0;
        background: var(--color-primary-dark);
        flex-direction: column;
        padding: var(--space-lg);
        transform: translateY(-100%);
        transition: transform var(--transition-base);
        z-index: 99;
        opacity: 0;
        pointer-events: none;
    }

    .nav__list.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .dropdown__menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        color: white;
        box-shadow: none;
        margin-top: var(--space-sm);
        display: none;
    }

    .dropdown.active .dropdown__menu {
        display: block;
    }

    .dropdown__menu li a {
        color: rgba(255, 255, 255, 0.8);
    }

    .dropdown__menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(-45deg, var(--color-primary-dark), var(--color-primary-medium), #1a5276, var(--color-primary-dark));
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    color: var(--color-bg-white);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero-locksmith.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.75;
    z-index: 0;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1);
    }

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

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(50, 140, 193, 0.4), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(11, 60, 93, 0.5), transparent 50%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
    animation: fadeInDown 0.6s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero__title {
    color: var(--color-bg-white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease 0.2s both;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.4s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.6s both;
}

/* Mobile responsive for hero */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--space-lg) 0;
    }

    .hero__badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: var(--space-sm);
    }

    .hero__title {
        font-size: 1.5rem;
        margin-bottom: var(--space-sm);
    }

    .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--space-md);
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
        padding: 0 var(--space-md);
        gap: var(--space-sm);
    }

    .hero__cta .btn {
        width: 100%;
        padding: var(--space-sm) var(--space-md);
    }

    .hero__logo-main {
        height: 120px;
        /* Smaller on mobile */
        margin-bottom: var(--space-sm);
    }
}

/* === SERVICES SECTION === */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    display: block;
    text-decoration: none;
    color: inherit;
}

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

.service-card__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--color-bg-light), #e0e5eb);
}

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

.service-card:hover .service-card__image img {
    transform: scale(1.08);
}

.service-card__content {
    padding: var(--space-lg);
}

.service-card__title {
    font-size: var(--text-lg);
    color: var(--color-primary-dark);
    margin-bottom: var(--space-sm);
}

.service-card__description {
    color: var(--color-text-medium);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: 0;
}

/* === BRANDS SECTION === */
.brands__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.brand-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 1px solid #eee;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.brand-name {
    font-weight: 700;
    color: var(--color-text-medium);
    font-size: var(--text-lg);
}

/* === WHY CHOOSE US === */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.feature {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.feature__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary-medium), var(--color-primary-light));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: var(--text-2xl);
    color: var(--color-bg-white);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.feature:hover .feature__icon {
    transform: scale(1.1) rotate(5deg);
}

.feature__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.feature__description {
    color: var(--color-text-medium);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

/* === COVERAGE AREA === */
.coverage {
    text-align: center;
}

.coverage__cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.city-badge {
    background: var(--color-bg-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.city-badge:hover {
    background: var(--color-primary-medium);
    color: var(--color-bg-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* === CTA SECTION === */
.cta {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-medium) 100%);
    color: var(--color-bg-white);
    text-align: center;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta__title {
    color: var(--color-bg-white);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.cta__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.cta__buttons {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background-color: #1a202c;
    /* Dark slate */
    color: #e2e8f0;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-lg);
    font-size: 0.95rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer__column h4 {
    color: var(--color-bg-white);
    font-size: var(--text-lg);
    margin-bottom: 68px;
    border-bottom: 2px solid var(--color-primary-medium);
    padding-bottom: var(--space-xs);
    display: inline-block;
}

.footer__logo-img {
    height: 85px;
    margin-bottom: 0;
    width: auto;
}

.footer__description {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer__links {
    list-style: none;
}

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

.footer__link {
    color: #cbd5e0;
    text-decoration: none;
    transition: color var(--transition-base);
    display: block;
}

.footer__link:hover {
    color: var(--color-primary-light);
    transform: translateX(4px);
}

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

.footer__contact-icon {
    font-size: 1.2rem;
    color: var(--color-primary-light);
}

.footer__bottom {
    border-top: 1px solid #2d3748;
    padding-top: var(--space-lg);
    text-align: center;
    color: #718096;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

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

.footer__bottom-link {
    color: #718096;
    text-decoration: none;
}

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

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float__button {
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
    transform: scale(0);
}

.whatsapp-float__button.visible {
    transform: scale(1);
}

.whatsapp-float__button:hover {
    transform: scale(1.1);
    background-color: var(--color-whatsapp-hover);
}

@media (max-width: 768px) {
    .cta__buttons {
        flex-direction: column;
    }

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

    .footer__column h4 {
        margin-left: auto;
        margin-right: auto;
    }

    .footer__contact-item {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .footer__bottom-links {
        justify-content: center;
    }
}


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

.cta__title {
    color: var(--color-bg-white);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.cta__subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.cta__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: var(--color-primary-dark);
    color: var(--color-bg-white);
    padding: var(--space-xl) 0 var(--space-md);
    text-align: center;
}

.footer__content {
    margin-bottom: var(--space-lg);
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer__link {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-lg);
    transition: color var(--transition-base);
}

.footer__link:hover {
    color: var(--color-bg-white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-md);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 1000;
}

.whatsapp-float__button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-whatsapp), #2EE86D);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float__button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-float__icon {
    font-size: var(--text-2xl);
    color: var(--color-bg-white);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

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

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

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

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

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
    :root {
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
        --text-2xl: 1.5rem;
        --space-3xl: 3rem;
    }

    .header__contact {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero {
        min-height: 400px;
        padding: var(--space-xl) 0;
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

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

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

    .whatsapp-float {
        bottom: var(--space-md);
        right: var(--space-md);
    }

    .whatsapp-float__button {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .header__logo {
        font-size: var(--text-base);
    }

    .header__phone {
        font-size: var(--text-sm);
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

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

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* === ABOUT SECTION (SPLIT WITH BLUE BG) === */
.about {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-medium) 100%);
    color: var(--color-bg-white);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about__content h2 {
    color: var(--color-bg-white);
    margin-bottom: var(--space-md);
}

.about__content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image img {
    width: 100%;
    height: auto;
    display: block;
}

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

    .about__image {
        order: -1;
    }
}

/* === GOOGLE REVIEWS SECTION === */
.reviews__header {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.reviews__google-badge {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-bg-white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.reviews__google-icon {
    flex-shrink: 0;
}

.reviews__rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.reviews__score {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text-dark);
}

.reviews__stars-display {
    color: #FBBC05;
    font-size: var(--text-lg);
    letter-spacing: 2px;
}

.reviews__count {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

/* Slider */
.reviews__slider {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews__page {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding: 0 var(--space-xs);
    box-sizing: border-box;
}

/* Review Card - Google Style */
.review-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-primary-light);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.review-card__info {
    flex: 1;
    min-width: 0;
}

.review-card__name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-card__verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #4285F4;
    color: white;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
}

.review-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: 2px;
}

.review-card__reviews-count {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

.review-card__rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.review-card__stars {
    color: #FBBC05;
    font-size: var(--text-base);
    letter-spacing: 1px;
}

.review-card__date {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

.review-card__text {
    font-size: var(--text-sm);
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex: 1;
}

.review-card__service {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: auto;
}

.review-card__service-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--color-bg-light);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--color-text-medium);
}

/* Navigation */
.reviews__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.reviews__btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-primary-medium);
    background: var(--color-bg-white);
    color: var(--color-primary-medium);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.reviews__btn:hover {
    background: var(--color-primary-medium);
    color: var(--color-bg-white);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.reviews__btn:active {
    transform: scale(0.98);
}

.reviews__dots {
    display: flex;
    gap: var(--space-xs);
}

.reviews__dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all var(--transition-base);
}

.reviews__dot:hover {
    background: rgba(0, 0, 0, 0.3);
}

.reviews__dot.active {
    background: var(--color-primary-medium);
    width: 32px;
}

/* Footer Link */
.reviews__footer {
    text-align: center;
    margin-top: var(--space-xl);
}



.reviews__google-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary-medium);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    background: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.reviews__google-link:hover {
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .reviews__page {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews__page .review-card:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .reviews__google-badge {
        flex-direction: column;
        text-align: center;
        padding: var(--space-md);
    }

    .reviews__stars-main {
        justify-content: center;
    }

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

    .reviews__page .review-card:nth-child(2),
    .reviews__page .review-card:nth-child(3) {
        display: none;
    }

    .review-card {
        padding: var(--space-md);
    }

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

    .reviews__btn {
        width: 44px;
        height: 44px;
    }
}

/* =========================================
   Cookie Consent Banner (Floating Card)
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 400px;
    width: calc(100% - 48px);
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    padding: 24px;
    border-radius: 16px;
    transform: translateY(120%);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-medium);
    line-height: 1.5;
}

.cookie-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.cookie-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 10px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        width: calc(100% - 32px);
        padding: 20px;
    }

    .cookie-buttons {
        grid-template-columns: 1fr;
    }
}