/*
Theme Name: Tazza Interiors Premium
Theme URI: https://www.tazzainteriors.com
Author: Tazza Interiors
Description: Premium interior works theme for Tazza Interiors — fully configurable, SEO-optimised, luxury design
Version: 4.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --gold:       #C9973A;
  --gold-dk:    #A67C2E;
  --gold-lt:    #F5ECD6;
  --dark:       #0F0F0F;
  --dark-2:     #1A1A1A;
  --dark-3:     #242424;
  --body:       #3A3A3A;
  --muted:      #6B6B6B;
  --light:      #F8F5F0;
  --white:      #FFFFFF;
  --border:     #E5DDD0;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Outfit', sans-serif;
  --radius:     4px;
  --radius-lg:  12px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
  --trans:      0.3s ease;
  --container:  1200px;
}

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

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: .9rem; font-weight: 500;
  letter-spacing: .04em; transition: all var(--trans); cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,151,58,.35); }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-3); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--gold-lt); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: .82rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Gold line accent ── */
.gold-line { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 1.5rem; }
.gold-line-left { margin-left: 0; }

/* ── Section ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-label {
  display: inline-block; font-family: var(--font-body); font-size: .75rem;
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
}
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 { margin-bottom: .75rem; }
.section-title p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-title-left { text-align: left; }
.section-title-left p { margin: 0; }

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--trans);
}
#site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1.5rem; overflow: visible;
}
.site-logo {
  flex-shrink: 0; display: flex; align-items: center;
  height: 56px; max-height: 56px; overflow: hidden;
}
.site-logo,
.site-logo a,
.site-logo .custom-logo-link { display: flex !important; align-items: center !important; }
.site-logo img,
.site-logo a img,
.site-logo .custom-logo-link img,
.custom-logo { 
  display: block !important;
  height: 52px !important;
  max-height: 52px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
}
.main-nav { display: flex; align-items: center; gap: 1.5rem; flex: 1; }
.main-nav > a, .nav-has-dropdown > a {
  font-size: .82rem; font-weight: 500; letter-spacing: .02em; color: var(--dark-2);
  padding: 4px 0; position: relative; white-space: nowrap;
}
.main-nav > a::after, .nav-has-dropdown > a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transition: transform var(--trans);
}
.main-nav > a:hover::after, .main-nav > a.current::after,
.nav-has-dropdown:hover > a::after { transform: scaleX(1); }
.main-nav > a.current { color: var(--gold); }

/* Dropdown */
.nav-has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); min-width: 240px;
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--trans), visibility var(--trans), transform var(--trans);
  pointer-events: none; z-index: 9999;
}
.nav-has-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px; font-size: .88rem;
  color: var(--body); transition: all var(--trans);
}
.dropdown-menu a:hover { background: var(--light); color: var(--gold); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-phone {
  font-size: .78rem; font-weight: 600; color: var(--dark);
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
}
.header-phone:hover { color: var(--gold); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; overflow-y: auto; padding: 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 1.1rem; font-weight: 500;
  border-bottom: 1px solid var(--border); color: var(--dark);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--dark); position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1410 50%, #0F0F0F 100%);
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  opacity: 0.70;
}
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: rgba(10,10,10,.55); }
.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 80px 0; }
.hero-inner-full {
  position: relative; z-index: 3;
  max-width: 780px; padding: 100px 0 80px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,151,58,.15); border: 1px solid rgba(201,151,58,.3);
  color: var(--gold); padding: 8px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; max-width: 640px; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--gold); }
.hero-stat span { font-size: .8rem; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; }
.hero-image-wrap { position: relative; }
.hero-image-wrap img { border-radius: var(--radius-lg); width: 100%; height: 520px; object-fit: cover; }
.hero-image-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--gold); color: var(--white);
  padding: 16px 20px; border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(201,151,58,.4);
}
.hero-image-badge .badge-icon { font-size: 1.5rem; }
.hero-image-badge strong { display: block; font-size: .95rem; }
.hero-image-badge span { font-size: .75rem; opacity: .85; }
.hero-placeholder {
  background: rgba(201,151,58,.08); border: 1px solid rgba(201,151,58,.2);
  border-radius: var(--radius-lg); height: 520px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}

/* ════════════════════════════════
   SERVICES GRID
════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden;
  transition: all var(--trans);
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform var(--trans);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 1.25rem; }
.service-card-img-placeholder { width: 100%; height: 200px; border-radius: 8px; margin-bottom: 1.25rem; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.service-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.card-link { color: var(--gold); font-size: .85rem; font-weight: 600; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover { gap: 10px; }

/* ════════════════════════════════
   WHY CHOOSE US
════════════════════════════════ */
.why-section { background: var(--dark); }
.why-section .section-title h2 { color: var(--white); }
.why-section .section-title p { color: rgba(255,255,255,.55); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all var(--trans);
}
.why-card:hover { background: rgba(201,151,58,.1); border-color: rgba(201,151,58,.3); transform: translateY(-2px); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h4 { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }
.why-card p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; margin: 0; }

/* ════════════════════════════════
   LOCATIONS STRIP
════════════════════════════════ */
.locations-strip { background: var(--gold); padding: 28px 0; }
.locations-strip-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.locations-strip .strip-label { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.8); white-space: nowrap; }
.loc-badges { display: flex; gap: .75rem; flex-wrap: wrap; }
.loc-badge {
  background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.25);
  padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 500;
  transition: all var(--trans);
}
.loc-badge:hover { background: var(--white); color: var(--gold); }

