/* ============================================
   Modern Blinds - Consolidated Stylesheet
   ============================================ */

/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */
:root {
    --primary: #1f2937;
    --primary-dark: #111827;
    --primary-light: #f3f4f6;
    --accent: #d97706;
    --accent-light: #fef3c7;
    --dark: #1a1a1a;
    --gray-900: #18181b;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-300: #cccccc;
    --gray-50: #faf9f7;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --max-width: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--accent); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar i { margin-right: 6px; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon-img {
    width: auto;
    height: 48px;
    object-fit: contain;
}
.logo-text {
    line-height: 1.2;
}
.logo-text .logo-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1px;
}
.logo-text span {
    display: block;
    font-size: 10px;
    color: var(--gray-500);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}
.main-nav a:hover { color: var(--primary); }
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav .nav-disabled {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    cursor: default;
    white-space: nowrap;
}

/* Shared nav styles for sub-pages */
nav a {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
nav a:hover { color: var(--accent); }
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}
nav a:hover::after { width: 100%; }

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    white-space: nowrap;
}
.header-phone {
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
    white-space: nowrap;
}
.header-phone i { margin-right: 6px; color: var(--accent); }

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary:hover {
    background: #b45309;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

/* Nav overlay backdrop */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Scroll lock when menu open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   HERO SECTION (Homepage)
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    overflow: hidden;
    color: var(--white);
    text-align: center;
    justify-content: center;
    padding: 100px 40px;
}
.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}
.hero-content { color: var(--white); }
.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-content h2 span { color: var(--accent); }
.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}
/* Sub-page hero (single column, centered) */
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-wrap: balance;
    color: var(--white);
}
.hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(200, 144, 62, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* Gallery hero with background image */
.gallery-hero { background: var(--primary-dark); }
.gallery-hero::before { display: none; }
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.gallery-hero .hero-content {
    position: relative;
    z-index: 2;
    background: rgba(30, 45, 30, 0.55);
    padding: 48px 56px;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

/* Hero Banner variant (drapes page) */
.hero-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(200, 144, 62, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.hero-banner h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-wrap: balance;
}
.hero-banner p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

/* Hero buttons (outdoor page) */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.hero-buttons .secondary-button {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.hero-buttons .secondary-button:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Hero icon (warranty page) */
.hero-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44,95,110,0.1);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
/* ============================================
   SECTION STYLES
   ============================================ */
.section { padding: 80px 0; }
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--dark);
    margin-bottom: 12px;
    text-wrap: balance;
}
.section-header p {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}
.section-header .accent-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Section Title (shared across sub-pages) */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    text-wrap: balance;
}
.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.card-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.card-link:hover { gap: 10px; }
.card-link i { font-size: 12px; }

/* ============================================
   ABOUT / SPLIT SECTION
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.split-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.split-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 16px;
}
.split-content p {
    margin-bottom: 16px;
    font-size: 16px;
}
.split-content .btn-primary { margin-top: 10px; }

/* ============================================
   PROCESS / HOW IT WORKS (Homepage)
   ============================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.process-step {
    text-align: center;
    position: relative;
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
}
.process-step h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}
.process-step p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   CTA BANNER (shared component)
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}
.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 12px;
    color: var(--white);
    text-wrap: balance;
}
.cta-banner p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
}
.cta-banner .btn-primary {
    background: var(--accent);
    font-size: 16px;
    padding: 16px 36px;
}

/* CTA Button (shared across pages) */
.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
}
.cta-button:hover {
    background: #b45309;
    transform: translateY(-2px);
}
.cta-banner .cta-button {
    background: var(--accent);
    color: var(--white);
}
.cta-banner .cta-button:hover {
    background: #b45309;
}

