/* ============================================
   ANAS MARBLE - Main Stylesheet
   ============================================ */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #a69472;        /* Warm gold */
    --primary-dark: #6b5c41;   /* Warm brown */
    --charcoal: #34393d;       /* Dark charcoal */
    --stone: #6f7a82;          /* Stone grey */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f6f3;       /* Warm off-white */
    --bg-dark: #1e2022;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--bg-white);
}


/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.043em;
    margin-bottom: 1.5rem;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); text-transform: uppercase; letter-spacing: -0.043em; }
h2 { font-size: clamp(2rem, 5vw, 4rem); text-transform: uppercase; letter-spacing: -0.043em; }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.043em; }

p, label, input, select, textarea, a, li, address {
    font-family: Arial, Helvetica, sans-serif;
}

p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.bold { font-weight: 600; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo-icon {
    height: 32px;
    width: auto;
    display: block;
}

.nav-logo-text {
    height: 28px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-cta {
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--charcoal);
    border-radius: 50px;
}

.nav-cta:hover {
    background-color: var(--charcoal) !important;
    color: #fff !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid transparent;
}

.btn-dark {
    background-color: var(--charcoal);
    color: #fff;
    border-color: var(--charcoal);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-gold {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(166,148,114,0.2);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--charcoal);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 8rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.section-full {
    padding: 8rem 4rem;
    background-color: var(--bg-light);
}

.section-full .inner {
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
    font-family: Arial, Helvetica, sans-serif;
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12rem 4rem 6rem;
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.page-header .section-subtitle {
    margin-bottom: 1rem;
}

.page-header h1 {
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ============================================
   HERO — slideshow only
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

@media (max-width: 1024px) {
    .hero-slide {
        background-size: cover;
        background-position: top center;
    }
}

.hero-slide.active {
    opacity: 1;
}
/* Hero slide overlay — all screen sizes */
.hero-slide-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    inset: 0;
    padding: 0 4rem 6rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        transparent 100%
    );
    text-align: center;
    z-index: 1;
}

.hero-slide-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

.hero-slide-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .hero-slide-overlay {
        padding: 0 2rem 6rem;
    }

    .hero-slide-text {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-slide-icon {
        width: 48px;
        height: 48px;
    }
}

/* ============================================
   HERO INTRO — text section below slideshow
   ============================================ */
.hero-intro {
    background-color: var(--bg-white);
    padding: 8rem 2rem;
    text-align: center;
}

.hero-intro-inner {
    max-width: 860px;
    margin: 0 auto;
}

.hero-intro-inner h1 {
    margin-bottom: 2rem;
    line-height: 1.05;
    color: var(--text-dark);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.8;
    font-family: Arial, Helvetica, sans-serif;
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
    display: inline-block;
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: Arial, Helvetica, sans-serif;
}

.btn-outline-dark:hover {
    background-color: var(--charcoal);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-intro {
        padding: 5rem 2rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .btn-outline-dark {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    padding: 5rem 4rem;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stats-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.stat-plus.visible {
    opacity: 1;
}

.stat-label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
    margin-top: 0.6rem;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(0,0,0,0.12);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stats-bar {
        padding: 4rem 2rem;
    }
    .stats-bar-inner {
        gap: 2.5rem;
    }
    .stat-divider {
        display: none;
    }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    padding: 4rem;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-bar-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.trust-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.trust-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-top: 0.5rem;
    display: block;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(0,0,0,0.1);
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    justify-items: center;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

.card {
    background-color: transparent;
    padding: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.8rem;
}

.card h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card p {
    color: var(--text-light);
    font-size: 1.08rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 420px;
    background-color: var(--bg-light);
}

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

.product-card:hover img {
    transform: scale(1.07);
}

.product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(30,32,34,0.92) 0%, transparent 100%);
    color: #fff;
    transition: var(--transition);
}

.product-card-overlay h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.product-card-overlay p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-weight: 300;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 480px;
    background-color: var(--bg-light);
}

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

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(166, 148, 114, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2.5rem;
}

/* ============================================
   OUR RANGE CAROUSEL
   ============================================ */
.range-section {
    padding: 8rem 0 6rem;
    background-color: var(--bg-white);
    overflow: hidden;
}

.range-header {
    text-align: center;
    padding: 0 4rem;
    margin-bottom: 4rem;
}

.range-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
}

.range-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    padding: 0 7.5vw;
    scroll-padding-left: 7.5vw;
}

