/* ==========================================
   SmartCurtains - Premium Smart Curtain Website
   Color Palette: Deep Green (#014F3C), Gray-White
   ========================================== */

:root {
    --primary-color: #014F3C;
    --primary-light: #026B52;
    --primary-dark: #013D2F;
    --accent-gold: #B8A369;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #888888;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f0f2f5;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-gray);
    line-height: 1.8;
}

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

a:hover {
    color: var(--primary-light);
}

/* ==========================================
   Layout Components
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

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

.section-header h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-header p {
    max-width: 600px;
    margin: 30px auto 0;
    font-size: 1.1rem;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-outline-white:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.875rem;
}

/* ==========================================
   Header / Navigation
   ========================================== */
.top-bar {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 30px;
}

.top-bar-contact a {
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-contact a:hover {
    color: var(--accent-gold);
}

.language-switch {
    display: flex;
    gap: 10px;
}

.language-switch a {
    color: rgba(255,255,255,0.7);
    padding: 5px 10px;
    border-radius: 3px;
}

.language-switch a:hover,
.language-switch a.active {
    color: var(--bg-white);
    background: rgba(255,255,255,0.1);
}

header {
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.logo span {
    font-weight: 300;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

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

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

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

.header-cta .btn {
    padding: 12px 25px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1,79,60,0.3) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    max-width: 700px;
}

.hero-content h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.trust-badge i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* ==========================================
   Brand Partners Section
   ========================================== */
.brand-partners {
    background: var(--bg-white);
    padding: 40px 0;
}

.partners-title {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.partner-logo {
    text-align: center;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.partner-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* ==========================================
   Trust & Rating Section
   ========================================== */
.trust-section {
    background: var(--primary-color);
    padding: 30px 0;
}

.trust-tagline {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 1.25rem;
    color: var(--accent-gold);
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.trust-rating {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.trust-number {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.trust-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

/* ==========================================
   Features Section
   ========================================== */
.features {
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 50px 35px;
    text-align: center;
    border-radius: 5px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 0.95rem;
}

/* ==========================================
   Products Section
   ========================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

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

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1,79,60,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-gray);
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 20px;
}

.product-specs span i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.product-featured {
    position: relative;
    border: 2px solid var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    z-index: 10;
}

/* ==========================================
   Technical Specifications
   ========================================== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.spec-card {
    background: var(--bg-white);
    border-radius: 5px;
    padding: 30px;
    box-shadow: var(--shadow-light);
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.spec-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.spec-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-gray);
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list li span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ==========================================
   Smart Integration Section
   ========================================== */
.smart-integration {
    background: var(--primary-color);
    color: var(--bg-white);
}

.smart-integration .section-header h2,
.smart-integration .section-header p {
    color: var(--bg-white);
}

.smart-integration .section-header h2::after {
    background: var(--accent-gold);
}

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

.integration-card {
    background: rgba(255,255,255,0.1);
    padding: 40px 25px;
    text-align: center;
    border-radius: 5px;
    transition: var(--transition);
}

.integration-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.integration-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.integration-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.integration-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.integration-card h4 {
    color: var(--bg-white);
    margin-bottom: 10px;
}

.integration-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.integration-grid-extended {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.integration-grid-extended .integration-card {
    padding: 30px 20px;
}

.integration-grid-extended .integration-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

.integration-grid-extended .integration-icon i {
    font-size: 1.8rem;
}

.integration-grid-extended h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.integration-grid-extended p {
    font-size: 0.85rem;
}

/* ==========================================
   How It Works Section
   ========================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--border-color);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 120px;
    height: 120px;
    background: var(--bg-white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.step-number span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.process-step h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 0.95rem;
    padding: 0 10px;
}

/* ==========================================
   Projects / Gallery Section
   ========================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-gray);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(1,79,60,0.05);
}

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

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1,79,60,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.gallery-overlay h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* ==========================================
   Showcase Gallery Section
   ========================================== */
.showcase-section {
    overflow: hidden;
}

.showcase-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.showcase-filter {
    padding: 10px 28px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.showcase-filter:hover,
.showcase-filter.active {
    background: var(--primary-color);
    color: white;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: #000;
}

.showcase-item img,
.showcase-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img,
.showcase-item:hover video {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.showcase-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.showcase-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
}

.showcase-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(1, 79, 60, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.showcase-play-btn i {
    color: white;
    font-size: 22px;
    margin-left: 3px;
}

.showcase-video-item:hover .showcase-play-btn {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Lightbox */
.showcase-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.showcase-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
}

/* ==========================================
   About Section
   ========================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: var(--shadow-heavy);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 5px;
    z-index: -1;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.contact-item div h4 {
    margin-bottom: 5px;
}

.contact-item div p,
.contact-item div a {
    color: var(--text-gray);
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 5px;
}

.contact-form h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1,79,60,0.1);
}

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

.contact-form .btn {
    width: 100%;
}

/* ==========================================
   Product Detail Page
   ========================================== */
.product-detail-hero {
    background: var(--bg-light);
    padding: 80px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    width: 100%;
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    height: 80px;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 30px;
}

.product-features {
    margin-bottom: 30px;
}

.product-features h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-features ul {
    list-style: none;
}

.product-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: var(--primary-color);
}

.customization-form {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.customization-form h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.size-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.color-option:hover,
.color-option.selected {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* ==========================================
   Page Hero (Interior Pages)
   ========================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: var(--bg-white);
}

.page-hero h1 {
    color: var(--bg-white);
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.breadcrumb {
    margin-top: 20px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--bg-white);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
    margin: 0 10px;
}

/* ==========================================
   Footer
   ========================================== */
footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-links h4 {
    color: var(--bg-white);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.6);
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

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

.footer-bottom-links a:hover {
    color: var(--bg-white);
}

/* Golden Key Marketing Footer Credit */
.footer-credit {
    text-align: center;
    padding: 20px 0;
    background: rgba(0,0,0,0.2);
    margin-top: 20px;
}

.footer-credit p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-credit a {
    color: rgba(255,255,255,0.5);
}

.footer-credit a:hover {
    color: var(--bg-white);
}

/* ==========================================
   Lightbox
   ========================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

/* ==========================================
   Free Samples Section
   ========================================== */
.free-samples-section {
    background: var(--bg-white);
}

.samples-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.samples-text h2 {
    margin-bottom: 20px;
}

.samples-text > p {
    margin-bottom: 25px;
}

.samples-features {
    list-style: none;
    margin-bottom: 30px;
}

.samples-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.samples-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.samples-image {
    position: relative;
}

.samples-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: var(--shadow-heavy);
}

.samples-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 20px 25px;
    border-radius: 5px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.samples-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.samples-badge small {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Free Samples Page Styles */
.samples-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.samples-info h2 {
    margin-bottom: 20px;
}

.samples-info > p {
    margin-bottom: 30px;
}

.samples-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.benefit-item i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.benefit-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit-item p {
    font-size: 0.9rem;
    margin: 0;
}

.fabric-categories h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.fabric-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fabric-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: var(--transition);
}

.fabric-tag:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.samples-form-container .contact-form {
    position: sticky;
    top: 100px;
}

/* ==========================================
   FAQ Page Styles
   ========================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.faq-category h3 i {
    font-size: 1.2rem;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question span {
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    padding-right: 15px;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--primary-color);
}

.faq-item.active .faq-question span {
    color: var(--bg-white);
}

.faq-item.active .faq-question i {
    color: var(--bg-white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 25px;
    margin-bottom: 15px;
}

.faq-answer p:first-child {
    padding-top: 20px;
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
    padding-bottom: 20px;
}

.faq-answer ul {
    padding-left: 45px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

/* ==========================================
   Service Areas Section
   ========================================== */
.service-areas .areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.area-group {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow-light);
}

.area-group h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-group h4 i {
    font-size: 1rem;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    padding: 8px 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.area-group li:last-child {
    border-bottom: none;
}

/* ==========================================
   CTA Banner
   ========================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-banner .btn {
    margin: 0 10px;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .features-grid,
    .products-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integration-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .service-areas .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        gap: 30px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .top-bar {
        padding: 8px 0;
    }

    .top-bar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .top-bar-contact {
        flex-direction: row;
        gap: 15px;
    }

    .top-bar-contact a {
        font-size: 0.8rem;
    }

    .top-bar-contact a:last-child {
        display: none;
    }

    .language-switch a {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    .header-main {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        display: none;
        width: 100%;
        order: 3;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 60px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: auto;
        max-width: none;
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .hero-trust-badges {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .trust-badge {
        flex: 1;
        flex-direction: column;
        text-align: center;
        font-size: 0.7rem;
        gap: 4px;
    }

    .trust-badge i {
        font-size: 1rem;
    }

    .features-grid,
    .products-grid,
    .integration-grid,
    .process-steps,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .showcase-filters {
        gap: 8px;
    }

    .showcase-filter {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .showcase-play-btn {
        width: 48px;
        height: 48px;
    }

    .showcase-play-btn i {
        font-size: 18px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .about-content,
    .contact-wrapper,
    .product-detail-grid,
    .samples-content,
    .samples-page-content {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }

    .samples-form-container .contact-form {
        position: static;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .trust-item {
        padding: 10px 5px;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
    }

    .trust-icon i {
        font-size: 1rem;
    }

    .trust-number,
    .trust-rating {
        font-size: 1.1rem;
    }

    .trust-text {
        font-size: 0.75rem;
    }

    .service-areas .areas-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        gap: 20px;
    }

    .partner-logo {
        flex: 0 0 calc(50% - 10px);
    }

    .samples-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }

    .about-image::before {
        display: none;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .gallery-filters {
        flex-wrap: wrap;
    }
}

/* ==========================================
   Promo Popup Modal
   ========================================== */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.promo-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-popup {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 800px;
    aspect-ratio: 4 / 3;
    display: grid;
    grid-template-columns: 55% 45%;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.promo-popup-overlay.active .promo-popup {
    transform: scale(1);
}

.promo-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.promo-popup-close:hover {
    background: var(--bg-white);
    transform: rotate(90deg);
}

.promo-popup-image {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.promo-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.promo-popup-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.promo-image-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promo-overlay-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.promo-overlay-badge.secondary {
    background: #B8A369;
    font-size: 0.85rem;
    padding: 8px 14px;
}

.promo-overlay-micro {
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.promo-popup-content {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.promo-badge i {
    font-size: 0.65rem;
}

.promo-popup-content h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.promo-popup-content .promo-subtext {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-offer {
    background: linear-gradient(135deg, rgba(1, 79, 60, 0.08) 0%, rgba(1, 79, 60, 0.04) 100%);
    border-left: 3px solid var(--primary-color);
    padding: 15px 18px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
}

.promo-offer strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.promo-offer small {
    color: var(--text-light);
    font-size: 0.75rem;
}

.promo-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-buttons .btn {
    text-align: center;
    padding: 14px 20px;
    font-size: 0.9rem;
}

.promo-buttons .btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-gray);
}

.promo-buttons .btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(1, 79, 60, 0.05);
}

/* Popup Responsive */
@media (max-width: 768px) {
    .promo-popup {
        max-width: 95%;
        max-height: 90vh;
        aspect-ratio: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .promo-popup-image {
        height: 180px;
    }

    .promo-popup-content {
        padding: 25px 20px 30px;
    }

    .promo-popup-content h2 {
        font-size: 1.4rem;
    }

    .promo-popup-content .promo-subtext {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .promo-offer {
        padding: 12px 15px;
        margin-bottom: 15px;
    }

    .promo-offer strong {
        font-size: 1rem;
    }

    .promo-badge {
        margin-bottom: 15px;
    }

    .promo-buttons {
        flex-direction: row;
        gap: 8px;
    }

    .promo-buttons .btn {
        flex: 1;
        padding: 12px 10px;
        font-size: 0.8rem;
    }

    .promo-popup-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .promo-popup-image {
        height: 140px;
    }

    .promo-popup-content {
        padding: 20px 15px 25px;
    }

    .promo-popup-content h2 {
        font-size: 1.2rem;
    }

    .promo-buttons {
        flex-direction: column;
    }

    .promo-buttons .btn {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .feature-card,
    .contact-form {
        padding: 30px 20px;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .showcase-overlay h4 {
        font-size: 0.8rem;
    }

    .showcase-overlay p {
        font-size: 0.7rem;
    }

    .showcase-overlay {
        padding: 12px;
    }

    .size-inputs {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Homepage Conversion Optimization Styles
   ========================================== */

/* Hero Upgrades */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-highlight {
    color: #B8A369;
}

.hero-subhead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 6px;
}

.proof-item i {
    color: #B8A369;
}

.hero-savings-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #B8A369;
    font-weight: 500;
}

.hero-savings-note i {
    margin-right: 5px;
}

.btn-lg {
    padding: 18px 35px;
    font-size: 1.1rem;
}

/* Factory Direct Section */
.factory-direct-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.factory-direct-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.factory-direct-text h2 {
    margin-bottom: 20px;
}

.factory-direct-text > p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.factory-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.factory-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.factory-benefits li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.factory-benefits li strong {
    color: var(--text-dark);
}

.factory-direct-chart {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.factory-direct-chart h4 {
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-dark);
}

.cost-comparison {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cost-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cost-label {
    width: 140px;
    font-size: 0.85rem;
    color: var(--text-gray);
    flex-shrink: 0;
}

.bar-fill {
    height: 40px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.cost-bar.retail .bar-fill {
    background: linear-gradient(90deg, #ef4444 0%, #f97316 25%, #eab308 50%, #22c55e 100%);
}

.cost-bar.factory-direct .bar-fill {
    background: var(--primary-color);
}

.bar-segments {
    display: flex;
    height: 100%;
    width: 100%;
}

.segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #fff;
    font-weight: 600;
    flex: 1;
    text-transform: uppercase;
}

.segment.manufacturer { background: rgba(0,0,0,0.1); }
.segment.distributor { background: rgba(0,0,0,0.2); }
.segment.retail-markup { background: rgba(0,0,0,0.3); }
.segment.installer { background: rgba(0,0,0,0.1); }
.segment.our-price { padding: 0 20px; }

.cost-percent {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    min-width: 80px;
    text-align: right;
}

.cost-percent.savings {
    color: var(--primary-color);
}

.chart-disclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
}

/* Product Labels */
.product-labels {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}

.product-label {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-label.motorized {
    background: var(--primary-color);
    color: #fff;
}

.product-label.smart {
    background: #3b82f6;
    color: #fff;
}

.product-label.blackout {
    background: #1f2937;
    color: #fff;
}

.product-label.solar {
    background: #f59e0b;
    color: #fff;
}

.product-label.sheer {
    background: #8b5cf6;
    color: #fff;
}

.product-label.childsafe {
    background: #10b981;
    color: #fff;
}

.product-label.custom {
    background: #B8A369;
    color: #fff;
}

.product-ideal {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.product-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.product-quote-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: underline;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table th:first-child {
    background: var(--primary-dark);
}

.comparison-table td:first-child {
    background: #f8f9fa;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .fa-star {
    color: #f59e0b;
    font-size: 0.8rem;
}

.comparison-table .fa-check {
    color: var(--primary-color);
}

/* Integration Features */
.integration-features {
    margin-bottom: 50px;
}

.integration-main-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

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

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Process Step Time */
.step-time {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: rgba(1, 79, 60, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.step-time i {
    margin-right: 5px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.pricing-card.featured .pricing-header {
    background: var(--primary-color);
    color: #fff;
}

.pricing-card.featured .pricing-header h3,
.pricing-card.featured .pricing-header .pricing-subtitle {
    color: #fff;
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: #B8A369;
    color: #fff;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 0 6px 6px;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background: var(--bg-light);
}

.pricing-header h3 {
    margin-bottom: 5px;
}

.pricing-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.pricing-features li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.pricing-ideal {
    font-size: 0.8rem;
    color: var(--text-gray);
    padding: 12px;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 20px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.pricing-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 30px;
}

/* Project Location Chips */
.project-location-chip {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* CTA Trust Badges */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cta-trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cta-trust-badges i {
    color: #B8A369;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.sticky-cta-btn.primary {
    background: var(--primary-color);
    color: #fff;
}

.sticky-cta-btn.secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

/* Responsive for New Sections */
@media (max-width: 1024px) {
    .factory-direct-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        order: -1;
    }

    .integration-main-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    footer {
        padding-bottom: 80px;
    }

    .hero-proof-strip {
        flex-direction: column;
        gap: 10px;
    }

    .proof-item {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-subhead {
        font-size: 1rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .integration-main-features {
        grid-template-columns: 1fr 1fr;
        padding: 25px;
        gap: 20px;
    }

    .feature-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 50px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .hero-trust-badges {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }

    .trust-badge {
        flex: 1;
        flex-direction: column;
        text-align: center;
        font-size: 0.65rem;
        gap: 3px;
    }

    .trust-badge i {
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .btn-lg {
        padding: 14px 25px;
        font-size: 1rem;
    }

    .factory-direct-chart {
        padding: 20px;
    }

    .cost-label {
        width: 100px;
        font-size: 0.75rem;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }

    .pricing-header,
    .pricing-body {
        padding: 20px;
    }
}