/* CTA banner content wrapper */
.cta-banner-content {
    max-width: 700px;
    margin: 0 auto;
}
.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s;
}
.footer-social a:hover { background: var(--accent); }
.footer h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 13px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }
.footer .logo-icon-img {
    /* Uses logo-icon-dark.png (white on transparent) - no filter needed */
}
.footer .logo-text .logo-title {
    color: var(--white);
}
.footer .logo-text span {
    color: rgba(255,255,255,0.5);
}
.footer-links i {
    margin-right: 6px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

/* ============================================
   RESPONSIVE (Global)
   ============================================ */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .main-nav { display: none; }
    .nav-toggle { display: flex; }
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 16px;
        animation: navSlideDown 0.25s ease-out;
        z-index: 1001;
    }
    .main-nav.active a {
        padding: 12px 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .hero { min-height: auto; padding: 32px 0 40px; }
    .hero .container { gap: 32px; padding-top: 32px; padding-bottom: 32px; }
    .hero h1 { font-size: 1.75rem; }
    .hero p { font-size: 0.95rem; }
    .hero-content h2 { font-size: 28px; margin-bottom: 14px; }
    .hero-content p { font-size: 16px; margin-bottom: 20px; }
    .hero-banner { padding: 60px 20px; }
    .hero-banner h1 { font-size: 1.75rem; }
    .hero-banner p { font-size: 15px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .cta-button,
    .hero-buttons .secondary-button { width: 100%; text-align: center; min-height: 48px; }
    .split-section { grid-template-columns: 1fr; gap: 32px; }
    .split-image img { height: 260px; }
    .split-content h2 { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer { padding: 48px 0 0; }
    .footer-links a { font-size: 14px; padding: 4px 0; display: inline-block; }
    .footer-social a { width: 40px; height: 40px; }
    .section { padding: 56px 0; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: 1.6rem; }
    .section-header p { font-size: 0.9rem; }
    .section-title { font-size: 1.6rem; margin-bottom: 2rem; }
    .section-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
    .header-phone { display: none; }
    .header-cta .btn-primary { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .process-steps { gap: 24px; }
    .process-step { padding: 28px 24px; }
    .step-number { width: 48px; height: 48px; font-size: 20px; }
    .card-img { height: 200px; }
    .card-body { padding: 1.25rem; }
    .card-body h3 { font-size: 1.2rem; }
    .card-body p { font-size: 0.9rem; }
    .cta-banner { padding: 48px 0; }
    .cta-banner h2 { font-size: 1.5rem; }
    .cta-banner p { font-size: 0.9rem; margin-bottom: 24px; }
    .cta-banner .btn-primary { padding: 14px 28px; font-size: 14px; }
}
@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero { padding: 24px 0 32px; }
    .hero .container { gap: 24px; padding-top: 24px; padding-bottom: 24px; }
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.9rem; }
    .hero-content h2 { font-size: 24px; }
    .hero-banner { padding: 48px 16px; }
    .hero-banner h1 { font-size: 1.5rem; }
    .section { padding: 40px 0; }
    .section-title { font-size: 1.4rem; margin-bottom: 1.5rem; }
    .section-header h2 { font-size: 1.4rem; }
    .section-header p { font-size: 0.9rem; }
    .section-header { margin-bottom: 28px; }
    .split-image img { height: 220px; }
    .split-content h2 { font-size: 1.3rem; }
    .process-step { padding: 24px 20px; }
    .step-number { width: 44px; height: 44px; font-size: 18px; }
    .card-img { height: 180px; }
    .card-body { padding: 1rem; }
    .card-body h3 { font-size: 1.1rem; }
    .cta-banner { padding: 36px 0; }
    .cta-banner h2 { font-size: 1.3rem; }
    .cta-banner p { font-size: 0.85rem; }
    .btn-primary { min-height: 48px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer { padding: 36px 0 0; }
    .footer-grid { margin-bottom: 24px; }
    .footer h4 { margin-bottom: 12px; }
    .footer-bottom { padding: 16px 0; font-size: 12px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-animate.visible,
.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}
.fade-in.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}
@keyframes cardFadeIn {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes bounceIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Accessibility: respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   FOCUS & ACCESSIBILITY
   ============================================ */
.btn-primary:focus-visible,
.cta-button:focus-visible,
.card-link:focus-visible,
.category-link:focus-visible,
.filter-btn:focus-visible,
nav a:focus-visible,
.main-nav a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn-primary,
.cta-button,
.submit-btn,
.filter-btn,
.category-tab,
.cta-btn,
.cta-banner-btn,
.nav-toggle {
    touch-action: manipulation;
}

/* ============================================
   SHARED COMPONENT CLASSES
   ============================================ */

/* Card Grid — responsive grid for product/collection cards
   Replaces: .categories-grid, .subcategory-grid, .category-grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Card — image card with hover lift + image zoom
   Replaces: .category-card, .subcategory-card */
.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.card:hover .card-img img {
    transform: scale(1.05);
}
.card-body {
    padding: 1.5rem;
}
.card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.card-body p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* Card Link — accent-colored link with animated arrow gap
   Replaces: .learn-more, .category-link, .learn-more-link */
.card-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease, color 0.3s ease;
}
.card-link-arrow:hover {
    gap: 1rem;
    color: var(--primary);
}

/* Feature Grid — responsive grid for feature/benefit items
   Replaces: .features-grid, .benefits-grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Icon Circle — circular icon with gradient background
   Replaces: .feature-icon (circle variant) */
.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    transition: transform 0.3s ease;
}
.feature-card:hover .icon-circle {
    transform: scale(1.1) rotateZ(5deg);
}

/* Icon Plain — plain colored icon without background circle
   Replaces: .benefit-icon, .value-icon (plain variants) */
.icon-plain {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: inline-block;
}

/* Shared component responsive */
@media (max-width: 768px) {
    .card-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 1.5rem; }
    .icon-circle { width: 60px; height: 60px; font-size: 1.5rem; }
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* ============================================
   PAGE: INDEX
   ============================================ */

/* ── HERO ── */
.idx-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0c0b09;
}
.idx-hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.idx-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: saturate(0.85);
}
.idx-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(12,11,9,0.75) 0%,
        rgba(12,11,9,0.4) 50%,
        rgba(12,11,9,0.2) 100%
    );
}
.idx-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
}
.idx-hero-text {
    color: #fff;
}
.idx-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    font-weight: 600;
}
.idx-hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}
.idx-hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}
.idx-hero-text h1 em {
    font-style: normal;
    color: var(--accent);
    position: relative;
}
.idx-hero-text h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    opacity: 0.3;
}
.idx-hero-text > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 40px;
}
.idx-hero-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.idx-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.04);
    transition: border-color 0.3s, background 0.3s;
}
.idx-hero-pill:hover {
    border-color: rgba(217,119,6,0.4);
    background: rgba(217,119,6,0.06);
}
.idx-hero-pill i {
    color: var(--accent);
    font-size: 14px;
}

/* ── HERO FORM ── */
.idx-hero-form {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
}
.idx-hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #f59e0b);
    border-radius: 0 0 2px 2px;
}
.idx-hero-form h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}
.idx-hero-form .idx-form-sub {
    font-size: 13.5px;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.5;
}
.idx-hero-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.idx-hero-form .form-group {
    margin-bottom: 14px;
}
.idx-hero-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 5px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.idx-hero-form input,
.idx-hero-form select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--primary-dark);
    background: #fafafa;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.idx-hero-form input:focus,
.idx-hero-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217,119,6,0.1);
    background: #fff;
}
.idx-hero-form input::placeholder {
    color: #b0b0b0;
}
.idx-hero-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
    border-radius: 10px;
    margin-top: 4px;
    background: linear-gradient(135deg, #d97706, #b45309);
    border: none;
    letter-spacing: 0.5px;
}
.idx-hero-form .btn-primary:hover {
    background: linear-gradient(135deg, #b45309, #92400e);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(217,119,6,0.3);
}
.idx-form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 11.5px;
    color: var(--gray-500);
}
.idx-form-trust i {
    font-size: 10px;
    color: #22c55e;
}

/* ── MARQUEE TRUST BAR ── */
.idx-trust {
    background: var(--primary-dark);
    padding: 20px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.idx-trust-track {
    display: flex;
    gap: 60px;
    animation: idx-scroll 30s linear infinite;
    width: max-content;
}
@keyframes idx-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.idx-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
}
.idx-trust-item i {
    color: var(--accent);
    font-size: 18px;
}
.idx-trust-item strong {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* ── PRODUCTS ── */
.idx-products {
    padding: 100px 0;
    background: #fff;
}
.idx-section-intro {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}
.idx-section-intro .idx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
}
.idx-section-intro .idx-eyebrow::before,
.idx-section-intro .idx-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
}
.idx-section-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    color: var(--primary-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}
.idx-section-intro p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
}