/* ════════════════════════════════
   PROJECTS
════════════════════════════════ */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; }
.project-card img { width: 100%; height: 280px; object-fit: cover; transition: transform .5s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-card-overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,15,15,.85) 0%, transparent 60%);
  padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end;
}
.project-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: .25rem; }
.project-card span { color: var(--gold); font-size: .8rem; }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonials-section { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-head); font-size: 5rem; color: var(--gold-lt); line-height: 1;
}
.stars { color: #F5A623; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-size: .95rem; line-height: 1.8; color: var(--body); font-style: italic; margin-bottom: 1.5rem; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; }
.reviewer span { font-size: .8rem; color: var(--muted); }

/* ════════════════════════════════
   CTA BANNER
════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1A1410 100%);
  position: relative; overflow: hidden; text-align: center; padding: 96px 0;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,58,.12) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner h2 span { color: var(--gold); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.5rem; position: relative; }
.cta-banner .btn-group { justify-content: center; position: relative; }

/* ════════════════════════════════
   PAGE HERO
════════════════════════════════ */
.page-hero {
  background: var(--dark); padding: 120px 0 60px;
  position: relative; overflow: hidden; min-height: 300px;
}
.service-hero { min-height: 360px; }
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.4); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb span:last-child { color: var(--gold); }
.page-hero h1 { color: var(--white); }
.page-hero > .container > p { color: rgba(255,255,255,.65); font-size: 1.1rem; margin-top: .75rem; max-width: 600px; }

/* ════════════════════════════════
   CONTENT LAYOUT
════════════════════════════════ */
.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; padding: 64px 0; }
.content-main { min-width: 0; }
.content-main img { border-radius: var(--radius-lg); margin: 1.5rem 0; }
.content-main h2 { font-size: 1.8rem; margin: 2rem 0 .75rem; }
.content-main h3 { font-size: 1.35rem; margin: 1.5rem 0 .5rem; }
.content-main ul { margin: .75rem 0 1rem 1.25rem; }
.content-main ul li { list-style: disc; margin-bottom: .4rem; color: var(--body); }

/* Sidebar */
.sidebar-cta {
  background: var(--gold); color: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; margin-bottom: 1.5rem;
}
.sidebar-cta h4 { color: var(--white); font-size: 1.3rem; margin-bottom: .5rem; }
.sidebar-cta p { opacity: .85; font-size: .9rem; margin-bottom: 1.25rem; }
.sidebar-cta .btn { width: 100%; justify-content: center; margin-bottom: .75rem; }
.sidebar-cta .btn-white { color: var(--gold); }
.sidebar-cta .btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.sidebar-cta .btn-outline:hover { background: rgba(255,255,255,.15); }
.sidebar-widget {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; margin-bottom: 1.5rem;
}
.sidebar-widget h4 { font-size: 1rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.contact-item { display: flex; align-items: flex-start; gap: 12px; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.contact-item:last-child { border-bottom: none; }
.contact-item .icon { flex-shrink: 0; font-size: 1rem; }
.contact-item a:hover { color: var(--gold); }
.sidebar-links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; border-bottom: 1px solid var(--border);
  font-size: .88rem; color: var(--body); transition: color var(--trans);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--gold); }
.sidebar-links a span { color: var(--muted); transition: transform var(--trans); }
.sidebar-links a:hover span { color: var(--gold); transform: translateX(4px); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
#site-footer { background: var(--dark-2); color: rgba(255,255,255,.65); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-about p { font-size: .88rem; line-height: 1.8; margin: 1rem 0 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--trans);
}
.footer-social a svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer-col h5 {
  color: var(--white); font-family: var(--font-body); font-size: .75rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul li { padding: .35rem 0; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; padding: .5rem 0; font-size: .85rem; }
.footer-contact-item .icon { flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-bottom a { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all var(--trans);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ════════════════════════════════
   CONTACT FORM
════════════════════════════════ */
.contact-form { background: var(--white); border-radius: var(--radius-lg); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .5rem; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: .9rem;
  color: var(--body); transition: border-color var(--trans); background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid, .projects-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-inner { padding: 48px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .6s ease forwards; }
.fade-up-delay-1 { animation-delay: .1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: .2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: .3s; opacity: 0; }

/* ════════════════════════════════
   WP BODY PADDING
════════════════════════════════ */
body.admin-bar #site-header { top: 32px; }

/* ── WordPress Menu Overrides ── */
.main-nav .menu-item { display: contents; }
.mobile-nav .menu-item a, .mobile-nav li a {
  display: block; padding: 14px 0; font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--border); color: var(--dark);
}
.mobile-nav .menu-item-has-children > a { color: var(--gold); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.mobile-nav .sub-menu a { padding-left: 1.25rem; font-size: .92rem; }
.mobile-nav ul, .mobile-nav li { list-style: none; margin: 0; padding: 0; }

/* ── Service card icon (no image uploaded) ── */
.service-card-icon-wrap {
  width: 100%; height: 160px; border-radius: 10px; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--gold-lt), #fff);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.service-card-icon-big { font-size: 3.5rem; line-height: 1; }

/* ── Why grid responsive ── */
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .projects-grid { grid-template-columns: 1fr !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .projects-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 901px) {
  .why-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .services-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
