/* ====================================
   CSS VARIABLES & RESET
   ==================================== */
:root {
    /* Colors - Modern Luxury */
    --color-primary: #1A1A1A;
    /* Headings: Sharp Dark */
    --color-secondary: #5D5D5D;
    /* Secondary elements: Neutral Gray */
    --color-accent: #B08968;
    /* Accent: Premium Wood/Bronze Tone */
    --color-bg: #FAFAF9;
    /* Background: Warm White */
    --color-white: #FFFFFF;
    --color-text: #404040;
    /* Body Text: Dark Neutral Gray */
    --color-text-light: #737373;
    /* Subtitles: Medium Neutral Gray */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1A1A1A 0%, #404040 100%);
    --gradient-accent: linear-gradient(135deg, #B08968 0%, #C4A484 100%);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(62, 39, 35, 0.1);
    --shadow-md: 0 4px 20px rgba(62, 39, 35, 0.15);
    --shadow-lg: 0 8px 32px rgba(62, 39, 35, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container */
    --container-max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    /* Architectural Dot Grid Pattern */
    background-image:
        radial-gradient(#5D5D5D 0.5px, transparent 0.5px),
        radial-gradient(#5D5D5D 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    /* Very low opacity via keeping the gradient color solid but blending? 
       Actually better to use rgba in gradient for opacity control */
    background-image:
        radial-gradient(rgba(93, 93, 93, 0.15) 1.5px, transparent 1.5px),
        radial-gradient(rgba(93, 93, 93, 0.15) 1.5px, transparent 1.5px);
    background-attachment: fixed;
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ====================================
   UTILITIES
   ==================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section__subtitle {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.section__description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary i {
    color: var(--color-white);
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-block {
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn var(--transition-slow) ease forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.4s;
}

/* ====================================
   HEADER / NAVIGATION
   ==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
}

.nav__logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-normal);
    filter: brightness(0) invert(1);
}

.header.scrolled .nav__logo img {
    height: 50px;
    filter: none;
}

.header.scrolled .nav__link {
    color: var(--color-primary);
}

.header.scrolled .nav__toggle span {
    background: var(--color-primary);
}

.nav__list {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav__link {
    color: var(--color-white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__link i {
    font-size: 1.1rem;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-normal);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
}

.nav__toggle {
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 999;
}

.nav__toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.header.scrolled .nav__toggle span {
    background: var(--color-primary);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media screen and (max-width: 768px) {

    /* Mobile Header - Transparent initially, same as desktop */
    /* .header styles inherited from desktop (transparent -> white on scroll) */

    .nav__logo img {
        height: 45px;
    }

    .header.scrolled .nav__logo img {
        height: 40px;
        filter: none;
    }

    /* Typography adjustments */
    .section__title {
        font-size: 2rem;
    }

    .section__subtitle {
        font-size: 0.85rem;
    }

    .hero__title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Hero Height Adjustment */
    .hero {
        height: 80vh;
        min-height: 500px;
    }

    /* Navigation - Mobile Menu */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-primary);
        padding: var(--spacing-xl) var(--spacing-md);
        transition: var(--transition-normal);
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        margin-top: var(--spacing-xl);
    }

    .nav__item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav__link {
        padding: var(--spacing-md);
        color: var(--color-white);
        font-size: 1.1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .nav__link i {
        font-size: 1.3rem;
        width: 30px;
    }

    .header.scrolled .nav__link {
        color: var(--color-white);
    }

    .nav__close {
        z-index: 1001;
        display: block;
        position: absolute;
        top: var(--spacing-md);
        right: var(--spacing-md);
        font-size: 2rem;
        color: var(--color-white);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__toggle {
        display: flex;
    }

    /* Buttons - larger touch targets */
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 50px;
    }

    /* Section padding */
    .section {
        padding: 2rem 0;
    }

    /* Products Grid */
    .products__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Product Tabs - Better mobile layout */
    .product__tabs {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .tab__button {
        min-width: auto;
        flex: 1;
        padding: var(--spacing-sm) var(--spacing-xs);
        font-size: 0.85rem;
    }

    .tab__button i {
        font-size: 1.5rem;
    }

    .tab__button span {
        font-size: 0.8rem;
    }

    /* Quote Form - Wider on mobile */
    .quote__wrapper {
        max-width: 100%;
        padding: 0;
    }

    .quote__form {
        padding: var(--spacing-md);
        margin: 0 -1rem;
        background: var(--color-white);
        border-radius: 0;
    }

    .quote {
        padding: 2rem 0;
    }

    .form__row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .form__input,
    .form__textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
        min-height: 50px;
    }

    .form__group {
        margin-bottom: var(--spacing-sm);
    }


    /* About Feature Cards - 2 columns on mobile */
    .about__features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }

    .feature__card {
        padding: 1.25rem 0.75rem !important;
    }

    .feature__icon {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .feature__title {
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.3 !important;
    }

    .feature__description {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    /* About Stats */
    .about__stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Contact Cards - 2 columns on mobile like feature cards */
    .contact__info {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .contact__card {
        padding: 1.25rem 0.75rem !important;
    }

    .contact__icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .contact__title {
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
    }

    .contact__detail {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .contact__map iframe {
        height: 350px;
    }

    .contact__map {
        margin-top: 0;
    }

    /* Footer */
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .footer__links {
        flex-direction: column;
        align-items: center;
    }

    .footer__social {
        justify-content: center;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: calc(var(--spacing-sm) + 65px);
        right: var(--spacing-sm);
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
    }
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/bg/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.85) 0%, rgba(93, 64, 55, 0.7) 100%);
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero__subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__scroll {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-white);
    font-size: 0.9rem;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about__content {
    display: grid;
    gap: var(--spacing-lg);
}

.about__description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}


.feature__card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature__card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
    display: inline-block;
    width: fit-content;
}

.feature__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature__description {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--color-white);
}

.stat__item {
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
}

.stat__label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ====================================
   SERVICES SECTION
   ==================================== */
.services {
    background: var(--color-white);
}

/* Service Tabs */
.service__tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.tab__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-bg);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-body);
    color: var(--color-text);
    min-width: 120px;
}

.tab__button i {
    font-size: 2rem;
    color: var(--color-secondary);
    transition: var(--transition-normal);
}

.tab__button span {
    font-weight: 600;
    font-size: 0.9rem;
}

.tab__button:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tab__button:hover i {
    color: var(--color-accent);
}

.tab__button.active {
    background: var(--gradient-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.tab__button.active i {
    color: var(--color-primary);
}

/* Services Grid - 3 columns */
.services__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.service__card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service__card.hidden {
    display: none;
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.service__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service__card:hover .service__image img {
    transform: scale(1.05);
}

.service__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.service__card:hover .service__overlay {
    opacity: 1;
}

.service__content {
    padding: 1.5rem;
}

.service__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.service__description {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.load-more-btn i {
    transition: var(--transition-normal);
}

.load-more-btn:hover i {
    transform: translateY(3px);
}

/* Tablet - 2 columns */
@media screen and (max-width: 968px) {
    .services__container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

/* Mobile - 2 columns & Compact Tabs */
@media screen and (max-width: 768px) {
    .services__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service__card {
        box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.1);
    }

    .service__tabs {
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: 0 var(--spacing-md);
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
    }

    .service__tabs::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .tab__button {
        /* Show exactly 3.5 tabs at a time */
        min-width: calc((100vw - var(--spacing-md) * 2 - 0.5rem * 3) / 3.5);
        max-width: calc((100vw - var(--spacing-md) * 2 - 0.5rem * 3) / 3.5);
        flex: 0 0 auto;
        padding: var(--spacing-sm) var(--spacing-xs);
        font-size: 0.8rem;
        scroll-snap-align: start;
    }

    .tab__button i {
        font-size: 1.3rem;
    }

    .tab__button span {
        font-size: 0.75rem;
    }

    .service__image {
        height: 140px;
    }

    .service__content {
        padding: 1rem;
    }

    .service__title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .service__description {
        font-size: 0.8rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* ====================================
   QUOTE FORM SECTION
   ==================================== */
.quote__wrapper {
    max-width: 92%;
    margin: 0 auto;
    padding: 0;
}

.quote__form {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form__group {
    margin-bottom: var(--spacing-md);
}

.form__label {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--color-bg);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.form__message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    display: none;
}

.form__message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form__message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact {
    background: var(--color-white);
    padding-bottom: 0;
}

.contact__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.contact__card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(150, 129, 96, 0.1);
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.contact__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.contact__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.15);
    border-color: var(--color-accent);
}

.contact__card:hover::before {
    transform: scaleX(1);
}

.contact__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(150, 129, 96, 0.3);
    transition: all var(--transition-normal);
}

.contact__card:hover .contact__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(150, 129, 96, 0.4);
}

.contact__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.contact__detail {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact__detail a {
    color: var(--color-accent);
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact__detail a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Contact Map - Full Width */
.contact__map {
    margin-top: var(--spacing-lg);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.contact__map iframe {
    width: 100%;
    display: block;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer__logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
}

.footer__description {
    line-height: 1.8;
    opacity: 0.9;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    font-weight: 700;
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer__links a {
    opacity: 0.9;
    transition: var(--transition-normal);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--color-accent);
    padding-left: 5px;
}

.footer__social {
    display: flex;
    gap: var(--spacing-sm);
}

.social__link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.social__link:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer__copy {
    opacity: 0.8;
}

/* ====================================
   SCROLL TO TOP BUTTON
   ==================================== */
.scroll-top {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--color-primary);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ====================================
   WHATSAPP FLOATING BUTTON
   ==================================== */
.whatsapp-float {
    position: fixed;
    bottom: calc(var(--spacing-md) + 70px);
    right: var(--spacing-md);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-normal);
    z-index: 998;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media screen and (max-width: 768px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .about__features {
        grid-template-columns: 1fr;
    }

    .products__grid {
        grid-template-columns: 1fr;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .contact__info {
        grid-template-columns: 1fr;
    }

    .contact__map iframe {
        height: 350px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .about__stats {
        grid-template-columns: 1fr;
    }

    .stat__number {
        font-size: 2.5rem;
    }
}

/* ====================================
   TESTIMONIALS SECTION
   ==================================== */
.testimonials {
    background: var(--color-white);
    position: relative;
}

.testimonials__slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.testimonials__track {
    position: relative;
    overflow: hidden;
}

.testimonial__card {
    display: none;
    background: var(--color-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.testimonial__card.active {
    display: block;
    opacity: 1;
}

.testimonial__rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    color: #FFD700;
}

.testimonial__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-style: italic;
    min-height: 120px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-white);
}

.testimonial__details {
    text-align: left;
}

.testimonial__name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.testimonial__role {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Slider Navigation */
.testimonial__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    border: 2px solid var(--color-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.testimonial__nav:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.testimonial__nav--prev {
    left: -25px;
}

.testimonial__nav--next {
    right: -25px;
}

/* Slider Dots */
.testimonial__dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.testimonial__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-text-light);
    opacity: 0.3;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.testimonial__dot.active {
    opacity: 1;
    background: var(--color-accent);
    transform: scale(1.2);
}

.testimonial__dot:hover {
    opacity: 0.7;
}

/* ====================================
   BEFORE/AFTER GALLERY
   ==================================== */
.before-after {
    background: var(--color-bg);
}

.before-after__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.before-after__item {
    position: relative;
    background: linear-gradient(145deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-slow);
    border: 2px solid transparent;
}

.before-after__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    border-color: var(--color-accent);
}

.before-after__images {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #000;
    cursor: ew-resize;
    user-select: none;
    --slider-position: 50%;
}

/* Split-screen effect for before/after */
.before-after__image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: none;
    pointer-events: none;
}

.before-after__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Before image - left side */
.before-after__image--before {
    left: 0;
    clip-path: inset(0 50% 0 0);
    z-index: 1;
}

/* After Image */
.before-after__image--after {
    left: 0;
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

/* ====================================
   GALLERY MODAL
   ==================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal__content {
    position: relative;
    background: var(--color-white);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-lg);
    z-index: 2001;
    overflow-y: auto;
    transform: translateY(20px) scale(0.95);
    transition: all var(--transition-normal);
}

.modal.active .modal__content {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2rem;
    color: var(--color-text-light);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal__close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.modal__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.modal__title-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 0;
    /* Handled by group */
}

#modalIcon {
    font-size: 1.6rem;
    color: var(--color-accent);
}

.modal__subtitle {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.modal__gallery-container {
    margin-bottom: var(--spacing-lg);
    width: 100%;
    /* Ensure slider doesn't overflow */
    overflow: hidden;
}

/* Modal Slider Variables */
.modal__swiper {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    --swiper-navigation-color: var(--color-white);
    --swiper-pagination-color: var(--color-accent);
    --swiper-navigation-size: 20px;
}

.modal__swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.modal__swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* Modal Arrows */
.modal-next,
.modal-prev {
    background: transparent;
    width: 56px;
    /* Increased from 45px */
    height: 56px;
    /* Increased from 45px */
    border-radius: 50%;
    transition: all var(--transition-normal);
    /* Ensure flex centering works for the :after element */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Add shadow to arrow for visibility since background is gone */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.modal-next:hover,
.modal-prev:hover {
    background: transparent;
    color: var(--color-accent);
    transform: scale(1.2);
}

/* Ensure the arrow icon inside is centered and sized correctly */
.modal-next:after,
.modal-prev:after {
    font-size: 1.5rem !important;
    /* Force scale down */
    font-weight: bold;
}

.modal-pagination .swiper-pagination-bullet-active {
    background: var(--color-accent);
}

.modal__footer {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--spacing-lg);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */


/* Center divider line */
.before-after__images::before {
    content: '';
    position: absolute;
    left: var(--slider-position, 50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
            transparent 0%,
            var(--color-accent) 20%,
            var(--color-accent) 80%,
            transparent 100%);
    z-index: 10;
    transform: translateX(-50%);
    transition: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    pointer-events: none;
}

/* Slider handle */
.before-after__images::after {
    content: '⟷';
    position: absolute;
    left: var(--slider-position, 50%);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: var(--color-accent);
    border: 3px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-white);
    z-index: 15;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background var(--transition-normal), transform 0.1s ease;
    pointer-events: none;
}

.before-after__images:active::after {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-primary);
}

/* Labels with unique styling */
.before-after__label {
    position: absolute;
    top: var(--spacing-md);
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.before-after__label--before {
    left: 0;
    background: linear-gradient(90deg,
            rgba(62, 39, 35, 0.95) 0%,
            rgba(62, 39, 35, 0.8) 100%);
    color: var(--color-white);
    border-right: 3px solid var(--color-accent);
}

.before-after__label--after {
    right: 0;
    left: auto;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background: linear-gradient(270deg,
            rgba(212, 175, 55, 0.95) 0%,
            rgba(212, 175, 55, 0.8) 100%);
    color: var(--color-primary);
    border-left: 3px solid var(--color-primary);
    opacity: 0.85;
}

.before-after__item:hover .before-after__label {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.before-after__item:hover .before-after__label--after {
    opacity: 1;
}

/* Content area with unique styling */
.before-after__content {
    padding: var(--spacing-lg);
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 100%);
    position: relative;
}

.before-after__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--spacing-md);
    right: var(--spacing-md);
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-accent) 50%,
            transparent 100%);
}

.before-after__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.before-after__title::before {
    content: '✦';
    color: var(--color-accent);
    font-size: 1rem;
}

.before-after__description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    padding-left: 1.5rem;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact {
    background: var(--color-white);
}

.contact__content {
    max-width: 92%;
    margin: 0 auto;
}

.contact__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.contact__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(150, 129, 96, 0.1);
    background: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.contact__item:last-child {
    border-bottom: 2px solid rgba(150, 129, 96, 0.1);
}

.contact__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-accent);
    transition: width var(--transition-normal);
    z-index: 0;
}