.idx-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.idx-prod-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    display: block;
}
.idx-prod-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
}
.idx-prod-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}
.idx-prod-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
    transition: background 0.5s;
}
.idx-prod-card:hover .idx-prod-card-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 65%);
}
.idx-prod-card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
    transform: translateY(0);
    transition: transform 0.4s;
}
.idx-prod-card-overlay p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s, opacity 0.4s;
    margin-bottom: 0;
}
.idx-prod-card:hover .idx-prod-card-overlay p {
    max-height: 80px;
    opacity: 1;
    margin-bottom: 12px;
}
.idx-prod-card:hover .idx-prod-card-overlay h3 {
    transform: translateY(-4px);
}
.idx-prod-card-overlay .idx-prod-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s 0.1s, transform 0.4s 0.1s, gap 0.3s;
}
.idx-prod-card:hover .idx-prod-link {
    opacity: 1;
    transform: translateY(0);
}
.idx-prod-link:hover {
    gap: 10px;
}

/* ── HOW IT WORKS ── */
.idx-process {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}
.idx-process::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217,119,6,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.idx-process .idx-section-intro h2 { color: #fff; }
.idx-process .idx-section-intro p { color: rgba(255,255,255,0.5); }

.idx-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.idx-steps::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217,119,6,0.3), rgba(217,119,6,0.3), transparent);
}
.idx-step {
    text-align: center;
    padding: 0 24px;
    position: relative;
}
.idx-step-num {
    width: 68px;
    height: 68px;
    border: 2px solid rgba(217,119,6,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
    background: var(--primary-dark);
    position: relative;
    z-index: 2;
    transition: background 0.4s, border-color 0.4s, color 0.4s;
}
.idx-step:hover .idx-step-num {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.idx-step h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}
.idx-step p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.idx-reviews {
    padding: 100px 0;
    background: #faf9f7;
}
.idx-reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}
.idx-reviews-rating {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-dark);
}
.idx-reviews-rating i {
    color: var(--accent);
    margin-right: 2px;
}
.idx-reviews-count {
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s;
}
.idx-reviews-count:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Marquee container */
.idx-reviews-marquee {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    padding: 10px 0;
}
.idx-reviews-marquee::before,
.idx-reviews-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.idx-reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, #faf9f7, transparent);
}
.idx-reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, #faf9f7, transparent);
}

/* Scrolling track */
.idx-reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: idx-marquee 40s linear infinite;
}
.idx-reviews-track:hover {
    animation-play-state: paused;
}
@keyframes idx-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Review card (fixed width for marquee) */
.idx-review-card {
    flex-shrink: 0;
    width: 380px;
    background: #fff;
    border-radius: 14px;
    padding: 36px 32px;
    position: relative;
    border: 1px solid #f0ece6;
    transition: transform 0.4s, box-shadow 0.4s;
}
.idx-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.idx-review-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 1;
    color: #f0ece6;
    position: absolute;
    top: 20px;
    right: 28px;
}
.idx-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.idx-review-stars i {
    color: var(--accent);
    font-size: 13px;
}
.idx-review-card blockquote {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: normal;
}
.idx-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.idx-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.idx-review-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.idx-review-meta strong {
    display: block;
    font-size: 14px;
    color: var(--primary-dark);
}
.idx-review-meta span {
    font-size: 12px;
    color: var(--gray-500);
}

/* ── WHY US ── */
.idx-why {
    padding: 100px 0;
    background: #fff;
}
.idx-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.idx-why-card {
    padding: 36px 30px;
    border-radius: 14px;
    border: 1px solid #f0ece6;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
    position: relative;
    overflow: hidden;
}
.idx-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.idx-why-card:hover {
    border-color: rgba(217,119,6,0.2);
    box-shadow: 0 16px 48px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}
.idx-why-card:hover::before {
    transform: scaleX(1);
}
.idx-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fef7ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--accent);
    transition: background 0.3s, color 0.3s;
}
.idx-why-card:hover .idx-why-icon {
    background: var(--accent);
    color: #fff;
}
.idx-why-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}
.idx-why-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ── ABOUT SPLIT ── */
.idx-about {
    padding: 100px 0;
    background: #faf9f7;
}
.idx-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.idx-about-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.idx-about-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.idx-about-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, rgba(0,0,0,0.15));
    pointer-events: none;
}
.idx-about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    padding: 14px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.idx-about-badge i {
    font-size: 24px;
    color: var(--accent);
}
.idx-about-badge div strong {
    display: block;
    font-size: 18px;
    color: var(--primary-dark);
}
.idx-about-badge div span {
    font-size: 12px;
    color: var(--gray-500);
}
.idx-about-content .idx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
}
.idx-about-content .idx-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}
.idx-about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}
.idx-about-content p {
    font-size: 15.5px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}
.idx-about-content .btn-primary {
    margin-top: 12px;
}

/* ── BLOG ── */
.idx-blog {
    padding: 100px 0;
    background: #fff;
}
.idx-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.idx-blog-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f0ece6;
    background: #fff;
    transition: transform 0.4s, box-shadow 0.4s;
}
.idx-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.idx-blog-card-img {
    height: 220px;
    overflow: hidden;
}
.idx-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.idx-blog-card:hover .idx-blog-card-img img {
    transform: scale(1.06);
}
.idx-blog-card-body {
    padding: 28px 24px;
}
.idx-blog-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}
.idx-blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}
.idx-blog-card-body p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 14px;
}
.idx-blog-card-body .card-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.idx-blog-card-body .card-link:hover { gap: 10px; }

