* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #1a2e35;
  --primary-light: #2a4a54;
  --accent: #c5a55a;
  --accent-light: #d4bc7e;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #edecea;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --sans: 'DM Sans', sans-serif;
  --serif: 'Playfair Display', serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(26,46,53,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197,165,90,0.2);
  transition: all 0.4s ease;
}
nav.scrolled { padding: 0.7rem 3rem; background: rgba(26,46,53,0.98); }
.nav-logo img { height: 75px; width: auto; filter: brightness(0) invert(1); transition: height 0.4s ease; }
nav.scrolled .nav-logo img { height: 55px; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--primary) !important; padding: 0.7rem 1.5rem;
  font-weight: 700 !important; letter-spacing: 1px !important;
  border: none; cursor: pointer; transition: all 0.3s;
}
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }
.mobile-menu { display: none; cursor: pointer; }
.mobile-menu span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0f1f24 60%, #162a32 100%);
  position: relative; overflow: hidden;
  padding: 9rem 3rem 4rem;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0;
  width: 55%;
  background: url("images/hero-bg.jpg") center/cover;
  opacity: 0.35;
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--primary), transparent);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(197,165,90,0.15); border: 1px solid rgba(197,165,90,0.3);
  padding: 0.5rem 1.2rem; margin-bottom: 2rem;
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent);
  animation: fadeInDown 0.8s ease;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--white); line-height: 1.1; margin-bottom: 1.5rem;
  font-weight: 400; animation: fadeInUp 1s ease 0.2s both;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  margin-bottom: 2.5rem; max-width: 520px; animation: fadeInUp 1s ease 0.4s both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 1s ease 0.6s both; }
.btn-primary {
  background: var(--accent); color: var(--primary); padding: 1rem 2.5rem;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--accent); cursor: pointer;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: transparent; color: var(--accent); }
.btn-secondary {
  background: transparent; color: var(--white); padding: 1rem 2.5rem;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats {
  position: relative; z-index: 2; display: flex; gap: 3rem;
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 1s ease 0.8s both;
}
.hero-stat h3 { font-family: var(--serif); font-size: 2.5rem; color: var(--accent); font-weight: 400; }
.hero-stat p { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 0.3rem; }

/* ===== SERVICES ===== */
.services { padding: 7rem 3rem; background: var(--off-white); }
.section-header {
  text-align: center; max-width: 700px; margin: 0 auto 4rem;
}
.section-label {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem; display: block; font-weight: 600;
}
.section-header h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary); line-height: 1.2; font-weight: 400;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--white); padding: 2.5rem 2rem;
  border: 1px solid var(--light-gray);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--accent); transform: scaleX(0); transition: transform 0.4s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px; background: rgba(197,165,90,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.2rem;
}
.service-card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--primary); margin-bottom: 0.8rem; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
a.service-card { text-decoration: none; display: block; cursor: pointer; }

/* ===== TESLA SOLAR ===== */
.tesla-section {
  padding: 7rem 3rem; background: var(--primary);
  display: flex; align-items: center; gap: 4rem; max-width: 100%;
  position: relative; overflow: hidden;
}
.tesla-section::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197,165,90,0.08), transparent 70%);
  border-radius: 50%;
}
.tesla-content { flex: 1; max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }
.tesla-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(197,165,90,0.15); border: 1px solid rgba(197,165,90,0.3);
  padding: 0.4rem 1rem; margin-bottom: 1.5rem;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent);
}
.tesla-content h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white); line-height: 1.2; margin-bottom: 1.5rem; font-weight: 400;
}
.tesla-content h2 em { color: var(--accent); font-style: italic; }
.tesla-content p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.tesla-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.tesla-feature {
  padding: 1.2rem; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.tesla-feature h4 { color: var(--accent); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.4rem; }
.tesla-feature p { color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.5; }

/* ===== PORTFOLIO ===== */
.portfolio { padding: 7rem 3rem; background: var(--white); }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.portfolio-item {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; background: var(--primary);
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: all 0.6s ease; }
.portfolio-item:hover img { transform: scale(1.05); opacity: 0.6; }
.portfolio-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem; background: linear-gradient(to top, rgba(26,46,53,0.95), transparent);
  transform: translateY(20px); opacity: 0; transition: all 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); opacity: 1; }
