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

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap");
:root {
    --red: #1a9cb0; /* Primary teal from Fraction Plus logo */
    --red-dark: #147a8a; /* Darker teal for hover states */
    --red-light: #e0f5f8; /* Light teal for backgrounds/badges */
    --orange: #2bb5cc; /* Lighter teal accent (replaces orange) */
    --wood: #1c6b78;
    --wood-light: #f0f9fb;
    --dark: #1a1a1a;
    --dark2: #2d2d2d;
    --gray: #6b7280;
    --gray-light: #f4f4f5;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.18);
    --radius: 14px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}
/* ========== PAGE LOADER ========== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: "Poppins", sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: addonFadeIn 0.6s ease 0.3s forwards;
}
.loader-logo span {
    color: var(--red);
}

.loader-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: addonFadeIn 0.6s ease 0.5s forwards;
}
.loader-bar {
    height: 100%;
    width: 0;
    background: var(--red);
    border-radius: 2px;
    animation: loaderProgress 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes addonFadeIn {
    to {
        opacity: 1;
    }
}
@keyframes loaderProgress {
    to {
        width: 100%;
    }
}
/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}
.nav-container {
    max-width: 100%; /* was 1300px */
    margin: 0 auto;
    padding: 0 3rem; /* was 0 2rem — keeps a little breathing room */
    height: 72px;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    font-size: 1.8rem;
}
.logo-main {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}
.logo-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    gap: 0.2rem;
    list-style: none;
    margin-left: auto;
}
.nav-links a {
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}
.nav-links a:hover {
    background: var(--red-light);
    color: var(--red);
}
.nav-cta {
    background: var(--red) !important;
    color: #fff !important;
    padding: 0.5rem 1.2rem !important;
}
.nav-cta:hover {
    background: var(--red-dark) !important;
    transform: translateY(-1px);
}
.nav-phone {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    white-space: nowrap;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1541123437800-1bb1317badc2?w=1600&q=90");
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    mix-blend-mode: normal;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.35) 55%,
        rgba(0, 0, 0, 0.55) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}
.hero-text {
    flex: 1;
    color: #fff;
}
.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
    animation: fadeSlideUp 0.8s ease 0.2s both;
}
.hero-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    animation: fadeSlideUp 0.8s ease 0.4s both;
}
.hero-accent {
    color: var(--red);
}
.hero-sub {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    animation: fadeSlideUp 0.8s ease 0.6s both;
}
.hero-badges {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.7s both;
}
.badge {
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 2.5rem;
    background: var(--red);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    animation: fadeSlideUp 0.8s ease 0.8s both;
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.4);
}
.hero-btn:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.5);
}

/* Hero Form */
.hero-form {
    flex: 0 0 360px;
    animation: fadeSlideLeft 0.9s ease 0.5s both;
}
.form-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.form-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.form-card p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
}
.form-input {
    width: 100%;
    padding: 0.7rem 1rem;
    margin-bottom: 0.75rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition);
    background: #fafafa;
}
.form-input:focus {
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
}
.form-textarea {
    resize: none;
    height: 70px;
}
.form-submit {
    width: 100%;
    padding: 0.85rem;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}
.form-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}
.scroll-dot {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-dot::after {
    content: "";
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollPulse 1.5s infinite;
}

/* ========== FEATURES STRIP ========== */
.features-strip {
    background: var(--red);
    padding: 1.2rem 0;
}
.strip-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}
.strip-icon-img {
    width: 26px;
    height: 26px;
}
.strip-icon {
    font-size: 1.1rem;
}

/* ========== PRODUCT SECTIONS ========== */
.product-section {
    padding: 6rem 0;
}
.alt-bg {
    background: var(--gray-light);
}
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.5rem;
}
.section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.section-title.light {
    color: #fff;
}
.section-sub {
    font-size: 1rem;
    color: var(--gray);
}
.section-line {
    width: 60px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin: 1.2rem auto 0;
    position: relative;
}
.section-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 70px;
    width: 20px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}
.light-line {
    background: rgba(255, 255, 255, 0.6);
}
.light-line::after {
    background: var(--orange);
}

