/* ==========================================================================
   STYLE SYSTEM - MARMORARIA ELITE FERREIRA
   Design: Luxury, Mineral-Sophisticated, High-End
   Colors Extracted from Logo:
   - Primary Accent: #F37A1B (Laranja Imperial/Cobre)
   - Secondary Accent: #D4952A (Ouro Escovado)
   - Neutral Dark: #201510 (Mármore Bronze Escuro)
   - Neutral Light: #FAF7F5 (Off-white Creme)
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --primary: #F37A1B;
    --primary-hover: #D8630C;
    --gold: #D4952A;
    --gold-hover: #B87E1E;
    --dark: #201510;
    --dark-rgb: 32, 21, 16;
    --dark-gray: #3A2F29;
    --light: #FAF7F5;
    --white: #FFFFFF;
    --border-color: rgba(212, 149, 42, 0.15);
    
    --font-serif: 'Cinzel', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 15px 35px rgba(32, 21, 16, 0.06);
    --shadow-hover: 0 25px 50px rgba(32, 21, 16, 0.12);
    --border-radius: 8px;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

address {
    font-style: normal;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* --- Reusable Components (Buttons, Section Layouts) --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

@media (max-width: 768px) {
    .section-container {
        padding: 60px 20px;
    }
}

.section-header {
    margin-bottom: 60px;
}

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

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-orange-gold {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(243, 122, 27, 0.25);
}

.btn-orange-gold:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(243, 122, 27, 0.35);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(212, 149, 42, 0.2);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 149, 42, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.75rem;
    border-radius: 4px;
}

.btn-gold-link {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-gold-link:hover {
    background-color: var(--gold);
    color: var(--white);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-text .arrow {
    margin-left: 8px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-hover);
}

.btn-text:hover .arrow {
    transform: translateX(6px);
}


/* --- Header / Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-header.scrolled {
    background-color: rgba(32, 21, 16, 0.96); /* Dark neutral base */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(212, 149, 42, 0.15);
    padding: 10px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.main-header.scrolled .header-container {
    padding: 10px 24px;
}

/* Custom Logo */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-monogram {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    border: 2.5px solid var(--gold);
    padding: 4px 10px;
    border-radius: 4px;
    position: relative;
    background-color: rgba(32, 21, 16, 0.4);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo-monogram .letter-e {
    color: var(--primary); /* Glowing Imperial Orange */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.logo-monogram .letter-f {
    color: var(--white); /* White Carrara */
    margin-left: -2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    color: var(--white);
}

.logo-subtitle {
    font-size: 0.62rem;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
}

/* Navbar Menu */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Mobile Menu Styles --- */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 86vw);
        height: 100vh;
        background-color: var(--dark);
        border-left: 1px solid var(--border-color);
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.25);
        transform: translateX(100%);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .hamburger-btn {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .btn-header-cta {
        display: none;
    }
}


/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('assets/cozinha_granito_claro.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 21, 16, 0.9) 0%, rgba(32, 21, 16, 0.45) 50%, rgba(32, 21, 16, 0.85) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border-left: 3px solid var(--primary);
    padding-left: 12px;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 760px;
        height: auto;
        overflow: hidden;
        align-items: flex-start;
        padding-top: 120px;
        background-attachment: scroll;
    }

    .hero-container {
        padding: 0 20px 145px;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-content {
        max-width: 100%;
        min-width: 0;
    }

    .hero-badge {
        font-size: 0.74rem;
        letter-spacing: 1.6px;
        line-height: 1.55;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2.35rem, 12vw, 3.1rem);
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        white-space: normal;
        text-align: center;
    }
}

/* Quick Info Bar */
.quick-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(32, 21, 16, 0.95);
    border-top: 1.5px solid var(--gold);
    z-index: 10;
}

.info-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: flex-start;
    gap: 80px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 768px) {
    .quick-info-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .info-bar-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 16px 20px;
    }

    .info-item {
        min-width: 0;
        gap: 10px;
    }

    .info-icon {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
    }

    .info-label {
        font-size: 0.68rem;
        letter-spacing: 1.2px;
    }

    .info-value {
        font-size: 0.88rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 380px) {
    .hero-container {
        padding-bottom: 205px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-badge {
        font-size: 0.68rem;
        letter-spacing: 1.2px;
    }

    .info-bar-container {
        grid-template-columns: 1fr;
    }
}


/* --- Services Section --- */
.services-section {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.service-card {
    background-color: var(--light);
    border: 1.5px solid transparent;
    padding: 50px 35px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.service-card-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(243, 122, 27, 0.08);
    border-radius: 8px;
    color: var(--primary);
    margin-bottom: 30px;
    transition: var(--transition);
}

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

.service-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card-description {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.service-card:hover {
    background-color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-color);
}

.service-card:hover::before {
    height: 100%;
}

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


/* --- About Section --- */
.about-section {
    background-color: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    object-fit: cover;
    height: 480px;
    border: 1px solid var(--border-color);
}

.about-image-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background-color: var(--dark);
    border: 2px solid var(--gold);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.badge-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-text {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-image {
        height: 320px;
    }
    
    .about-image-badge {
        right: 10px;
        bottom: -20px;
        padding: 20px;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
}

.about-text-content {
    display: flex;
    flex-direction: column;
}

.about-paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-paragraph.highlight-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark);
    border-left: 3px solid var(--gold);
    padding-left: 16px;
    margin-bottom: 24px;
}

.about-signature-box {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(32, 21, 16, 0.1);
    display: flex;
    align-items: center;
}

.signature-info {
    display: flex;
    flex-direction: column;
}

.signature-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.signature-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
}