.portfolio-overlay h3 { font-family: var(--serif); color: var(--white); font-size: 1.2rem; margin-bottom: 0.3rem; }
.portfolio-overlay p { color: var(--accent); font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; }

/* ===== CTA ===== */
.cta-section {
  padding: 7rem 3rem; text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0f1f24 100%);
  position: relative;
}
.cta-section h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); margin-bottom: 1rem; font-weight: 400;
}
.cta-section h2 em { color: var(--accent); font-style: italic; }
.cta-section p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-phone {
  font-family: var(--serif); font-size: 2rem; color: var(--accent);
  text-decoration: none; display: block; margin-bottom: 2rem;
  transition: opacity 0.3s;
}
.cta-phone:hover { opacity: 0.8; }

/* ===== SERVICE AREAS ===== */
.areas { padding: 5rem 3rem; background: var(--off-white); }
.areas-content { max-width: 1200px; margin: 0 auto; text-align: center; }
.areas h2 {
  font-family: var(--serif); font-size: 2rem; color: var(--primary);
  margin-bottom: 0.8rem; font-weight: 400;
}
.areas > p { color: var(--text-light); margin-bottom: 2rem; }
.areas-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem;
  max-width: 1000px; margin: 0 auto;
}
.area-tag {
  padding: 0.5rem 1.2rem; background: var(--white); border: 1px solid var(--light-gray);
  font-size: 0.8rem; color: var(--text-light); letter-spacing: 0.5px;
  transition: all 0.3s; text-decoration: none;
}
.area-tag:hover { border-color: var(--accent); color: var(--primary); }

/* ===== FOOTER ===== */
footer {
  background: var(--primary); padding: 4rem 3rem 2rem;
  border-top: 1px solid rgba(197,165,90,0.2);
}
.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand img { height: 60px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: var(--accent); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; margin-bottom: 0.6rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.75rem; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(26,46,53,0.98);
    padding: 1.5rem; gap: 0;
    border-top: 1px solid rgba(197,165,90,0.2);
  }
  .nav-links.active a { padding: 0.8rem 1.5rem; }
  .nav-links.active .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: none; padding: 0 0 0 1rem;
  }
  .mobile-menu { display: block; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .services, .portfolio, .tesla-section, .cta-section, .areas { padding: 4rem 1.5rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .tesla-features { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .tesla-section { flex-direction: column; }
}

/* ===== NEW RULES ===== */

/* Services Dropdown */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; background: rgba(26,46,53,0.98);
  border: 1px solid rgba(197,165,90,0.2); border-radius: 4px;
  min-width: 180px; opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all 0.3s ease; z-index: 1001; padding: 0.5rem 0;
  margin-top: 0.5rem;
}
.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block; padding: 0.75rem 1.5rem; color: rgba(255,255,255,0.8);
  font-size: 0.8rem; text-decoration: none; transition: color 0.2s;
}
.dropdown-menu a:hover { color: var(--accent); background: rgba(197,165,90,0.05); }

/* Page Hero Banner */
.page-hero {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0f1f24 100%);
  padding: 10rem 3rem 5rem; text-align: center; position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to top, var(--off-white), transparent);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); line-height: 1.2; margin-bottom: 1rem; font-weight: 400;
}
.page-hero h1 em { color: var(--accent); font-style: italic; }
.page-hero p {
  font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 600px;
  margin: 0 auto; line-height: 1.6;
}