.range-carousel::-webkit-scrollbar {
    display: none;
}

.range-carousel.grabbing {
    cursor: grabbing;
}

/* Desktop */
.range-card {
    flex: 0 0 85vw;
    width: 85vw;
    height: calc(85vw * 9 / 16);
    max-width: 1400px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}

/* Portrait mode — mobile images, tall cards */
@media (orientation: portrait) and (max-width: 1024px) {
    .range-header {
        padding: 0 2rem;
    }
    .range-carousel {
        padding: 0 5vw;
        scroll-padding-left: 5vw;
        gap: 0.75rem;
    }
    .range-card {
        flex: 0 0 75vw !important;
        width: 75vw !important;
        height: calc(75vw * 16 / 9) !important;
        max-width: none !important;
        max-height: none !important;
        border-radius: 4px;
        background-size: cover;
        background-position: center center;
    }
    .range-arrow {
        display: none;
    }
}

@media (orientation: portrait) and (max-width: 600px) {
    .range-card {
        flex: 0 0 88vw !important;
        width: 88vw !important;
        height: calc(88vw * 16 / 9) !important;
    }
}

/* Landscape mode — desktop images, landscape cards */
@media (orientation: landscape) and (max-width: 1024px) {
    .range-header {
        padding: 0 2rem;
    }
    .range-carousel {
        padding: 0 5vw;
        scroll-padding-left: 5vw;
        gap: 0.75rem;
    }
    .range-card {
        flex: 0 0 75vw !important;
        width: 75vw !important;
        height: calc(75vw * 9 / 16) !important;
        max-width: none !important;
        max-height: none !important;
        border-radius: 4px;
        background-size: cover;
        background-position: center center;
    }
    .range-arrow {
        display: none;
    }
}

/* ============================================
   WHY ANAS MARBLE
   ============================================ */
.why-section {
    padding: 8rem 4rem;
    background-color: var(--bg-light);
}

.why-inner {
    max-width: 860px;
    margin: 0 auto;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 5rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.why-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.why-text h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.why-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
    .why-section {
        padding: 5rem 2rem;
    }
    .why-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    .why-list {
        gap: 3rem;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background-color: var(--charcoal);
    padding: 8rem 4rem;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.cta-section .highlight {
    color: var(--primary);
}
/* ============================================
   CTA BRIDGE
   ============================================ */
.cta-bridge {
    background-color: var(--charcoal);
    padding: 8rem 4rem;
    text-align: center;
}

.cta-bridge-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-bridge h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.cta-bridge p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
    .cta-bridge {
        padding: 5rem 2rem;
    }
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-container {
    max-width: 680px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 4rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.1rem 1.4rem;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 300;
    background-color: #fff;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
    padding: 8rem 4rem;
    background-color: var(--bg-white);
}

.form-section-inner {
    max-width: 860px;
    margin: 0 auto;
}

.project-form {
    margin-top: 4rem;
}

.form-block {
    margin-bottom: 2.5rem;
}

.form-block label {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.form-block select,
.form-block input[type="text"],
.form-block input[type="email"],
.form-block input[type="tel"],
.form-block textarea {
    width: 100%;
    padding: 1rem 1.4rem;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    appearance: none;
}

.form-block select:focus,
.form-block input:focus,
.form-block textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-block textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

.optional {
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.75rem;
}

.multi-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: var(--bg-light);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
}

.checkbox-item:hover {
    border-color: var(--primary);
}
.checkbox-item span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-dark);
    line-height: 1.4;
}

.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin: 0;
    margin-right: 0.4rem;
    padding: 0;
    border: none;
}

.checkbox-item input[type="checkbox"]:focus {
    outline: none;
    border: none;
}