.contact__item:hover::before {
    width: 100%;
}

.contact__item:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(150, 129, 96, 0.2);
}

.contact__item-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(150, 129, 96, 0.1) 0%, rgba(150, 129, 96, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-accent);
    transition: all var(--transition-normal);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.contact__item:hover .contact__item-icon {
    background: var(--color-white);
    color: var(--color-primary);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(150, 129, 96, 0.3);
}

.contact__item-content {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.contact__item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.contact__item:hover .contact__item-title {
    color: var(--color-white);
}

.contact__item-detail {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    transition: color var(--transition-normal);
}

.contact__item:hover .contact__item-detail {
    color: var(--color-white);
}

.contact__item-detail a {
    color: var(--color-accent);
    font-weight: 500;
    transition: var(--transition-normal);
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.contact__item:hover .contact__item-detail a {
    color: var(--color-white);
    border-bottom-color: var(--color-white);
}

.contact__item-detail a:hover {
    opacity: 0.9;
}

/* Contact Map */
.contact__map {
    width: 100%;
    margin-top: var(--spacing-xl);
}

.contact__map iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contact__list {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .contact__item {
        padding: var(--spacing-lg);
    }

    .contact__item-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .contact__item-title {
        font-size: 1.15rem;
    }

    .contact__item-detail {
        font-size: 0.95rem;
    }

    .contact__map iframe {
        height: 350px;
    }
}

/* ====================================
   FLOATING ACTION BUTTONS
   ==================================== */
.floating-actions {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 998;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    text-decoration: none;
    color: var(--color-white);
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.float-btn--call {
    background: linear-gradient(135deg, var(--color-primary) 0%, #5D4037 100%);
    animation: pulse-call 2s infinite;
}

.float-btn--call:hover {
    box-shadow: 0 6px 30px rgba(62, 39, 35, 0.6);
}

.float-btn--quote {
    background: var(--gradient-accent);
    animation: pulse-quote 2s infinite 0.5s;
}

.float-btn--quote:hover {
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.float-btn--whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    font-size: 2rem;
    animation: pulse-whatsapp 2s infinite 1s;
}

.float-btn--whatsapp:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-call {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(62, 39, 35, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(62, 39, 35, 0.6);
    }
}

@keyframes pulse-quote {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(212, 175, 55, 0.6);
    }
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ====================================
   FREE CONSULTATION BADGE
   ==================================== */
.hero__cta {
    display: inline-block;
    position: relative;
}

.btn__badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #FFD700;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6);
    }
}

/* ====================================
   RESPONSIVE - NEW FEATURES
   ==================================== */
@media screen and (max-width: 768px) {

    /* Before/After */
    .before-after__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .before-after__images {
        height: 200px;
    }

    /* Floating Actions */
    .floating-actions {
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
        gap: 0.75rem;
    }

    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .float-btn--whatsapp {
        font-size: 1.8rem;
    }

    /* Free Consultation Badge */
    .btn__badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        top: -12px;
        right: -12px;
    }
}