/* Service Detail Blocks */
.service-detail {
  padding: 4rem 3rem; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail-image {
  width: 100%; aspect-ratio: 4/3; background: var(--primary);
  border-radius: 8px; overflow: hidden;
}
.service-detail-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-detail-image.no-image {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  display: flex; align-items: center; justify-content: center;
}
.service-detail h2 {
  font-family: var(--serif); font-size: 2rem; color: var(--primary);
  margin-bottom: 1.5rem; font-weight: 400; line-height: 1.2;
}
.service-detail p { color: var(--text-light); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.service-detail a {
  display: inline-block; margin-top: 1rem; color: var(--accent);
  text-decoration: none; font-weight: 600; transition: opacity 0.3s;
}
.service-detail a:hover { opacity: 0.8; }

/* Service Pair (2-column cards without images) */
.service-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 1200px; margin: 0 auto; padding: 4rem 3rem;
}
.service-pair-card {
  background: var(--white); padding: 2.5rem;
  border: 1px solid var(--light-gray); border-radius: 8px;
}
.service-pair-card h2 {
  font-family: var(--serif); font-size: 2rem; color: var(--primary);
  margin-bottom: 1.5rem; font-weight: 400; line-height: 1.2;
}
.service-pair-card p {
  color: var(--text-light); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem;
}
.service-pair-card a {
  display: inline-block; margin-top: 1rem; color: var(--accent);
  text-decoration: none; font-weight: 600; transition: opacity 0.3s;
}
.service-pair-card a:hover { opacity: 0.8; }

/* Contact Form */
.contact-form {
  background: var(--off-white); padding: 2.5rem; border-radius: 8px;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-weight: 600; color: var(--text); margin-bottom: 0.5rem;
  font-size: 0.9rem; letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem; border: 1px solid var(--light-gray);
  background: var(--white); font-family: var(--sans); color: var(--text);
  font-size: 0.95rem; transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--accent); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { background: var(--accent); color: var(--primary);
  padding: 1rem; font-weight: 700; letter-spacing: 1px;
  border: none; cursor: pointer; transition: all 0.3s; text-transform: uppercase;
}
.form-submit:hover { background: var(--accent-light); transform: translateY(-2px); }

/* Area Card Grid */
.area-cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.area-card {
  background: var(--white); padding: 2rem; border: 1px solid var(--light-gray);
  border-radius: 4px; text-align: center; transition: all 0.3s ease;
  text-decoration: none; position: relative;
}
.area-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--accent); transform: scaleX(0); transition: transform 0.3s ease;
  transform-origin: left;
}
.area-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.area-card:hover::before { transform: scaleX(1); }
.area-card h3 {
  font-family: var(--serif); font-size: 1.2rem; color: var(--primary);
  margin-bottom: 0.5rem; font-weight: 400;
}
.area-card p {
  font-size: 0.8rem; color: var(--text-light); letter-spacing: 0.5px;
}

/* FAQ Accordion */
.faq-section { padding: 4rem 3rem; background: var(--off-white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  margin-bottom: 1.5rem; border: 1px solid var(--light-gray);
  background: var(--white); border-radius: 4px; overflow: hidden;
}
.faq-question {
  padding: 1.5rem; background: var(--white); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.3s; user-select: none;
}
.faq-question:hover { background: var(--off-white); }
.faq-question h3 {
  font-family: var(--serif); font-size: 1.1rem; color: var(--primary);
  margin: 0; font-weight: 400;
}
.faq-toggle { color: var(--accent); font-size: 1.5rem; transition: transform 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  transition: all 0.3s ease; background: var(--off-white);
}
.faq-item.active .faq-answer {
  padding: 1.5rem; max-height: 500px;
}
.faq-answer p { color: var(--text-light); line-height: 1.7; font-size: 0.95rem; }

/* Portfolio Filter Pills */
.filter-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-bottom: 3rem;
}
.filter-pill {
  padding: 0.6rem 1.5rem; border: 1px solid var(--light-gray);
  background: var(--white); color: var(--text-light); cursor: pointer;
  font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase;
  transition: all 0.3s; font-weight: 600;
}
.filter-pill:hover { border-color: var(--accent); color: var(--primary); }
.filter-pill.active {
  background: var(--accent); color: var(--primary); border-color: var(--accent);
}

/* Blog */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.blog-card {
  background: var(--white); border: 1px solid var(--light-gray);
  text-decoration: none; position: relative; overflow: hidden;
  transition: all 0.4s ease; display: block;
}
.blog-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--accent); transform: scaleX(0); transition: transform 0.4s ease;
  transform-origin: left;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.blog-card:hover::before { transform: scaleX(1); }
