/*
Theme Name: Shade Creators
Description: Premium window blinds theme
Version: 1.5.0
*/

:root {
  --linen: #F2E9D9;
  --sand: #D4C6AE;
  --olive: #BEC5A5;
  --sage: #8A8E73;
  --charcoal: #2E2F22;
  --white: #ffffff;
  --dark: #1f2018;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Montserrat', sans-serif; background: var(--linen); color: var(--charcoal); line-height: 1.7; overflow-x: hidden; max-width: 100%; position: relative; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 50px; display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
}
body.home .site-header { background: transparent; }
body.home .site-header .logo img { filter: brightness(0) invert(1); }
body.home .site-header .main-nav a { color: var(--white); }
body.home .site-header .nav-toggle span { background: var(--white); }

body.home .site-header.scrolled, body:not(.home) .site-header {
  background: rgba(242, 233, 217, 0.98); backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 15px 50px;
}
body.home .site-header.scrolled .logo img, body:not(.home) .site-header .logo img { filter: none; }
body.home .site-header.scrolled .main-nav a, body:not(.home) .site-header .main-nav a { color: var(--charcoal); }
body.home .site-header.scrolled .nav-toggle span, body:not(.home) .site-header .nav-toggle span { background: var(--charcoal); }

.logo img { height: 40px; transition: filter 0.3s ease; }
.main-nav { display: flex; gap: 35px; }
.main-nav ul { display: flex; gap: 35px; list-style: none; }
.main-nav a { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.3s; }
.main-nav a:hover { color: var(--olive) !important; }
.main-nav li { position: relative; }
.main-nav ul ul {
  position: absolute; top: 100%; left: 0; background: var(--white); min-width: 200px;
  padding: 15px 0; box-shadow: 0 15px 40px rgba(0,0,0,0.12); border-radius: 4px;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; flex-direction: column; gap: 0;
}
.main-nav li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav ul ul a { display: block; padding: 10px 20px; color: var(--charcoal) !important; font-size: 0.65rem; }
.main-nav ul ul a:hover { background: var(--linen); }

.nav-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 10px; background: none; border: none; z-index: 1002; }
.nav-toggle span { display: block; width: 28px; height: 2px; transition: all 0.3s; }
.nav-toggle.active span:first-child { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:last-child { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
  position: fixed; inset: 0; background: var(--charcoal); z-index: 1001;
  display: flex; align-items: flex-start; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu nav { text-align: center; width: 100%; padding: 100px 20px 40px; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li { margin: 0; }
.mobile-menu a { display: block; font-size: 1.4rem; font-weight: 300; color: var(--linen); padding: 12px 0; letter-spacing: 0.1em; }
.mobile-menu a:hover { color: var(--olive); }
/* Nested submenus: smaller, indented, subtle divider */
.mobile-menu ul ul { margin: 0 0 10px; padding: 0; }
.mobile-menu ul ul a { font-size: 1rem; color: var(--sand); padding: 8px 0; }
.mobile-menu ul ul a:hover { color: var(--olive); }
.mobile-menu ul ul ul a { font-size: 0.85rem; opacity: 0.85; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(46,47,34,0.85), rgba(46,47,34,0.7)); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--olive); border-radius: 50%; opacity: 0.4; animation: float 20s infinite; }
.particle:nth-child(1) { left: 10%; animation-duration: 25s; }
.particle:nth-child(2) { left: 25%; animation-duration: 20s; animation-delay: -5s; }
.particle:nth-child(3) { left: 40%; animation-duration: 22s; animation-delay: -10s; }
.particle:nth-child(4) { left: 55%; animation-duration: 28s; animation-delay: -3s; }
.particle:nth-child(5) { left: 70%; animation-duration: 24s; animation-delay: -8s; }
.particle:nth-child(6) { left: 85%; animation-duration: 26s; animation-delay: -12s; }
@keyframes float { 0% { transform: translateY(100vh); opacity: 0; } 10% { opacity: 0.4; } 90% { opacity: 0.4; } 100% { transform: translateY(-100vh); opacity: 0; } }

.hero-content { position: relative; z-index: 2; padding: 0 50px; max-width: 800px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; border: 1px solid rgba(190,197,165,0.3); border-radius: 50px; margin-bottom: 30px; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--olive); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }
.hero-badge span { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em; color: var(--sand); }
.hero-title { font-size: clamp(2.5rem, 8vw, 5.5rem); font-weight: 200; color: var(--white); line-height: 1; margin-bottom: 20px; }
.hero-title strong { display: block; color: var(--olive); font-weight: 400; font-style: italic; }
.hero-divider { width: 60px; height: 2px; background: var(--olive); margin: 25px 0; }
.hero-text { font-size: 1rem; color: var(--sand); max-width: 450px; margin-bottom: 35px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px; background: var(--olive); color: var(--charcoal);
  padding: 15px 30px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--sage); gap: 15px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px; background: transparent;
  border: 1px solid rgba(190,197,165,0.4); color: var(--white); padding: 15px 30px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; transition: all 0.3s;
}
.btn-outline:hover { background: rgba(190,197,165,0.1); border-color: var(--olive); }

