/* ============================================================
   AFIRKY CONSTRUCTIONS — Main Stylesheet
   Colors: #8B0000 (Dark Red) | #B8860B (Dark Gold) | #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

/* ===================== CSS Variables ===================== */
:root {
  --primary:        #8B0000;
  --primary-light:  #a50000;
  --primary-dark:   #6d0000;
  --secondary:      #B8860B;
  --secondary-light:#d4a017;
  --dark:           #1a1a1a;
  --darker:         #111111;
  --charcoal:       #2c2c2c;
  --light:          #f7f5f2;
  --lighter:        #fdfcfb;
  --white:          #ffffff;
  --text:           #444444;
  --text-light:     #777777;
  --border:         #e5dfd6;
  --shadow:         0 4px 20px rgba(0,0,0,0.07);
  --shadow-md:      0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.18);
  --radius:         3px;
  --transition:     all 0.3s ease;
  --font-heading:   'Barlow Condensed', sans-serif;
  --font-body:      'Barlow', sans-serif;
}

/* ===================== Reset & Base ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ===================== Typography ===================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.15; font-weight: 700; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p  { font-size: 0.97rem; line-height: 1.85; color: var(--text); }

/* ===================== Utilities ===================== */
.container       { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section         { padding: 90px 0; }
.section-sm      { padding: 60px 0; }
.section-header  { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}
.section-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.section-title span { color: var(--primary); }
.section-subtitle { font-size: 1rem; color: var(--text-light); max-width: 580px; line-height: 1.85; }
.divider { width: 55px; height: 3px; background: var(--secondary); margin: 18px 0; }
.divider.centered { margin: 18px auto; }

.bg-dark { background: var(--dark); }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark .section-title { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.72); }
.bg-light { background: var(--light); }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 30px;
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary   { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,0,0,0.3); }
.btn-secondary { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,0.3); }
.btn-outline   { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-gold      { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-gold:hover { background: transparent; color: var(--secondary); }

/* ===================== Top Bar ===================== */
.topbar { background: var(--darker); padding: 9px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar a { color: rgba(255,255,255,0.62); font-size: 0.8rem; display: flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--secondary); }
.topbar i { font-size: 0.75rem; }

/* ===================== Navbar ===================== */
.navbar {
  background: var(--dark);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  transition: background 0.3s ease;
}
.navbar.scrolled { background: rgba(26,26,26,0.97); backdrop-filter: blur(12px); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.navbar-logo img { height: 48px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.logo-sub  { font-family: var(--font-heading); font-size: 0.6rem; letter-spacing: 4px; color: var(--secondary); text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 13px; position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 3px; left: 13px; right: 13px;
  height: 2px; background: var(--secondary);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--secondary); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--primary); color: var(--white) !important;
  padding: 9px 20px !important; margin-left: 10px;
  border: 2px solid var(--primary);
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: transparent !important; color: var(--primary) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Page Hero (Inner Pages) ===================== */
.page-hero {
  position: relative; padding: 88px 0 65px;
  background: var(--dark); overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(139,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.2rem); }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-family: var(--font-heading); font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: var(--secondary); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }

/* ===================== Hero Section (Homepage) ===================== */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; display: flex; align-items: center; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.3s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.45) 55%, rgba(8,8,8,0.1) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-block; background: var(--secondary);
  color: var(--white); font-family: var(--font-heading);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; padding: 6px 16px; margin-bottom: 20px;
}
.hero h1 { color: var(--white); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; line-height: 1.07; margin-bottom: 22px; }
.hero h1 span { color: var(--secondary); }
.hero-desc { color: rgba(255,255,255,0.78); font-size: 1rem; max-width: 500px; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-controls { position: absolute; bottom: 36px; right: 36px; z-index: 5; display: flex; gap: 8px; }
.hero-btn {
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.35);
  background: transparent; color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.hero-btn:hover { background: var(--secondary); border-color: var(--secondary); }
.hero-dots { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.38); cursor: pointer; transition: var(--transition); border: none; }
.hero-dot.active { background: var(--secondary); width: 26px; border-radius: 4px; }