.blog-card-content { padding: 2.5rem 2rem; }
.blog-card h3 {
  font-family: var(--serif); font-size: 1.3rem; color: var(--primary);
  margin-bottom: 0.8rem; font-weight: 400; line-height: 1.4;
}
.blog-date {
  font-size: 0.75rem; color: var(--text-light); letter-spacing: 1px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 0.8rem; display: block;
}
.blog-card p {
  font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.5rem;
}
.read-more {
  font-size: 0.8rem; font-weight: 700; color: var(--accent); letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-article {
  max-width: 800px; margin: 0 auto;
}
.blog-article p {
  font-size: 1rem; color: var(--text); line-height: 1.8; margin-bottom: 1.5rem;
}
.blog-article a { color: var(--accent); text-decoration: underline; }
.blog-back-link {
  display: inline-block; font-size: 0.85rem; font-weight: 600; color: var(--accent);
  text-decoration: none; letter-spacing: 0.5px; margin-bottom: 1.5rem;
  transition: opacity 0.3s;
}
.blog-back-link:hover { opacity: 0.7; }

/* ===== ABOUT PAGE ===== */
.about-intro {
  padding: 5rem 3rem 3rem; background: var(--white);
}
.about-intro-content {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.about-intro-content p {
  font-size: 1.25rem; line-height: 1.9; color: var(--text);
  font-family: var(--serif); font-weight: 400;
}
.about-stats {
  padding: 4rem 3rem; background: var(--off-white);
}
.about-stats-row {
  display: flex; justify-content: center; gap: 4rem;
  max-width: 900px; margin: 0 auto;
}
.about-stat { text-align: center; }
.about-stat h3 {
  font-family: var(--serif); font-size: 2.5rem; color: var(--accent);
  font-weight: 400; line-height: 1;
}
.about-stat p {
  font-size: 0.75rem; color: var(--text-light); letter-spacing: 1.5px;
  text-transform: uppercase; margin-top: 0.5rem;
}
.about-way {
  padding: 7rem 3rem; background: var(--primary);
  position: relative; overflow: hidden;
}
.about-way::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197,165,90,0.08), transparent 70%);
  border-radius: 50%;
}
.about-way-content {
  max-width: 900px; margin: 0 auto; position: relative; z-index: 2;
  text-align: center;
}
.about-way-content h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white); line-height: 1.2; margin-bottom: 1.5rem; font-weight: 400;
}
.about-way-content h2 em { color: var(--accent); font-style: italic; }
.about-way-content > p {
  color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 0.95rem;
  max-width: 700px; margin: 0 auto;
}
.about-way-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.about-story {
  padding: 5rem 3rem; background: var(--white);
}
.about-story-content {
  max-width: 800px; margin: 0 auto;
}
.about-story-content h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary); line-height: 1.2; margin-bottom: 2rem; font-weight: 400;
}
.about-story-content h2 em { color: var(--accent); font-style: italic; }
.about-story-content p {
  font-size: 1.05rem; line-height: 1.9; color: var(--text); margin-bottom: 1.5rem;
}
.about-services {
  padding: 7rem 3rem; background: var(--off-white);
}
.about-services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.about-services-grid .service-card {
  text-decoration: none; display: block; cursor: pointer;
}

/* Additional Responsive Rules */
@media (max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .service-detail:nth-child(even) { direction: ltr; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .area-cards-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
  .filter-pills { gap: 0.5rem; }
  .filter-pill { padding: 0.5rem 1rem; font-size: 0.7rem; }
  .faq-section { padding: 3rem 1.5rem; }
  .dropdown-menu { left: -50px; }
  .blog-grid { grid-template-columns: 1fr; }
  .service-pair { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .about-stats-row { gap: 2rem; flex-wrap: wrap; }
  .about-stat h3 { font-size: 2rem; }
  .about-way { padding: 4rem 1.5rem; }
  .about-way-cards { grid-template-columns: 1fr; }
  .about-intro, .about-story { padding: 3rem 1.5rem; }
  .about-stats { padding: 3rem 1.5rem; }
  .about-services { padding: 4rem 1.5rem; }
  .about-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .about-services-grid { grid-template-columns: 1fr; }
  .about-stats-row { gap: 1.5rem; }
}

/* ===== LARGE SCREENS (1440px+) ===== */
@media (min-width: 1440px) {
  nav,
  nav.scrolled {
    padding-left: max(3rem, calc((100vw - 1400px) / 2));
    padding-right: max(3rem, calc((100vw - 1400px) / 2));
  }
  .hero {
    padding-left: max(3rem, calc((100vw - 1400px) / 2));
    padding-right: max(3rem, calc((100vw - 1400px) / 2));
  }
}