/* --- Products Section --- */
.products-section {
    background-color: var(--white);
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}

.products-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--light);
    border: 1px solid var(--light);
    color: var(--dark-gray);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 16px rgba(243, 122, 27, 0.2);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.product-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(32, 21, 16, 0.05);
    transition: var(--transition);
}

.product-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--dark);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid var(--gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.product-info {
    padding: 30px;
}

.product-item-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-item-description {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 24px;
    min-height: 50px;
}

/* Hover effects */
.product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-color);
}

.product-item:hover .product-img {
    transform: scale(1.08);
}


/* --- How We Work (Process) Section --- */
.process-section {
    background-color: var(--light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.process-card {
    background-color: var(--white);
    padding: 50px 35px;
    border-radius: var(--border-radius);
    border: 1.5px solid rgba(32, 21, 16, 0.04);
    position: relative;
    transition: var(--transition);
}

.process-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(243, 122, 27, 0.15); /* Orange-gold transparent base */
    line-height: 1;
    display: block;
    margin-bottom: 20px;
    transition: var(--transition);
}

.process-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.process-card-description {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-color);
}

.process-card:hover .process-number {
    color: var(--primary);
    transform: scale(1.1);
}


/* --- Testimonials Section (Carousel) --- */
.testimonials-section {
    background-color: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(243, 122, 27, 0.04);
    top: -150px;
    left: -150px;
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.stars {
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.google-badge {
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
}

.google-icon {
    width: 18px;
    height: 18px;
}

.testimonial-quote {
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.author-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.slider-control-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.slider-control-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary);
    width: 20px;
    border-radius: 4px;
}

.google-view-all-container {
    text-align: center;
    margin-top: 50px;
}

.btn-google-reviews {
    gap: 12px;
    font-size: 0.85rem;
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-google-reviews:hover {
    background-color: var(--white);
    color: var(--dark);
}


/* --- Contact Section & Form --- */
.contact-section {
    background-color: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: flex-start;
    min-width: 0;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-person {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 20px 24px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.contact-label {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.contact-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.contact-methods-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.method-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(212, 149, 42, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.method-icon.orange-icon {
    background-color: rgba(243, 122, 27, 0.08);
    color: var(--primary);
}

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

.method-details {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.method-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

.method-link:hover {
    color: var(--primary);
}

.method-address {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Form Styling */
.form-container-box {
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

@media (max-width: 576px) {
    .contact-section .section-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-form-column,
    .contact-info-column {
        min-width: 0;
        width: 100%;
    }

    .form-container-box {
        padding: 28px 16px;
        box-shadow: 0 12px 30px rgba(32, 21, 16, 0.12);
    }
}

.form-box-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.form-box-subtitle {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 35px;
}

.budget-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-width: 0;
}

@media (max-width: 576px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 14px 18px;
    border: 1.5px solid rgba(32, 21, 16, 0.1);
    background-color: var(--light);
    color: var(--dark);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--dark) 50%), linear-gradient(135deg, var(--dark) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background-color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(243, 122, 27, 0.08);
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
    min-width: 0;
}

.form-group-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.82rem;
    color: var(--dark-gray);
    cursor: pointer;
    line-height: 1.4;
    min-width: 0;
}

.form-link-inline {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.btn-whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex: 0 0 20px;
}

@media (max-width: 576px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 14px;
    }

    .form-group select {
        padding-right: 38px;
        background-position: calc(100% - 16px) 50%, calc(100% - 10px) 50%;
    }

    .form-group label {
        letter-spacing: 1.2px;
    }

    .form-group-checkbox {
        gap: 10px;
    }

    .btn-block {
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
        gap: 8px;
        white-space: normal;
        text-align: center;
    }
}


/* --- Footer Section --- */
.main-footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    border-top: 2px solid var(--gold);
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 20px;
    }
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.logo-area.light-logo .logo-title {
    color: var(--white);
}

.logo-area.light-logo .logo-subtitle {
    color: var(--gold);
}

.footer-brand-description {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column-title {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-column a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-container.bottom-container {
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.copyright-text {
    font-size: 0.85rem;
}

.dev-text {
    font-size: 0.85rem;
}

.dev-name {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}


/* --- Floating WhatsApp Button --- */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-floating-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-floating:hover {
    background-color: #20BA5A;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

@media (max-width: 576px) {
    .whatsapp-floating {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    
    .whatsapp-floating-icon {
        width: 28px;
        height: 28px;
    }
}


/* --- Keyframe Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