/* ===================== Features ===================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--secondary);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.5s ease; }
.feature-card:hover .feature-img { transform: scale(1.04); }
.feature-img-wrap { overflow: hidden; }
.feature-body { padding: 30px; }
.feature-body h3 { font-size: 1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.stat-item { text-align: center; padding: 28px 20px; border-right: 1px solid rgba(255,255,255,0.14); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: clamp(2.4rem, 4vw, 3.5rem); font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-suffix { color: var(--secondary); }
.stat-label { font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* ===================== About (Split Home) ===================== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.about-img-side { position: relative; overflow: hidden; min-height: 400px; }
.about-img-side img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img-side:hover img { transform: scale(1.04); }
.about-exp-badge {
  position: absolute; bottom: 32px; right: -1px;
  background: var(--secondary); color: var(--white);
  padding: 20px 26px; text-align: center; z-index: 2;
}
.about-exp-badge .num { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; line-height: 1; }
.about-exp-badge .txt { font-family: var(--font-heading); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; }
.about-content-side { background: var(--light); padding: 80px 55px; display: flex; flex-direction: column; justify-content: center; }
.checklist { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 30px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: var(--text); }
.check-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* ===================== Portfolio Teaser ===================== */
.portfolio-teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ptcard { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.ptcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ptcard:hover img { transform: scale(1.09); }
.ptcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(139,0,0,0.88) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
}
.ptcard:hover .ptcard-overlay { opacity: 1; }
.ptcard-overlay .cat { font-family: var(--font-heading); font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--secondary); margin-bottom: 5px; }
.ptcard-overlay h4 { color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===================== Testimonials ===================== */
.testimonials-section { position: relative; overflow: hidden; }
.testimonials-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 60px),
                    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 60px);
}
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; z-index: 1; }
.testi-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  padding: 34px 28px; transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(184,134,11,0.28); transform: translateY(-4px); }
.testi-quote { font-size: 2.8rem; color: var(--secondary); line-height: 1; font-family: Georgia, serif; margin-bottom: 14px; }
.testi-stars { color: var(--secondary); font-size: 0.78rem; letter-spacing: 3px; margin-bottom: 14px; }
.testi-text { color: rgba(255,255,255,0.68); font-size: 0.88rem; line-height: 1.85; font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  border: 2px solid var(--secondary); flex-shrink: 0;
}
.testi-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); }
.testi-role { font-size: 0.75rem; color: var(--secondary); letter-spacing: 1px; }

/* ===================== CTA Banner ===================== */
.cta-banner { padding: 80px 0; text-align: center; }
.cta-banner h2 { font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.cta-banner.dark h2 { color: var(--white); }
.cta-banner p { max-width: 500px; margin: 0 auto 30px; }
.cta-banner.dark p { color: rgba(255,255,255,0.6); }
.cta-btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===================== Footer ===================== */
.footer { background: var(--darker); padding-top: 75px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
  gap: 48px; padding-bottom: 55px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img { height: 50px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.52); font-size: 0.86rem; line-height: 1.8; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 9px; }
.fsocial {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.55); display: flex; align-items: center;
  justify-content: center; font-size: 0.82rem; transition: var(--transition);
}
.fsocial:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); }
.footer-col h5 {
  color: var(--white); font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 22px;
  padding-bottom: 10px; border-bottom: 2px solid var(--secondary);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.52); font-size: 0.86rem; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; color: var(--secondary); font-size: 1rem; }
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }
.fcontact-items { display: flex; flex-direction: column; gap: 14px; }
.fcontact-item { display: flex; gap: 12px; align-items: flex-start; }
.fcontact-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 0.8rem; flex-shrink: 0; }
.fcontact-item a, .fcontact-item p { color: rgba(255,255,255,0.52); font-size: 0.84rem; line-height: 1.6; }
.fcontact-item a:hover { color: var(--secondary); }
.footer-bottom { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.78rem; }
.footer-bottom a { color: var(--secondary); }

/* ===================== WhatsApp Float ===================== */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 52px; height: 52px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--white); font-size: 1.45rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.38); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.58), 0 0 0 7px rgba(37,211,102,0.09); }
}