/* ── INDEX RESPONSIVE ── */
@media (max-width: 1024px) {
    .idx-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    .idx-products-grid { grid-template-columns: repeat(2, 1fr); }
    .idx-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .idx-steps::before { display: none; }
    .idx-review-card { width: 320px; }
    .idx-why-grid { grid-template-columns: repeat(2, 1fr); }
    .idx-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .idx-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .idx-hero .container { padding-top: 40px; padding-bottom: 40px; gap: 32px; }
    .idx-hero-text h1 { font-size: 1.75rem; }
    .idx-hero-text > p { font-size: 0.95rem; margin-bottom: 24px; }
    .idx-hero-label { font-size: 10px; letter-spacing: 2px; margin-bottom: 20px; }
    .idx-hero-pills { flex-direction: row; flex-wrap: wrap; }
    .idx-hero-pill { padding: 8px 14px; font-size: 12px; }
    .idx-hero-form { padding: 24px 20px; }
    .idx-hero-form h3 { font-size: 19px; }
    .idx-hero-form .idx-form-sub { margin-bottom: 20px; font-size: 13px; }
    .idx-hero-form .form-row { grid-template-columns: 1fr; }
    .idx-hero-form .btn-primary { min-height: 48px; }
    .idx-products-grid { grid-template-columns: 1fr; }
    .idx-prod-card { aspect-ratio: 4/3; }
    .idx-steps { grid-template-columns: 1fr; }
    .idx-review-card { width: 280px; }
    .idx-reviews-marquee::before,
    .idx-reviews-marquee::after { width: 40px; }
    .idx-why-grid { grid-template-columns: 1fr; }
    .idx-blog-grid { grid-template-columns: 1fr; }
    .idx-products, .idx-process, .idx-reviews, .idx-why, .idx-about, .idx-blog {
        padding: 56px 0;
    }
    .idx-section-intro { margin: 0 auto 36px; }
    .idx-section-intro h2 { font-size: 1.6rem; }
    .idx-section-intro p { font-size: 0.9rem; }
    .idx-reviews, .idx-about { padding: 48px 0; }
}
@media (max-width: 480px) {
    .idx-hero .container { padding-top: 28px; padding-bottom: 28px; gap: 24px; }
    .idx-hero-text h1 { font-size: 1.5rem; }
    .idx-hero-label { font-size: 10px; letter-spacing: 2px; }
    .idx-hero-form { padding: 20px 16px; }
    .idx-hero-form h3 { font-size: 17px; }
    .idx-prod-card { aspect-ratio: 16/10; }
    .idx-prod-card-overlay { padding: 20px 18px; }
    .idx-prod-card-overlay h3 { font-size: 20px; }
    .idx-step { padding: 24px 20px; }
    .idx-step-num { width: 56px; height: 56px; font-size: 22px; }
    .idx-step h3 { font-size: 17px; }
    .idx-review-card { width: 240px; padding: 20px 16px; }
    .idx-review-card blockquote { font-size: 13px; }
    .idx-review-card::before { font-size: 48px; top: 12px; right: 16px; }
    .idx-why-card { padding: 24px 20px; }
    .idx-why-card h3 { font-size: 17px; }
    .idx-about-img img { height: 220px; }
    .idx-about-content h2 { font-size: 1.5rem; }
    .idx-about-badge { padding: 10px 14px; }
    .idx-about-badge i { font-size: 20px; }
    .idx-about-badge div strong { font-size: 15px; }
    .idx-blog-card-body { padding: 16px; }
    .idx-blog-card-body h3 { font-size: 16px; }
    .idx-blog-card-img { height: 180px; }
    .idx-products, .idx-process, .idx-reviews, .idx-why, .idx-about, .idx-blog {
        padding: 40px 0;
    }
    .idx-reviews, .idx-about { padding: 36px 0; }
    .idx-section-intro { margin: 0 auto 28px; }
    .idx-section-intro h2 { font-size: 1.4rem; }
}

/* ============================================
   PAGE: ABOUT
   ============================================ */
.our-story {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.our-story h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}
.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}
.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.story-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}
.story-highlight {
    background: var(--primary-light);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

/* Values Section */
.values {
    background: var(--primary-light);
    padding: 6rem 2rem;
    margin-top: 4rem;
}
.values h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.value-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.value-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Process Section (About page) */
.process {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
}
.process h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}
.process-step:not(:last-child)::after {
    content: '\2192';
    position: absolute;
    right: -1.5rem;
    top: 30px;
    font-size: 2rem;
    color: var(--accent);
    display: none;
}
@media (min-width: 768px) {
    .process-step:not(:last-child)::after { display: block; }
}

/* Team Section */
.team {
    background: var(--primary-light);
    padding: 6rem 2rem;
    margin-top: 4rem;
}
.team h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}
.team-placeholder {
    font-size: 5rem;
    opacity: 0.7;
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-info {
    padding: 1.5rem;
    text-align: center;
}
.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}
.team-role {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.team-info p {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 6rem 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.partners h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}
.partners-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}
.partner-logo {
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    color: #999;
    font-weight: 600;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}
.partner-logo:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(200, 144, 62, 0.15);
}