/* ========== PRODUCT GRID ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ========== PRODUCT CARD ========== */
.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.alt-bg .product-card {
    background: #fff;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    background: var(--red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.card-badge.new {
    background: #16a34a;
}
.card-badge.hot {
    background: var(--orange);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .card-img {
    transform: scale(1.07);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.product-card:hover .card-overlay {
    opacity: 1;
}
.quick-enq {
    background: #fff;
    color: var(--red);
    border: none;
    border-radius: 25px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    transform: translateY(8px);
}
.product-card:hover .quick-enq {
    transform: translateY(0);
}
.quick-enq:hover {
    background: var(--red);
    color: #fff;
}

.card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}
.card-desc {
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 1rem;
    flex: 1;
}

.card-pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.market-price {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}
.our-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
}

.enq-btn {
    width: 100%;
    padding: 0.7rem;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.enq-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(200, 16, 46, 0.35);
}

/* ========== SEE ALL BUTTON ========== */
.see-all-wrap {
    text-align: center;
    margin-top: 3rem;
}
.see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.5rem;
    border: 2px solid var(--red);
    color: var(--red);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.see-all-btn:hover {
    background: var(--red);
    color: #fff;
    gap: 0.8rem;
}
.see-all-btn span {
    transition: var(--transition);
}

/* ========== WHY CHOOSE US ========== */
.why-us {
    background: linear-gradient(135deg, #0d1b1e 0%, #0a2a30 50%, #0d1b1e 100%);
    padding: 6rem 0;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}
.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(26, 156, 176, 0.25); /* teal tinted border */
    border-radius: var(--radius);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(26, 156, 176, 0.08); /* teal tint on hover */
    border-color: rgba(26, 156, 176, 0.5);
    transform: translateY(-4px);
}
.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.why-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 6rem 0;
    background: var(--wood-light);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testi-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.testi-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.testi-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testi-avatar {
    width: 42px;
    height: 42px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.testi-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}
.testi-author span {
    font-size: 0.75rem;
    color: var(--gray);
}

.listing-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a0a00 0%, #3d1a00 60%, #8b5e3c 100%);
    position: relative;
    overflow: hidden;
}
.text-danger {
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.is-invalid {
    border: 1px solid #dc3545 !important;
}
.listing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400")
        center/cover;
    opacity: 0.15;
}

.listing-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.listing-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.listing-breadcrumb a,
.listing-breadcrumb span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.listing-breadcrumb a:hover {
    color: #fff;
}

.listing-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.3);
}

.listing-breadcrumb .current {
    color: #fff;
    font-weight: 600;
}

.listing-hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.listing-hero h1 span {
    color: var(--red);
}

.listing-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.listing-count {
    display: inline-block;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.filter-bar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 72px;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.filter-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow-x: auto;
}

.filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    white-space: nowrap;
}

.filter-pills {
    display: flex;
    gap: 0.5rem;
}

.filter-pill {
    padding: 0.35rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    background: #fff;
}

.filter-pill:hover,
.filter-pill.active {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light);
}

.filter-sort {
    margin-left: auto;
    padding: 0.35rem 0.8rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--dark);
    cursor: pointer;
    outline: none;
    font-family: "Inter", sans-serif;
    background: #fff;
}

.listing-body {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    display: none;
}

.product-card.visible {
    display: block;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.empty-state p {
    color: var(--gray);
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

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

/* ========== FOOTER ========== */
.footer {
    background: #111;
    padding: 5rem 0 0;
}
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.footer-brand .logo {
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--red);
}
.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--orange);
}
.footer-contact p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2rem;
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========== MODAL ========== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}
.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) scale(0.92);
    z-index: 2001;
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 520px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}
.modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gray-light);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}
.modal-close:hover {
    background: var(--red);
    color: #fff;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}
.modal-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.modal-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: 1.7rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.modal-product-tag {
    display: inline-block;
    background: var(--red-light);
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.modal-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.modal-field.full {
    grid-column: 1 / -1;
}
.modal-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
}
.modal-field input,
.modal-field textarea {
    padding: 0.7rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition);
    background: #fafafa;
}
.modal-field input:focus,
.modal-field textarea:focus {
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
}
.modal-field textarea {
    resize: none;
    height: 90px;
}

.modal-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.modal-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