/* ===================== Scroll Reveal Animations ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.from-left  { transform: translateX(-28px); }
.reveal.from-right { transform: translateX(28px); }
.reveal.visible { opacity: 1; transform: translate(0, 0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===================== About Page ===================== */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 26px; }
.mv-card { padding: 50px 42px; position: relative; overflow: hidden; }
.mv-card.mission { background: var(--primary); }
.mv-card.vision   { background: var(--secondary); }
.mv-card h3 { font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.mv-card h2 { color: var(--white); font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 18px; }
.mv-card p { color: rgba(255,255,255,0.82); font-size: 0.93rem; line-height: 1.85; }
.mv-bg-icon { position: absolute; bottom: -25px; right: 16px; font-size: 9rem; opacity: 0.06; color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vcard {
  background: var(--white); border: 1px solid var(--border);
  padding: 36px 26px; text-align: center; transition: var(--transition);
}
.vcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--secondary); }
.vcard-icon {
  width: 58px; height: 58px; margin: 0 auto 18px;
  background: var(--light); border: 2px solid var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary); transition: var(--transition);
}
.vcard:hover .vcard-icon { background: var(--primary); border-color: var(--primary); color: var(--white); }
.vcard h4 { font-size: 0.92rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.vcard p { font-size: 0.86rem; color: var(--text-light); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-img { position: relative; }
.story-img img { width: 100%; object-fit: cover; height: 480px; }
.story-year { position: absolute; bottom: -20px; left: -20px; background: var(--dark); color: var(--white); padding: 22px; text-align: center; }
.story-year .yr { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.story-year .yt { font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; }

/* ===================== Services Page ===================== */
.svc-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-full-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); }
.svc-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-full-img-wrap { overflow: hidden; position: relative; }
.svc-full-img { width: 100%; height: 215px; object-fit: cover; transition: transform 0.5s ease; }
.svc-full-card:hover .svc-full-img { transform: scale(1.05); }
.svc-full-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(139,0,0,0.55) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s ease;
}
.svc-full-card:hover .svc-full-img-wrap::after { opacity: 1; }
.svc-full-body { padding: 28px; }
.svc-full-body .svc-ico { width: 46px; height: 46px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; margin-bottom: 16px; }
.svc-full-body h3 { font-size: 1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.svc-full-body p { font-size: 0.87rem; color: var(--text-light); line-height: 1.8; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 41px; left: 12.5%; right: 12.5%; height: 2px; background: var(--border); }
.process-step { text-align: center; padding: 0 18px; position: relative; z-index: 1; }
.proc-num {
  width: 82px; height: 82px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--primary);
  transition: var(--transition);
}
.process-step:hover .proc-num { background: var(--primary); border-color: var(--primary); color: var(--white); transform: scale(1.1); }
.process-step h4 { font-size: 0.88rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.process-step p { font-size: 0.84rem; color: var(--text-light); }

/* ===================== Portfolio/Showroom ===================== */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 46px; }
.filter-btn {
  padding: 9px 22px;
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  background: transparent; border: 2px solid var(--border); color: var(--text); cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.showroom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sr-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.sr-item.hidden { display: none; }
.sr-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.sr-item:hover img { transform: scale(1.08); }
.sr-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.18) 55%, transparent 100%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
}
.sr-item:hover .sr-overlay { opacity: 1; }
.sr-tag { font-family: var(--font-heading); font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--secondary); background: rgba(0,0,0,0.38); padding: 4px 10px; display: inline-block; margin-bottom: 7px; width: fit-content; }
.sr-overlay h4 { color: var(--white); font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.sr-overlay p { color: rgba(255,255,255,0.58); font-size: 0.78rem; }
.sr-zoom { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; background: var(--secondary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; opacity: 0; transform: scale(0.7); transition: var(--transition); }
.sr-item:hover .sr-zoom { opacity: 1; transform: scale(1); }

/* ===================== Team Page ===================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-card-overlay { position: absolute; inset: 0; background: rgba(139,0,0,0.82); display: flex; align-items: center; justify-content: center; gap: 10px; opacity: 0; transition: opacity 0.4s ease; }
.team-card:hover .team-card-overlay { opacity: 1; }
.tsocial { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.4); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; transition: var(--transition); }
.tsocial:hover { background: var(--white); color: var(--primary); }
.team-info { padding: 18px 20px; text-align: center; }
.team-info h4 { font-size: 0.96rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.team-info span { font-size: 0.76rem; color: var(--secondary); font-family: var(--font-heading); letter-spacing: 1px; text-transform: uppercase; }

/* ===================== Testimonials Page ===================== */
.testi-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-page-card { background: var(--white); border: 1px solid var(--border); padding: 34px 28px; transition: var(--transition); }
.testi-page-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--secondary); }
.tpc-stars { color: var(--secondary); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 16px; }
.tpc-text { font-size: 0.9rem; color: var(--text); line-height: 1.85; font-style: italic; margin-bottom: 22px; border-left: 3px solid var(--secondary); padding-left: 16px; }
.tpc-author { display: flex; align-items: center; gap: 13px; }
.tpc-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-heading); font-size: 1rem; font-weight: 700; border: 2px solid var(--secondary); flex-shrink: 0; }
.tpc-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); }
.tpc-role { font-size: 0.76rem; color: var(--text-light); }