/* About responsive */
@media (max-width: 768px) {
    .story-container { grid-template-columns: 1fr; }
    .story-image { height: 300px; }
    .our-story, .values, .process, .partners {
        padding: 3rem 1.5rem;
    }
    .process-step:not(:last-child)::after {
        content: '\2193';
        right: -1rem;
        top: 65px;
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .process h2, .team h2, .partners h2, .values h2, .our-story h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   PAGE: BLINDS
   ============================================ */
header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.categories-section {
    padding: 5rem 2rem;
    background-color: var(--primary-light);
}
/* category-image: direct img tag (not wrapper div) */
.category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    overflow: hidden;
}
.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.card:hover .category-image img {
    transform: scale(1.05);
}
/* Features Section */
.features-section {
    padding: 5rem 2rem;
    background-color: white;
}
/* feature-card: shared across blinds, shades, shutters, drapes, outdoor, motorization */
.feature-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Blinds responsive */
@media (max-width: 640px) {
    .categories-section { padding: 3rem 1.5rem; }
}

/* ============================================
   PAGE: CONTACT
   ============================================ */
.consultation-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}
.form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
}
.form-row.full { grid-template-columns: 1fr; }

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}
input[type="text"],
input[type="email"],
input[type="phone"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 144, 62, 0.1);
}
textarea {
    resize: vertical;
    min-height: 120px;
}
.submit-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    touch-action: manipulation;
}
.submit-btn:hover { background: #b07d2d; }

/* Contact info cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.info-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    display: flex;
    gap: 1rem;
}
.info-icon {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.info-content h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}
.info-content p {
    color: #666;
    font-size: 0.95rem;
}
.map-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 8px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
    border: 1px solid #ddd;
    overflow: hidden;
}
.map-placeholder iframe {
    border: 0;
    border-radius: 8px;
}

/* Contact FAQ Section */
.faq-section {
    margin-top: 5rem;
    border-top: 2px solid #eee;
    padding-top: 4rem;
}
.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--white);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* FAQ Header (contact page accordion style) */
.faq-header {
    background: #f9f9f9;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.faq-header:hover { background: #f0f0f0; }
.faq-header.active {
    background: var(--primary);
    color: white;
}
.faq-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}
.faq-icon {
    color: var(--accent);
    font-size: 1.2rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-header.active .faq-icon {
    color: var(--accent);
    transform: rotate(180deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}
.faq-content.active {
    max-height: 500px;
    padding: 1.5rem;
}
.faq-text {
    color: #555;
    line-height: 1.7;
}

/* FAQ Question (faq page accordion style) */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--primary-light);
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    color: var(--primary);
    transition: background-color 0.3s ease;
}
.faq-question:hover { background-color: #dce7ea; }
.faq-question-text {
    flex: 1;
    margin-right: 1rem;
    font-size: 1rem;
}
.faq-item.open .faq-icon,
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: var(--white);
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer,
.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}
.faq-answer-text {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.8;
}
.faq-answer-text p { margin-bottom: 1rem; }
.faq-answer-text p:last-child { margin-bottom: 0; }

/* Contact responsive */
@media (max-width: 1024px) {
    .consultation-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .contact-info h2, .form-wrapper h2, .faq-section h2 { font-size: 1.5rem; }
    .map-placeholder { height: 250px; }
}

/* ============================================
   PAGE: DRAPES
   ============================================ */
.subcategories {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background: #f9f9f9;
}
/* Benefits Section */
.benefits {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}
/* benefit-card: feature-card with background variant */
.benefit-card {
    border-radius: 8px;
    background: #f9f9f9;
}
.benefit-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.benefits-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 60px;
    color: var(--primary);
}
.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Drapes responsive */
@media (max-width: 768px) {
    .subcategories, .benefits { padding: 60px 20px; }
}

/* ============================================
   PAGE: FAQ
   ============================================ */
.phone {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.phone i { font-size: 16px; }

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--gray-300);
}
.category-tab {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    border-bottom: 3px solid transparent;
    touch-action: manipulation;
}
.category-tab:hover { color: var(--primary); }
.category-tab.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

/* Category Content */
.faq-category {
    display: none;
    animation: fadeInUp 0.6s ease;
}
.faq-category.active { display: block; }

/* FAQ CTA Section */
.faq-cta {
    background: linear-gradient(135deg, var(--primary-light) 0%, #d5e7eb 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
    border-radius: 8px;
}
.faq-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.faq-cta p {
    color: var(--gray-700);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.cta-info-item { text-align: center; }
.cta-info-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.cta-info-item p {
    margin: 0;
    color: var(--gray-700);
    font-weight: 500;
}

/* FAQ responsive */
@media (max-width: 768px) {
    .category-tabs { gap: 0.5rem; }
    .category-tab { padding: 0.75rem 1rem; font-size: 0.9rem; }
    .faq-question { padding: 1.25rem; }
    .faq-question-text { font-size: 0.95rem; }
    .faq-cta h2 { font-size: 2rem; }
    .cta-info { gap: 1.5rem; }
}
@media (max-width: 480px) {
    .category-tab { padding: 0.75rem; font-size: 0.8rem; }
    .faq-container { padding: 0 1rem; }
    .faq-question { padding: 1rem; }
    .faq-answer-text { font-size: 0.9rem; }
}

/* ============================================
   PAGE: GALLERY
   ============================================ */
.cta-btn {
    background-color: var(--accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    touch-action: manipulation;
}
.cta-btn:hover { background-color: #b8801e; }

/* Filter Section */
.filter-section {
    max-width: 1200px;
    margin: 60px auto 20px;
    padding: 0 20px;
}
.filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--gray-300);
    background-color: var(--white);
    color: var(--gray-700);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.3s, color 0.3s, background-color 0.3s;
    touch-action: manipulation;
}
.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.gallery-count {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Gallery Grid */
.gallery-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 300px;
}
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}
.gallery-item.gallery-visible {
    opacity: 1;
    transform: translateY(0);
}
.gallery-item.gallery-featured {
    grid-row: span 2;
}
.gallery-item.gallery-hidden {
    display: none;
}
.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.gallery-item.gallery-visible:hover {
    transform: scale(1.03);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, transform 0.4s ease;
}
.gallery-item:hover img {
    filter: brightness(0.85);
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 20px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--accent);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.gallery-caption {
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
}

/* Load More Button */
.gallery-load-more {
    text-align: center;
    margin-top: 40px;
}
.gallery-load-more.hidden { display: none; }
.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 2px solid var(--primary);
    background-color: transparent;
    color: var(--primary);
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-load-more:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-load-more i {
    transition: transform 0.3s;
}
.btn-load-more:hover i {
    transform: translateY(3px);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.lightbox-modal.active { display: flex; }
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}
.lightbox-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    transition: opacity 0.25s ease;
}
.lightbox-info {
    padding: 16px 20px;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    margin: 0;
}
.lightbox-counter {
    color: var(--gray-500);
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--primary);
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
    z-index: 10;
}
.lightbox-close:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--primary);
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
    z-index: 10;
}
.lightbox-nav:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* CTA Section (gallery/shades/warranty) */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    margin: 80px 0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 20px;
    color: var(--white);
}
.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Gallery responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        grid-auto-rows: 250px;
    }
    .gallery-item.gallery-featured {
        grid-row: span 1;
    }
    .filter-tabs { gap: 8px; }
    .filter-btn { padding: 8px 16px; font-size: 12px; }
    .cta-section { margin: 40px 20px; padding: 40px 20px; }
    .lightbox-nav { width: 36px; height: 36px; font-size: 14px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-info { flex-direction: column; align-items: flex-start; gap: 4px; }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        grid-auto-rows: 220px;
    }
    .lightbox-content { max-width: 95%; max-height: 95vh; }
    .lightbox-image { max-height: 60vh; }
    .lightbox-nav { width: 32px; height: 32px; font-size: 12px; }
    .btn-load-more { padding: 12px 28px; font-size: 14px; }
}