.modal-success {
    display: none;
    text-align: center;
    padding: 1rem 0;
}
.modal-success.show {
    display: block;
    animation: fadeSlideUp 0.4s ease;
}
.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.modal-success h3 {
    font-size: 1.4rem;
    color: #16a34a;
    margin-bottom: 0.5rem;
}
.modal-success p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ========== ABOUT US ========== */
.about-us {
    padding: 7rem 0;
    background: var(--wood-light);
    overflow: hidden;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ── Image Block ── */
.about-img-block {
    position: relative;
    height: 540px;
}

.about-img-main-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 82%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.about-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.about-img-main-wrap:hover .about-img-main {
    transform: scale(1.05);
}

.about-img-badge {
    position: absolute;
    bottom: 160px; /* sits between main and secondary image */
    right: -15px;
    background: var(--red);
    color: #fff;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(26, 156, 176, 0.4);
    z-index: 10;
}
.badge-number {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.badge-text {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.about-img-secondary-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48%;
    height: 44%;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}
.about-img-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-dots {
    position: absolute;
    bottom: 30px;
    left: -20px;
    z-index: 0;
    opacity: 0.7;
}

/* ── Content ── */
.about-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: none;
}
.reveal-line {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-line.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.about-accent {
    color: var(--red);
    position: relative;
}
.about-accent::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 1.2s ease 0.8s;
}
.about-accent.visible-underline::after {
    width: 100%;
}

/* ── Animated Line ── */
.about-line-anim {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.75rem;
    height: 4px;
}
.line-segment {
    display: block;
    height: 4px;
    border-radius: 2px;
    width: 0;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.seg1 {
    background: var(--red);
    transition-delay: 0.2s;
}
.seg2 {
    background: var(--orange);
    transition-delay: 0.6s;
}
.line-dot {
    display: block;
    width: 0;
    height: 0;
    background: var(--orange);
    border-radius: 50%;
    margin-left: 6px;
    transition: width 0.3s ease 1.2s, height 0.3s ease 1.2s;
}

.about-line-anim.visible .seg1 {
    width: 60px;
}
.about-line-anim.visible .seg2 {
    width: 22px;
}
.about-line-anim.visible .line-dot {
    width: 8px;
    height: 8px;
}

/* ── Description ── */
.about-desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.about-desc strong {
    color: var(--dark);
    font-weight: 600;
}

/* ── Stats ── */
.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 1.75rem;
}
.about-stat {
    text-align: center;
}
.stat-num {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}
.stat-suffix {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--red);
}
.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.3rem;
    font-weight: 500;
}
.about-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* ── Pills ── */
.about-pills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.about-pill {
    padding: 0.4rem 1rem;
    background: #fff;
    border: 1.5px solid rgba(200, 16, 46, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}
.about-pill:hover {
    background: var(--red-light);
    border-color: var(--red);
    color: var(--red);
}

/* ── CTA ── */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.4rem;
    background: var(--red);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.3);
}
.about-cta:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.45);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-img-block {
        height: 400px;
        max-width: 560px;
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .about-img-block {
        height: 320px;
    }
    .about-stats {
        gap: 1rem;
    }
    .stat-num {
        font-size: 1.5rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}
@keyframes scrollPulse {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .nav-links,
    .nav-phone {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    .hero-form {
        flex: none;
        width: 100%;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .modal-body {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .strip-container {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem 1.5rem 1.5rem;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        z-index: 998;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.85rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid #f3f4f6;
        border-radius: 0;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-phone {
        display: none;
    }

    .nav-phone.mobile-open {
        display: block;
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        background: #f9fafb;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        z-index: 997;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    .nav-container {
        justify-content: space-between;
    }

    .hamburger {
        margin-left: auto;
    }

    .about-img-block {
        height: auto !important;
        padding-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        min-height: unset !important;
    }

    .about-img-main-wrap {
        position: relative !important;
        width: 100% !important;
        height: 240px !important;
        top: auto !important;
        left: auto !important;
    }

    .about-img-secondary-wrap {
        position: relative !important;
        width: 100% !important;
        height: 180px !important;
        bottom: auto !important;
        right: auto !important;
        border: none !important;
    }

    .about-dots {
        display: none !important;
    }

    .about-img-badge {
        bottom: 10px !important;
        right: 10px !important;
    }
}