.form-divider {
    height: 1px;
    background-color: rgba(0,0,0,0.08);
    margin: 3rem 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.phone-input-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    background-color: var(--bg-light);
    overflow: hidden;
    transition: border-color 0.3s ease;
    width: 100%;
}

.phone-input-wrap input[type="tel"] {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 1rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.phone-input-wrap input[type="tel"]:focus {
    outline: none;
}

.phone-input-wrap:focus-within {
    border-color: var(--primary);
}

.phone-prefix {
    padding: 1rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    background-color: rgba(0,0,0,0.04);
    border-right: 1px solid rgba(0,0,0,0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.phone-country-code {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
    padding: 1rem 1.4rem 1rem 0.8rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background-color: rgba(0,0,0,0.04);
    border: none;
    border-right: 1px solid rgba(0,0,0,0.1);
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.4rem center;
}

.phone-country-code:focus {
    outline: none;
}

.phone-input-wrap input {
    border: none;
    background: transparent;
    padding: 1rem 1rem;
    flex: 1;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.phone-input-wrap input:focus {
    outline: none;
    border: none;
}

.same-as-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.same-as-phone input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: var(--primary);
    margin: 0;
    padding: 0;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 1.2rem;
}

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 1.2rem;
    margin-bottom: 0;
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
    .form-section {
        padding: 5rem 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .multi-select-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 28px;
    right: 28px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    z-index: 998;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* ============================================
   PARTNER LOGOS
   ============================================ */
.partners-section {
    padding: 5rem 4rem;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.partners-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: nowrap;
}

.partners-inner img {
    height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
    filter: brightness(0);
    flex-shrink: 0;
}

.partners-inner img:hover {
    opacity: 0.7;
}

.partners-inner img.partner-logo-color {
    filter: none;
}

.partners-inner img.partner-logo-color:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 4rem 1rem;
        overflow: hidden;
    }
    .partners-inner {
        gap: 1rem;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    .partners-inner img {
        height: 40px;
        max-width: 160px;
        flex-shrink: 1;
    }
}

@media (max-width: 400px) {
    .partners-inner img {
        height: 30px;
        max-width: 100px;
    }
    .partners-inner {
        gap: 0.6rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 5rem 4rem 2.5rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    height: 52px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    height: 52px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 0.4rem 0;
}

.footer-services {
    color: var(--primary);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item:hover {
    color: var(--primary);
}

.footer-contact-item i {
    font-size: 1rem;
    color: var(--primary);
    width: 20px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    margin: 0;
    letter-spacing: 0.03em;
}

.footer-map-link {
    color: rgba(255,255,255,0.3);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
}

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

.footer-map-link i {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 2rem 2rem;
    }
    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

.fade-in { animation: fadeInUp 0.8s ease forwards; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .nav-container { padding: 0 3rem; }
    .hero { padding: 8rem 3rem 4rem; }
    .section { padding: 6rem 3rem; }
    .section-full { padding: 6rem 3rem; }
    .footer { padding: 4rem 3rem 2rem; }
    .footer-top { gap: 3rem; }
}

@media (max-width: 1024px) {
    .hero-wrapper { grid-template-columns: 1fr; gap: 4rem; }
    .hero-images { height: 500px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        padding: 3rem 0;
        gap: 2rem;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: 0.3s;
    }

    .nav-menu.active { left: 0; }

    .nav-container { padding: 0 1.2rem; }
    .nav-logo-icon { height: 24px; }
    .nav-logo-text { height: 20px; }
    .section { padding: 4rem 2rem; }
    .section-full { padding: 4rem 2rem; }
    .hero { 
        padding: 0;
        height: 100vh;
        min-height: 500px;
    }
    .hero-images { height: 420px; }
    .hero-btns { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .trust-divider { display: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer { padding: 4rem 2rem 2rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-section { padding: 5rem 2rem; }
    .form-container { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.8rem; }
    .hero-images { height: 380px; }
    .products-grid { grid-template-columns: 1fr; }
    .trust-bar { padding: 3rem 2rem; }
    .trust-bar-inner { gap: 2.5rem; }
}