/* ============================================
   PAGE: MOTORIZATION
   ============================================ */
/* Smart Home Integration */
.smart-integration {
    padding: 80px 20px;
    background-color: var(--gray-100);
}
.integration-content {
    max-width: 1200px;
    margin: 0 auto;
}
.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.integration-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.integration-logo {
    font-size: 56px;
    margin-bottom: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.integration-logo.amazon { color: #FF9900; }
.integration-logo.google { color: #4285F4; }
.integration-logo.apple { color: #000000; }
.integration-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
}
.integration-card p {
    color: var(--gray-700);
    font-size: 14px;
}

/* Product Types Section */
.product-types {
    padding: 80px 20px;
    background-color: var(--white);
}

/* How It Works */
.how-it-works {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--white));
}
.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.step-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow-sm);
}
.step-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}
.step-card p {
    font-size: 14px;
    color: var(--gray-700);
}

/* Motorization responsive */
@media (max-width: 768px) {
    .integration-grid { grid-template-columns: 1fr; gap: 30px; }
    .steps-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
    .benefits { padding: 60px 20px; }
}

/* ============================================
   PAGE: OUTDOOR
   ============================================ */
/* Categories */
.categories {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

/* Split Section (outdoor) */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
    font-family: var(--font-heading);
}
.split-text p {
    color: var(--gray-700);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}
.split-list {
    list-style: none;
    margin: 30px 0;
}
.split-list li {
    padding: 10px 0;
    color: var(--gray-700);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.split-list li:before {
    content: "\f058";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 16px;
}
.split-text .cta-button { margin-top: 20px; }

/* Gallery (outdoor) */
.gallery {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}
.gallery-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 60px;
    color: var(--primary);
}

/* Outdoor responsive */
@media (max-width: 768px) {
    .split-content { grid-template-columns: 1fr; gap: 30px; }
    .split-image img { height: 300px; }
    .split-text h2 { font-size: 28px; }
}

/* ============================================
   PAGE: SHADES
   ============================================ */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}
section { padding: 4rem 2rem; }
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Shades responsive */
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .cta-section { margin: 2rem 1rem; padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
    section { padding: 3rem 1rem; }
}

/* ============================================
   PAGE: SHUTTERS
   ============================================ */
/* CTA Banner Button (shutters) */
.cta-banner-btn {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
    touch-action: manipulation;
}
.cta-banner-btn:hover { background: #b87d2e; }

/* ============================================
   PAGE: WARRANTY
   ============================================ */
/* Highlights Banner */
.highlights {
    background-color: var(--primary-light);
    padding: 60px 20px;
}
.highlights-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.highlight-item {
    text-align: center;
    animation: fadeInUp 0.6s ease-out both;
}
.highlight-item:nth-child(1) { animation-delay: 0.1s; }
.highlight-item:nth-child(2) { animation-delay: 0.2s; }
.highlight-item:nth-child(3) { animation-delay: 0.3s; }
.highlight-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}
.highlight-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary);
    font-family: var(--font-heading);
}
.highlight-item p {
    color: var(--gray-700);
    font-size: 15px;
}

/* Coverage Section */
.coverage-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}
.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.coverage-column h3 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}
.coverage-column.covered h3 { color: #27ae60; }
.coverage-column.not-covered h3 { color: #e74c3c; }
.coverage-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-300);
}
.coverage-item:last-child { border-bottom: none; }
.coverage-item i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.coverage-column.covered .coverage-item i { color: #27ae60; }
.coverage-column.not-covered .coverage-item i { color: #e74c3c; }
.coverage-item p {
    color: var(--gray-700);
    font-size: 15px;
}

/* Warranty Table */
.products-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}
.warranty-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.warranty-table thead {
    background-color: var(--primary);
    color: var(--white);
}
.warranty-table th {
    padding: 18px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}
.warranty-table td {
    padding: 18px;
    border-bottom: 1px solid var(--gray-300);
    font-size: 14px;
    color: var(--gray-700);
}
.warranty-table tbody tr {
    transition: background-color 0.3s;
}
.warranty-table tbody tr:hover {
    background-color: var(--primary-light);
}
.warranty-table tbody tr:last-child td { border-bottom: none; }
.product-name {
    font-weight: 600;
    color: var(--primary);
}

/* Claim Steps */
.claim-section {
    background-color: var(--gray-100);
    padding: 80px 20px;
    margin: 80px 0;
}
.claim-container {
    max-width: 1200px;
    margin: 0 auto;
}
.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.step {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: bounceIn 0.6s ease-out both;
}
.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.step h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary);
    font-family: var(--font-heading);
}
.step p {
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.6;
}

.maintenance-intro {
    text-align: center;
    color: var(--gray-700);
    font-size: 16px;
    margin-bottom: 40px;
}

/* Care & Maintenance */
.maintenance-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.maintenance-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.6s ease-out both;
}
.maintenance-card:nth-child(1) { animation-delay: 0.1s; }
.maintenance-card:nth-child(2) { animation-delay: 0.2s; }
.maintenance-card:nth-child(3) { animation-delay: 0.3s; }
.maintenance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.maintenance-icon {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 15px;
}
.maintenance-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary);
    font-family: var(--font-heading);
}
.maintenance-card p {
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.6;
}