/* ===================== FAQ Page ===================== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); margin-bottom: 10px; transition: border-color 0.3s ease; }
.faq-item.open { border-color: var(--secondary); }
.faq-q {
  padding: 20px 26px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: var(--white); font-family: var(--font-heading);
  font-size: 0.97rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--dark); transition: color 0.3s ease;
  border: none; width: 100%; text-align: left;
}
.faq-q:hover { color: var(--primary); }
.faq-item.open .faq-q { color: var(--primary); background: var(--light); }
.faq-icon { width: 26px; height: 26px; border: 1px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, border-color 0.3s ease; font-size: 1rem; color: var(--text-light); }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--primary); color: var(--primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 26px 24px; }
.faq-a-inner p { font-size: 0.9rem; color: var(--text-light); line-height: 1.85; }

/* ===================== Contact Page ===================== */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 55px; }
.cinfo-card { background: var(--white); border: 1px solid var(--border); padding: 38px 26px; text-align: center; transition: var(--transition); }
.cinfo-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.cinfo-icon { width: 58px; height: 58px; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 18px; }
.cinfo-card h4 { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.cinfo-card p, .cinfo-card a { font-size: 0.88rem; color: var(--text-light); display: block; line-height: 1.7; }
.cinfo-card a:hover { color: var(--primary); }
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: start; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); }
.fg input, .fg select, .fg textarea {
  padding: 13px 16px; border: 1px solid var(--border); background: var(--light);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--dark);
  outline: none; transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--primary); background: var(--white); }
.fg textarea { resize: vertical; min-height: 135px; }
.contact-aside h3 { font-size: 1.6rem; margin-bottom: 14px; }
.contact-aside p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 28px; }
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 0.87rem; }
.hours-row .day { font-family: var(--font-heading); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); }
.hours-row .time { color: var(--text-light); }
.hours-row .open { color: var(--primary); font-weight: 600; }
.map-wrap { height: 420px; background: var(--light); border: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; margin-top: 55px; }
.map-wrap i { font-size: 2.5rem; color: var(--secondary); }
.map-wrap p { font-family: var(--font-heading); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); }
.map-wrap small { font-size: 0.78rem; color: var(--text-light); }

/* ===================== Responsive ===================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .svc-full-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .features-grid, .testi-grid, .testi-page-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.14); border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.14); }
  .about-split { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-grid::before { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .showroom-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 65px 0; }
  .topbar { display: none; }
  .navbar-inner {
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 72px;
    padding: 0 16px;
  }
  .navbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 56px);
    overflow: hidden;
  }
  .navbar-logo img { height: 42px; width: auto; }
  .logo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .logo-name { font-size: 0.95rem; line-height: 1.05; }
  .logo-sub { font-size: 0.62rem; letter-spacing: 1.5px; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--dark); flex-direction: column;
    padding: 26px 24px; gap: 2px;
    transform: translateY(-110%); transition: transform 0.4s ease;
    z-index: 999; border-top: 2px solid var(--primary);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; font-size: 0.88rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 10px; text-align: center; width: 100%; justify-content: center; }
  .hamburger {
    display: flex;
    margin-left: auto;
    z-index: 1001;
  }
  .services-grid-home { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testi-grid, .testi-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-content-side { padding: 50px 24px; }
  .hero-controls { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .portfolio-teaser-grid, .team-grid, .showroom-grid, .contact-info-grid { grid-template-columns: 1fr; }
  .hero-btns, .cta-btn-row { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .svc-full-grid { grid-template-columns: 1fr; }
}