.hero-stats { position: absolute; bottom: 80px; right: 50px; display: flex; gap: 40px; z-index: 2; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 200; color: var(--olive); }
.hero-stat-label { font-size: 0.55rem; letter-spacing: 0.12em; color: var(--sand); margin-top: 5px; }
.scroll-indicator { position: absolute; bottom: 30px; left: 50px; display: flex; align-items: center; gap: 12px; z-index: 2; }
.scroll-mouse { width: 22px; height: 35px; border: 2px solid var(--sand); border-radius: 12px; position: relative; }
.scroll-mouse::after { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 8px; background: var(--olive); border-radius: 2px; animation: scrollAnim 2s infinite; }
@keyframes scrollAnim { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; } 50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; } }
.scroll-indicator span { font-size: 0.55rem; letter-spacing: 0.15em; color: var(--sand); }

/* Sections */
section { padding: 100px 50px; }
.section-header { margin-bottom: 60px; }
.section-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; color: var(--sage); margin-bottom: 10px; display: block; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 300; }
.section-title strong { font-weight: 600; }
.section-desc { color: var(--sage); font-size: 0.9rem; max-width: 400px; margin-top: 15px; }

/* Solutions */
.solutions { background: var(--white); }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.solution-card { background: var(--linen); padding: 40px 30px; border-radius: 6px; position: relative; overflow: hidden; transition: all 0.4s; }
.solution-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--olive), var(--sage)); transform: scaleX(0); transition: transform 0.4s; }
.solution-card:hover::before { transform: scaleX(1); }
.solution-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.solution-num { position: absolute; top: 20px; right: 25px; font-size: 4rem; font-weight: 200; color: var(--sand); opacity: 0.3; line-height: 1; }
.solution-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--olive), var(--sage)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; }
.solution-icon svg { width: 28px; height: 28px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.solution-icon img { width: 32px; height: 32px; object-fit: contain; }

/* Products Listing (Blinds / category pages) */
.products-listing { padding: 100px 50px; background: var(--linen); }
.products-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.product-card { display: flex; flex-direction: column; background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.35s, box-shadow 0.35s; color: inherit; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(0,0,0,0.12); }
.product-card-img { position: relative; height: 240px; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-cat { position: absolute; top: 15px; left: 15px; background: rgba(46,47,34,0.85); color: var(--linen); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: 50px; }
.product-card-body { padding: 25px; display: flex; flex-direction: column; flex: 1; }
.product-card-body h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.product-card-body p { color: var(--sage); font-size: 0.85rem; line-height: 1.6; margin-bottom: 18px; flex: 1; }
.product-card-link { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; color: var(--charcoal); transition: color 0.3s; }
.product-card:hover .product-card-link { color: var(--sage); }
.products-listing-body { max-width: 900px; margin: 60px auto 0; color: var(--charcoal); line-height: 1.9; }
.solution-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.solution-card p { color: var(--sage); font-size: 0.85rem; margin-bottom: 20px; line-height: 1.7; }
.solution-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; color: var(--charcoal); transition: gap 0.3s; }
.solution-link:hover { gap: 15px; color: var(--sage); }

/* Gallery */
.gallery-section { padding: 0; background: var(--charcoal); }
.gallery-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.gallery-content { display: flex; flex-direction: column; justify-content: center; padding: 80px; color: var(--linen); }
.gallery-content .section-label { color: var(--olive); }
.gallery-content .section-title { color: var(--linen); margin-bottom: 20px; }
.gallery-content .section-desc { color: var(--sand); max-width: 100%; }
.gallery-stats { display: flex; gap: 50px; margin-top: 40px; }
.gallery-stat-num { font-size: 2.5rem; font-weight: 300; color: var(--olive); }
.gallery-stat-label { font-size: 0.6rem; letter-spacing: 0.1em; color: var(--sand); margin-top: 5px; }
.gallery-images { display: grid; grid-template-rows: repeat(3, 1fr); }
.gallery-img { overflow: hidden; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-img:hover img { transform: scale(1.08); }

/* Products */
.products-section { background: var(--linen); }
.products-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.product-visual { height: 500px; background: var(--charcoal); border-radius: 8px; position: relative; overflow: hidden; }
.product-layers { position: absolute; inset: 40px; display: flex; flex-direction: column; gap: 8px; }
.product-layer { flex: 1; background: linear-gradient(90deg, var(--sand), var(--olive)); border-radius: 3px; opacity: 0; transform: scaleX(0); transform-origin: left; animation: layerIn 0.6s ease forwards; }
.product-layer:nth-child(1) { animation-delay: 0.1s; }
.product-layer:nth-child(2) { animation-delay: 0.15s; }
.product-layer:nth-child(3) { animation-delay: 0.2s; }
.product-layer:nth-child(4) { animation-delay: 0.25s; }
.product-layer:nth-child(5) { animation-delay: 0.3s; }
.product-layer:nth-child(6) { animation-delay: 0.35s; }
.product-layer:nth-child(7) { animation-delay: 0.4s; }
.product-layer:nth-child(8) { animation-delay: 0.45s; }
@keyframes layerIn { to { opacity: 1; transform: scaleX(1); } }
.product-info h3 { font-size: 1.8rem; font-weight: 300; margin-bottom: 20px; }
.product-info h3 strong { font-weight: 600; }
.product-info > p { color: var(--sage); font-size: 0.9rem; line-height: 1.8; margin-bottom: 30px; }
.features-list { list-style: none; margin-bottom: 35px; }
.features-list li { padding: 12px 0; border-bottom: 1px solid var(--sand); font-size: 0.85rem; display: flex; align-items: center; gap: 12px; }
.features-list li::before { content: ''; width: 8px; height: 8px; background: var(--olive); border-radius: 50%; }

/* About Home */
.about-section { background: var(--olive); position: relative; overflow: hidden; }
.about-section::before { content: ''; position: absolute; width: 400px; height: 400px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; top: -150px; right: -100px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.about-content .section-title { margin-bottom: 25px; }
.about-text { font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; color: var(--charcoal); }
.about-signature { display: flex; align-items: center; gap: 15px; margin-top: 30px; }
.about-signature span { font-style: italic; font-weight: 500; }
.about-signature::before { content: ''; width: 40px; height: 2px; background: var(--charcoal); }
.about-image { position: relative; }
.about-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 8px; }
.about-badge { position: absolute; bottom: -25px; right: -25px; width: 120px; height: 120px; background: var(--sage); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
.about-badge-num { font-size: 2.2rem; font-weight: 300; }
.about-badge-text { font-size: 0.5rem; letter-spacing: 0.1em; text-align: center; }

/* News */
.news-section { background: var(--white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card { cursor: pointer; }
.news-card-img { height: 250px; overflow: hidden; border-radius: 8px; margin-bottom: 20px; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-card-img img { transform: scale(1.1); }
.news-card-date { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--sage); margin-bottom: 10px; display: block; }
.news-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.news-card h3 a { color: inherit; transition: color 0.3s; }
.news-card:hover h3 a { color: var(--sage); }
.news-card p { color: var(--sage); font-size: 0.85rem; }

/* Contact Home */
.contact-section { background: var(--charcoal); color: var(--linen); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info .section-title { color: var(--linen); margin-bottom: 20px; }
.contact-text { color: var(--sand); margin-bottom: 40px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 25px; }
.contact-item { display: flex; gap: 15px; }
.contact-item-icon { width: 50px; height: 50px; border: 1.5px solid var(--olive); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.contact-item:hover .contact-item-icon { background: var(--olive); }
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--olive); fill: none; transition: stroke 0.3s; }
.contact-item:hover .contact-item-icon svg { stroke: var(--charcoal); }
.contact-item-label { font-size: 0.55rem; letter-spacing: 0.12em; color: var(--olive); margin-bottom: 5px; }
.contact-item-value { font-size: 0.95rem; }

.contact-form form { display: flex; flex-direction: column; gap: 25px; }
.form-field { position: relative; }
.form-field input, .form-field textarea { width: 100%; background: transparent; border: none; border-bottom: 1.5px solid var(--sage); padding: 12px 0; color: var(--linen); font-family: inherit; font-size: 0.9rem; transition: border-color 0.3s; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--olive); }
.form-field label { position: absolute; left: 0; top: 12px; color: var(--sand); font-size: 0.7rem; letter-spacing: 0.08em; pointer-events: none; transition: all 0.3s; }
.form-field input:focus ~ label, .form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label, .form-field textarea:not(:placeholder-shown) ~ label { top: -12px; font-size: 0.55rem; color: var(--olive); }
.form-field textarea { resize: none; height: 100px; }
.btn-submit { align-self: flex-start; background: var(--olive); color: var(--charcoal); border: none; padding: 16px 35px; font-family: inherit; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; cursor: pointer; transition: all 0.3s; }
.btn-submit:hover { background: var(--sage); }

/* Page Hero */
.page-hero { padding: 180px 50px 100px; background: var(--charcoal); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 400px; height: 400px; border: 1px solid rgba(190,197,165,0.1); border-radius: 50%; top: -150px; right: -100px; }
.page-hero-content { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a, .breadcrumb span { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--sand); }
.breadcrumb a:hover { color: var(--olive); }
.page-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 200; color: var(--white); }
.page-title strong { font-weight: 600; }
.page-subtitle { color: var(--sand); margin-top: 15px; font-size: 1rem; }

/* Product Intro */
.product-intro { padding: 100px 50px; background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.intro-image { height: 500px; border-radius: 8px; overflow: hidden; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }
.intro-content .section-label { text-transform: uppercase; }
.intro-content h2 { font-size: 1.8rem; font-weight: 300; margin-bottom: 25px; }
.intro-content h2 strong { font-weight: 600; }
.intro-content p { color: var(--sage); font-size: 0.9rem; line-height: 1.9; margin-bottom: 15px; }

/* Features */
.features-section { padding: 100px 50px; background: var(--linen); }
.features-header { text-align: center; margin-bottom: 60px; }
.features-header h2 { font-size: 1.6rem; font-weight: 300; }
.features-header h2 strong { font-weight: 600; }
.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 25px; max-width: 1200px; margin: 0 auto; }
.feature-card { background: var(--white); padding: 35px 25px; border-radius: 8px; text-align: center; transition: all 0.4s; }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.feature-icon { width: 55px; height: 55px; background: var(--olive); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.feature-icon svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.feature-card h3 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.feature-card p { color: var(--sage); font-size: 0.75rem; }

/* Product Gallery */
.product-gallery { padding: 100px 50px; background: var(--charcoal); }
.product-gallery-header { text-align: center; margin-bottom: 50px; }
.product-gallery-header h2 { font-size: 1.6rem; font-weight: 300; color: var(--white); }
.product-gallery-header h2 strong { font-weight: 600; }
.product-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.product-gallery-item { height: 220px; border-radius: 6px; overflow: hidden; }
.product-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-gallery-item:hover img { transform: scale(1.1); }

/* CTA */
.cta-section { padding: 80px 50px; background: var(--olive); text-align: center; }
.cta-section h2 { font-size: 1.6rem; font-weight: 300; color: var(--charcoal); margin-bottom: 15px; }
.cta-section h2 strong { font-weight: 600; }
.cta-section p { color: var(--charcoal); opacity: 0.8; margin-bottom: 30px; }
.cta-section .btn-primary { background: var(--charcoal); color: var(--white); }
.cta-section .btn-primary:hover { background: var(--dark); }

/* About Page */
.about-page-section { padding: 100px 50px; }
.about-page-section.white { background: var(--white); }
.about-page-section.linen { background: var(--linen); }
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-page-grid.reverse { direction: rtl; }
.about-page-grid.reverse > * { direction: ltr; }
.about-page-content h2 { font-size: 1.8rem; font-weight: 300; margin-bottom: 25px; color: var(--charcoal); }
.about-page-content h2 strong { font-weight: 600; }
.about-page-content p { color: var(--sage); font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; }
.about-page-image img { width: 100%; height: 450px; object-fit: cover; border-radius: 8px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.value-card { background: var(--white); padding: 40px 30px; border-radius: 8px; text-align: center; }
.value-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 15px; color: var(--charcoal); }
.value-card p { color: var(--sage); font-size: 0.85rem; line-height: 1.7; }

/* Contact Page */
.contact-page-section { padding: 100px 50px; background: var(--white); }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; max-width: 1200px; margin: 0 auto; }
.contact-page-info h2 { font-size: 1.6rem; font-weight: 300; margin-bottom: 20px; color: var(--charcoal); }
.contact-page-info h2 strong { font-weight: 600; }
.contact-page-info > p { color: var(--sage); margin-bottom: 40px; line-height: 1.8; }
.contact-page-items { display: flex; flex-direction: column; gap: 30px; }
.contact-page-item { display: flex; gap: 20px; }
.contact-page-item-icon { width: 55px; height: 55px; background: var(--olive); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-page-item-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; }
.contact-page-item h4 { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--sage); margin-bottom: 5px; font-weight: 600; }
.contact-page-item p { font-size: 1rem; color: var(--charcoal); }
.contact-page-form { background: var(--linen); padding: 50px; border-radius: 8px; }
.contact-page-form h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 30px; color: var(--charcoal); }
.contact-page-form form { display: flex; flex-direction: column; gap: 25px; }
.contact-page-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-page-form input, .contact-page-form textarea { width: 100%; padding: 15px 20px; background: var(--white); border: 1px solid var(--sand); border-radius: 4px; font-family: inherit; font-size: 0.9rem; transition: border-color 0.3s; }
.contact-page-form input:focus, .contact-page-form textarea:focus { outline: none; border-color: var(--olive); }
.contact-page-form textarea { resize: none; height: 120px; }
.contact-page-form .btn-primary { width: 100%; justify-content: center; }
.map-section { height: 400px; background: var(--sand); }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* Footer */
.site-footer { background: var(--dark); padding: 40px 50px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; max-width: 1200px; margin: 0 auto; }
.footer-logo img { height: 35px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { color: var(--sand); font-size: 0.65rem; letter-spacing: 0.1em; transition: color 0.3s; }
.footer-links a:hover { color: var(--olive); }
.footer-copy { color: var(--sage); font-size: 0.6rem; letter-spacing: 0.08em; }

/* Responsive */
@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { display: none; }
}
@media (max-width: 1024px) {
  section { padding: 80px 30px; }
  .site-header { padding: 15px 30px; }
  body.home .site-header.scrolled, body:not(.home) .site-header { padding: 12px 30px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .solutions-grid, .news-grid, .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery-wrap { grid-template-columns: 1fr; }
  .gallery-content { padding: 60px 30px; }
  .gallery-images { grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr; height: 250px; }
  .products-grid, .about-grid, .about-page-grid, .contact-grid, .contact-page-grid, .intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-page-grid.reverse { direction: ltr; }
  .product-visual { height: 350px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .products-listing { padding: 80px 30px; }
  .products-listing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 60px 20px; }
  .site-header { padding: 12px 20px; }
  body.home .site-header.scrolled, body:not(.home) .site-header { padding: 10px 20px; }
  .hero-content { padding: 0 20px; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .scroll-indicator { left: 20px; }
  .gallery-stats { flex-direction: column; gap: 25px; }
  .gallery-images { grid-template-columns: 1fr; grid-template-rows: repeat(3, 150px); height: auto; }
  .about-image img, .about-page-image img { height: 350px; }
  .about-badge { width: 100px; height: 100px; bottom: -15px; right: -10px; }
  .about-badge-num { font-size: 1.8rem; }
  .page-hero { padding: 140px 20px 60px; }
  .product-intro, .about-page-section, .contact-page-section { padding: 60px 20px; }
  .intro-image { height: 300px; }
  .features-section { padding: 60px 20px; }
  .features-grid, .product-gallery-grid { grid-template-columns: 1fr; }
  .product-gallery-item { height: 200px; }
  .product-gallery { padding: 60px 20px; }
  .cta-section { padding: 50px 20px; }
  .site-footer { padding: 30px 20px; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .contact-page-form { padding: 30px 20px; }
  .contact-page-form .form-row { grid-template-columns: 1fr; }
  .products-listing { padding: 60px 20px; }
  .products-listing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .logo img { height: 32px; }
  .mobile-menu > nav > ul > li > a { font-size: 1.2rem; }
  .mobile-menu nav { padding-top: 90px; }
}

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