/* Warranty responsive */
@media (max-width: 768px) {
    .coverage-grid { grid-template-columns: 1fr; gap: 30px; }
    .warranty-table { font-size: 13px; }
    .warranty-table th, .warranty-table td { padding: 12px; }
    .highlights-container { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-icon { font-size: 48px; }
    .claim-steps { grid-template-columns: 1fr; }
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
    font-size: 14px;
    margin-bottom: 15px;
}
.footer-contact a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact a:hover { color: var(--accent); }

/* nav a active state */
nav a.active {
    color: var(--primary);
    font-weight: 600;
}
nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
}

/* ============================================
   LANDING PAGE STYLES (lp-*)
   Ad landing pages: no nav, conversion-focused
   ============================================ */

/* LP Header - minimal sticky */
.lp-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.lp-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}
.lp-header .logo-text .logo-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

/* LP Phone CTA button */
.lp-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
}
.lp-phone-cta:hover {
    background: #b45309;
    transform: translateY(-1px);
}

/* LP Footer - minimal dark */
.lp-footer {
    background: var(--primary-dark);
    color: var(--gray-500);
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
}
.lp-footer a {
    color: var(--gray-300);
    text-decoration: underline;
    margin-left: 8px;
}
.lp-footer a:hover {
    color: var(--accent);
}
.lp-footer-business {
    color: var(--gray-400);
    margin-bottom: 4px;
    font-size: 12px;
}
.lp-footer-business a {
    margin-left: 0;
}

/* LP Hero Section */
.lp-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0 70px;
}
.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.lp-hero-text h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.lp-hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}
.lp-hero-badges {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-hero-badges li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

/* LP Hero (Meta variant) - centered, full-width */
.lp-hero-meta {
    text-align: center;
    padding: 80px 0 90px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a365d 50%, var(--primary) 100%);
}
.lp-hero-center {
    max-width: 700px;
    margin: 0 auto;
}
.lp-hero-center h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.lp-hero-cta-btn {
    margin-top: 24px;
    font-size: 18px;
    padding: 16px 36px;
}

/* LP Form Card */
.lp-form-card {
    background: var(--white);
    color: var(--gray-700);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-top: 4px solid var(--accent);
}
.lp-form-card h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}
.lp-form-card-centered {
    max-width: 560px;
    margin: 0 auto;
}

/* LP Form elements */
.lp-form .form-group {
    margin-bottom: 14px;
}
.lp-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}
.lp-form input,
.lp-form select,
.lp-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}
.lp-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 17px;
    font-weight: 700;
    margin-top: 8px;
    cursor: pointer;
}
.lp-consent-group {
    margin-top: 12px;
}
.lp-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
    cursor: pointer;
}
.lp-consent-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}
.lp-consent-label a {
    color: var(--accent);
    text-decoration: underline;
}
.lp-form-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 10px;
}
.lp-form-privacy i {
    margin-right: 4px;
}
.lp-form-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 15px;
}

/* LP Form Section (standalone, for Meta mid/bottom forms) */
.lp-form-section {
    padding: 60px 0;
    background: var(--gray-100);
}
.lp-form-section-dark {
    background: var(--primary-dark);
}
.lp-form-section-dark .lp-form-card {
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

/* LP Trust Bar */
.lp-trust-bar {
    background: var(--gray-100);
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}
.lp-trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}
.lp-trust-item i {
    color: var(--accent);
    font-size: 18px;
}

/* LP Benefits Section */
.lp-benefits {
    padding: 70px 0;
    background: var(--white);
}
.lp-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
}
.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.lp-benefit-card {
    text-align: center;
    padding: 30px 24px;
    border-radius: var(--radius);
    transition: transform 0.3s, box-shadow 0.3s;
}
.lp-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.lp-benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--accent);
}
.lp-benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}
.lp-benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-700);
}

/* LP Gallery Strip */
.lp-gallery-strip {
    padding: 60px 0;
    background: var(--gray-100);
}
.lp-gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.lp-gallery-row img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.3s;
}
.lp-gallery-row img:hover {
    transform: scale(1.03);
}

/* LP Bottom CTA */
.lp-bottom-cta {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}
.lp-bottom-cta h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 10px;
}
.lp-bottom-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}
.lp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 17px;
}

/* LP Agitation Section (Meta) */
.lp-agitation {
    padding: 60px 0;
    text-align: center;
    background: var(--white);
}
.lp-agitation h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 16px;
}
.lp-agitation p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
}

/* LP Testimonials */
.lp-testimonials {
    padding: 70px 0;
    background: var(--white);
}
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-testimonial-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 28px;
    border-left: 3px solid var(--accent);
}
.lp-testimonial-stars {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 14px;
}
.lp-testimonial-stars i {
    margin-right: 2px;
}
.lp-testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 12px;
}
.lp-testimonial-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* ========== PRODUCT PAGE CONTENT SECTIONS ========== */

/* Buying Guide / Detail Section */
.product-guide {
    padding: 80px 0;
    background: var(--gray-50);
}
.product-guide .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.product-guide h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--primary-dark);
    margin-bottom: 16px;
    text-align: center;
}
.product-guide .guide-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.product-guide h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin: 32px 0 12px;
}
.product-guide h3:first-of-type {
    margin-top: 0;
}
.product-guide p {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Comparison Table */
.product-comparison {
    padding: 80px 0;
}
.product-comparison .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}
.product-comparison h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 8px;
}
.product-comparison .comparison-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 16px;
    margin-bottom: 36px;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.comparison-table thead th {
    background: var(--primary-dark);
    color: #fff;
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.3px;
}
.comparison-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    line-height: 1.5;
}
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}
.comparison-table tbody tr:hover {
    background: var(--gray-50);
}
.comparison-table .check {
    color: var(--accent);
    font-weight: 700;
}
.comparison-table .dash {
    color: var(--gray-400);
}

/* Product Page FAQ */
.product-faq {
    padding: 80px 0;
    background: var(--gray-50);
}
.product-faq .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.product-faq h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 36px;
}
.product-faq .fq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.product-faq .fq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    border: none;
    gap: 12px;
}
.product-faq .fq-q-text {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 15px;
}
.product-faq .fq-q-icon {
    color: var(--gray-400);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.product-faq .fq-item.open .fq-q-icon {
    transform: rotate(180deg);
}
.product-faq .fq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.product-faq .fq-item.open .fq-a {
    max-height: 500px;
}
.product-faq .fq-a-inner {
    padding: 0 20px 18px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

/* Related Products / Cross Links */
.product-related {
    padding: 60px 0;
}
.section-alt {
    background: var(--gray-50);
}
.product-related .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}
.product-related h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 32px;
}
.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.related-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}
.related-link:hover {
    background: var(--primary-dark);
    color: #fff;
}
.related-link i {
    color: var(--accent);
    font-size: 18px;
}
.related-link:hover i {
    color: #fff;
}

/* Product CTA Banner */
.product-cta {
    padding: 64px 24px;
    background: var(--primary-dark);
    text-align: center;
    color: #fff;
}
.product-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 12px;
}
.product-cta p {
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 28px;
    font-size: 15px;
    line-height: 1.7;
}
.product-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.product-cta .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.product-cta .btn-cta-primary:hover {
    background: var(--accent-dark, #b8860b);
}
.product-cta .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.product-cta .btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .product-guide, .product-comparison, .product-faq, .product-related {
        padding: 56px 0;
    }
    .comparison-table {
        font-size: 12px;
    }
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 10px 10px;
    }
    .related-links {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* LP FAQ (uses existing .faq-* classes from main site) */
.lp-faq {
    padding: 70px 0;
    background: var(--gray-100);
}

/* LP Form Success (override for LP context) */
.lp-form .form-success {
    text-align: center;
    padding: 30px 20px;
}
.lp-form .form-success i {
    font-size: 48px;
    color: #22c55e;
    margin-bottom: 12px;
}
.lp-form .form-success h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 8px;
}
.lp-form .form-success p {
    font-size: 15px;
    color: var(--gray-700);
}

/* LP Responsive */
@media (max-width: 992px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .lp-hero-text h1,
    .lp-hero-center h1 {
        font-size: 32px;
    }
    .lp-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lp-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .lp-gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .lp-hero {
        padding: 40px 0 50px;
    }
    .lp-hero-meta {
        padding: 50px 0 60px;
    }
    .lp-hero-text h1,
    .lp-hero-center h1 {
        font-size: 28px;
    }
    .lp-hero-sub {
        font-size: 16px;
    }
    .lp-form-card {
        padding: 24px 20px;
    }
    .lp-section-title {
        font-size: 26px;
    }
    .lp-benefits-grid {
        grid-template-columns: 1fr;
    }
    .lp-trust-items {
        gap: 20px;
    }
    .lp-trust-item {
        font-size: 12px;
    }
    .lp-phone-cta span {
        display: none;
    }
}
@media (max-width: 480px) {
    .lp-gallery-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .lp-gallery-row img {
        height: 150px;
    }
    .lp-hero-text h1,
    .lp-hero-center h1 {
        font-size: 24px;
    }
}

/* ============================================
   LOCAL / SERVICE AREA PAGES
   ============================================ */

/* About section */
.local-about {
    padding: 80px 0;
    background: var(--white);
}
.local-about .container {
    max-width: 900px;
}
.local-about h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}
.local-about h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary);
    margin: 32px 0 12px;
}
.local-about p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--gray-700);
}
.local-about a {
    color: var(--accent);
    font-weight: 500;
}
.local-about a:hover {
    text-decoration: underline;
}

/* Products grid (local page variant) */
.local-products {
    padding: 80px 0;
    background: var(--gray-100);
}
.local-products .section-header {
    text-align: center;
    margin-bottom: 48px;
}
.local-products .section-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}
.local-products .section-header p {
    font-size: 16px;
    color: var(--gray-700);
    max-width: 640px;
    margin: 0 auto;
}
.local-products .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.local-products .card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.local-products .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.local-products .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.local-products .card-body {
    padding: 24px;
}
.local-products .card-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
}
.local-products .card-body p {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 12px;
    line-height: 1.6;
}
.local-products .card-link-arrow {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

/* Trust section */
.local-trust {
    padding: 80px 0;
    background: var(--white);
}
.local-trust .section-header {
    text-align: center;
    margin-bottom: 48px;
}
.local-trust .section-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}
.local-trust .section-header p {
    font-size: 16px;
    color: var(--gray-700);
    max-width: 640px;
    margin: 0 auto;
}
.local-trust .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Service areas links */
.local-areas {
    padding: 60px 0;
    background: var(--gray-100);
}
.local-areas h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 24px;
}
.local-areas .area-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.local-areas .area-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s;
}
.local-areas .area-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Responsive — local pages */
@media (max-width: 768px) {
    .local-about {
        padding: 60px 0;
    }
    .local-about h2 {
        font-size: 26px;
    }
    .local-products {
        padding: 60px 0;
    }
    .local-products .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .local-trust {
        padding: 60px 0;
    }
    .local-trust .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .local-areas .area-links {
        gap: 8px;
    }
}
@media (max-width: 480px) {
    .local-products .card-grid {
        grid-template-columns: 1fr;
    }
    .local-trust .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   JUSTCALL — Hide default open button, restyle close button
   ============================================ */
.iframe-button-control #toggleButton {
    display: none !important;
}
.iframe-button-control #cross {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}
.iframe-button-control #cross svg path,
.iframe-button-control #cross svg line {
    stroke: var(--white) !important;
}

/* ============================================
   MOBILE STICKY CALL BAR
   ============================================ */
.mobile-call-bar {
    display: none;
}
@media (max-width: 768px) {
    .mobile-call-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        padding: 10px 16px;
        background: var(--accent);
        box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    }
    .mobile-call-bar-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: var(--white);
        font-size: 16px;
        letter-spacing: 0.3px;
        text-decoration: none;
    }
    .mobile-call-bar-btn i {
        font-size: 18px;
        animation: phone-ring 1.5s ease-in-out infinite;
    }
    @keyframes phone-ring {
        0%, 100% { transform: rotate(0deg); }
        10% { transform: rotate(12deg); }
        20% { transform: rotate(-10deg); }
        30% { transform: rotate(8deg); }
        40% { transform: rotate(0deg); }
    }
    body {
        padding-bottom: 56px;
    }
}
