/* ============================================
   ABBEY PAINT & DECO — style.css
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --gold:    #C8881C;
  --gold2:   #E8A030;
  --dark:    #14100A;
  --dark2:   #1E1710;
  --cream:   #F5F0E8;
  --Alabaster:   #F4F1E6;
  --gray:    #6A6058;
  --border:  rgba(200,136,28,0.18);
  --radius:  14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--Alabaster);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── NAV ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 45px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(253,251,248,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.4s, border-color 0.4s;
}
#nav.light {
  background: rgba(253,251,248,0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900; letter-spacing: -0.3px;
  color: var(--dark); text-decoration: none; flex-shrink: 0; transition: color 0.3s;
   
}
.logo img {
    width: 45px;      /* Adjust size as needed */
    
    object-fit: contain;
}
.logo span { color: var(--gold2); }
#nav.light .logo { color: var(--dark); }

.nav-center { display: flex; align-items: center; gap: 0.3rem; list-style: none; }
.nav-center a {
  font-size: 0.84rem; font-weight: 500; letter-spacing: 0.2px;
color: var(--gray); text-decoration: none;
  padding: 0.4rem 0.85rem; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-center a:hover { color: var(--dark); background: rgba(255,255,255,0.08); }
.nav-center a.active { color: var(--gold2); }
#nav.light .nav-center a { color: var(--gray); }
#nav.light .nav-center a:hover { color: var(--dark); background: rgba(200,136,28,0.08); }
#nav.light .nav-center a.active { color: var(--gold); background: rgba(200,136,28,0.1); }

.nav-cta {
  background: var(--gold); color: #fff;
  padding: 0.55rem 1.35rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.4px; text-decoration: none; flex-shrink: 0;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: all 0.3s; }
#nav.light .hamburger span { background: var(--dark); }

.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: var(--Alabaster); padding: 1.5rem 5%; flex-direction: column; gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.95rem; font-weight: 500; color: var(--gray);
  text-decoration: none; padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: var(--cream); color: var(--dark); }

/* ─── PAGE HERO (for inner pages) ─── */
.page-hero {
  padding-top: 70px; min-height: 300px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.page-hero-content { position: relative; z-index: 1; padding: 4rem 5%; }
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; color: #fff;
  margin-bottom: 0.8rem;
}
.page-hero-content p { color: rgba(255,255,255,0.5); font-size: 1rem; font-weight: 300; max-width: 500px; margin: 0 auto; }

/* ─── SECTION COMMON ─── */
.section-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.section-tag::before { content: ''; width: 28px; height: 1.5px; background: var(--gold); flex-shrink: 0; }
.section-tag.light { color: var(--gold2); }
.section-tag.light::before { background: var(--gold2); }
.section-tag.center { justify-content: center; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 900;
  line-height: 1.1; color: var(--dark); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.white { color: #fff; }
.section-title.white em { color: var(--gold2); }
.section-sub { font-size: 0.92rem; color: var(--gray); line-height: 1.8; font-weight: 300; max-width: 520px; }

/* ─── BUTTONS ─── */
.btn-fill {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 0.88rem 2.2rem; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.4px; text-decoration: none;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-fill:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,136,28,0.35); }

.btn-dark {
  display: inline-block; background: var(--dark); color: #fff;
  padding: 0.88rem 2.2rem; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.4px; text-decoration: none;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: var(--gold); transform: translateY(-2px); }

.btn-outline {
  display: inline-block; background: transparent; color: #fff;
  padding: 0.88rem 2.2rem; font-size: 0.88rem; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* ─── HERO (home page) ─── */

 .hero{
  min-height:100vh;
  height:auto;
  padding-top:80px;
  padding-bottom:60px;
  display: flex;
  align-items: center;
}

.hero-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1562663474-6cbb3eaa4d14?w=1800&q=90&auto=format&fit=crop&crop=right') center / cover no-repeat;
  will-change: transform;
}
.hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(14,10,5,0.93) 0%, rgba(14,10,5,0.82) 30%, rgba(14,10,5,0.45) 58%, rgba(14,10,5,0.1) 100%);
}
.hero-body { position: relative; z-index: 2; padding: 0 5%; max-width: 680px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid transparent;
  padding: 0.3rem 1rem; margin-bottom: 1.8rem;
 
  text-transform: uppercase; 
}
.hero-pill i { width: 6px; height: 6px;  border-radius: 50%; display: inline-block; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.98rem, 4.5vw, 3.2rem); font-weight: 900; line-height: 1.04; color: #fff;
  letter-spacing: -1.5px; margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}
.hero h1 em { font-style: italic; color: var(--gold2); }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.8; max-width: 460px; margin-bottom: 2.4rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-contacts { display: flex; gap: 2.5rem; flex-wrap: wrap; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hc { display: flex; align-items: center; gap: 9px; }
.hc-icon {
  width: 36px; height: 36px; border: 1px solid black;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hc a { font-size: 0.88rem; font-weight: 500; color: black; text-decoration: none; transition: color 0.2s; }
.hc a:hover { color: var(--gold2); }
.hero-scroll-line { position: absolute; right: 5%; bottom: 0; width: 1px; height: 80px; z-index: 2; background: rgba(255,255,255,0.1); overflow: hidden; }
.hero-scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 1px; height: 60%; background: var(--gold2); animation: drop 2.2s ease-in-out infinite; }
@keyframes drop { 0% { top: -60%; } 100% { top: 160%; } }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--dark2); display: grid; grid-template-columns: repeat(4,1fr);gap: 0; }
.stat-block {
  flex: 1; padding: 2rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 4px; transition: background 0.3s;
  text-align:center;
  min-height:120px;
  flex-direction:column;
  justify-content:center;
width: 100%;
min-width: 0;

}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: rgba(200,136,28,0.07); }
.stat-n { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--gold2); line-height: 1; }
.stat-l { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }

/* ─── HOME PREVIEW CARDS ─── */
.home-section { padding: 6rem 5%; }
.home-section.bg-cream { background: var(--cream); }
.home-section.bg-dark { background: var(--dark); }

.preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.preview-card {
  background: var(--Alabaster); border-radius: var(--radius);
  padding: 2rem 1.8rem; border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s; cursor: default;
  position: relative; overflow: hidden;
}
.preview-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); border-radius: 0 0 var(--radius) var(--radius);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.preview-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(200,136,28,0.12); }
.preview-card:hover::after { transform: scaleX(1); }
.preview-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.preview-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.preview-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* ─── ABOUT PAGE ─── */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.about-img-col { position: relative; overflow: hidden; }
.about-img-col img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s; }
.about-img-col:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; bottom: 2rem; right: 0; z-index: 2;
  background: var(--gold); color: #fff;
  padding: 1rem 1.5rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.about-text-col { background: var(--cream); padding: 5rem 5%; display: flex; flex-direction: column; justify-content: center; }
.about-text-col p { font-size: 0.92rem; color: var(--gray); line-height: 1.85; font-weight: 300; margin-bottom: 1.5rem; max-width: 480px; }

.why-list { display: flex; flex-direction: column; gap: 1.2rem; margin: 1.5rem 0 2rem; }
.why-item { display: flex; align-items: flex-start; gap: 1rem; background: var(--white); border-radius: var(--radius); padding: 1rem 1.2rem; border: 1px solid var(--border); }
.why-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.why-item p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }
.why-item strong { color: var(--dark); font-weight: 600; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.team-img { height: 220px; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.team-info { padding: 1.5rem; }
.team-info h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-info p { font-size: 0.82rem; color: var(--gray); }

/* ─── SERVICES PAGE ─── */
.services-page { padding: 5rem 5%; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.svc-card {
  background: var(--Alabaster); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(200,136,28,0.12); border-color: var(--gold); }
.svc-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: rgba(200,136,28,0.1); line-height: 1; margin-bottom: 1rem; }
.svc-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 0.7rem; }
.svc-card > p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.svc-list { list-style: none; margin-top: 1.2rem; display: flex; flex-direction: column; gap: 6px; }
.svc-list li { font-size: 0.83rem; color: var(--gray); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.svc-list li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ─── GALLERY PAGE ─── */
.gallery-section { padding: 5rem 5%; background: var(--white); }
.gallery-filter { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.5rem 1.2rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase; cursor: pointer;
  border: 1.5px solid var(--border); background: transparent; color: var(--gray);
  font-family: 'DM Sans', sans-serif;
  border-radius: 100px;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.gal-card {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3; border-radius: var(--radius);
  background: var(--cream);
}
.gal-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.gal-card:hover img { transform: scale(1.08); }
.gal-cap {
  position: absolute; inset: 0; border-radius: var(--radius);
  background: rgba(14,10,5,0); display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 1.5rem; transition: background 0.35s;
}
.gal-card:hover .gal-cap { background: rgba(14,10,5,0.52); }
.gal-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #fff;
  opacity: 0; transform: translateY(8px); transition: all 0.3s;
  border-left: 2px solid var(--gold); padding-left: 0.6rem;
}
.gal-card:hover .gal-label { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(10,7,3,0.96); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lb-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; display: block; border-radius: var(--radius); }
.lb-close { position: absolute; top: -2.5rem; right: 0; color: rgba(255,255,255,0.7); font-size: 1.8rem; cursor: pointer; background: none; border: none; line-height: 1; transition: color 0.2s; }
.lb-close:hover { color: var(--gold2); }
.lb-prev, .lb-next { position: fixed; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.6); font-size: 2rem; cursor: pointer; background: none; border: none; padding: 1rem; transition: color 0.2s; }
.lb-prev { left: 2rem; } .lb-next { right: 2rem; }
.lb-prev:hover, .lb-next:hover { color: var(--gold2); }
.lb-caption { text-align: center; margin-top: 0.8rem; font-size: 0.8rem; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; }

/* ─── TESTIMONIALS PAGE ─── */
.testi-page { padding: 5rem 5%; background: var(--white); }
.testi-big-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  background: var(--Alabaster); border-radius: var(--radius-lg);
  padding: 2.5rem; border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(200,136,28,0.1); }
.testi-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--gold), var(--gold2)); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.testi-card::after { content: '"'; position: absolute; top: 1.5rem; right: 2rem; font-family: 'Playfair Display', serif; font-size: 6rem; font-weight: 900; color: var(--gold); opacity: 0.07; line-height: 1; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.testi-stars span { color: var(--gold); font-size: 1rem; }
.testi-card blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: var(--dark); line-height: 1.65; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testi-by { font-size: 0.78rem; color: var(--gray); font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; }

/* ─── PROCESS PAGE ─── */
.process-page {
  padding: 5rem 5%;
  background: var(--dark2); 
  position: relative;
}
.process-page::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.process-page > * { position: relative; z-index: 1; }
.process-page .section-title { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.process-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 3rem; }
.proc-item {
  background: none; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 2.5rem;
  display: grid; grid-template-columns: 80px 1fr; gap: 2rem; align-items: flex-start;
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
  backdrop-filter: blur(6px);
}
.proc-item:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); transform: translateX(6px); }
.proc-n { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: #fff; opacity: 0.5; line-height: 1; transition: opacity 0.3s; }
.proc-item:hover .proc-n { opacity: 1; }
.proc-body h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; text-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.proc-body p { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.7; font-weight: 300; }

/* ─── CONTACT PAGE ─── */
.contact-page { padding: 5rem 5%; background: var(--white); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }

.contact-info-block h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; color: var(--dark); line-height: 1.12; margin-bottom: 0.8rem; }
.contact-info-block > p { font-size: 0.9rem; color: var(--gray); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300; }
.ci-list { display: flex; flex-direction: column; gap: 1.2rem; }
.ci {
  display: flex; align-items: center; gap: 1rem;
  background: var(--cream); border-radius: var(--radius); padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.ci:hover { border-color: var(--gold); }
.ci-box { width: 42px; height: 42px; flex-shrink: 0; background: rgba(200,136,28,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.ci-box svg { stroke: var(--gold); fill: none; stroke-width: 1.8; width: 18px; height: 18px; }
.ci-text h5 { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--gray); font-weight: 700; margin-bottom: 3px; }
.ci-text a, .ci-text p { font-size: 0.92rem; color: var(--dark); text-decoration: none; font-weight: 500; }
.ci-text a:hover { color: var(--gold); }

/* Contact Form */
.cform {
  background: var(--dark2); padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1rem; }
.fg label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--gray); font-weight: 700; }
.fg input, .fg textarea, .fg select {
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(200,136,28,0.15);
  background: var(--Alabaster);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--dark);
  outline: none;
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none; appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,136,28,0.1);
}
.fg input.invalid, .fg select.invalid, .fg textarea.invalid { border-color: #C0392B !important; background: #fff8f8; }
.fg input.valid, .fg select.valid, .fg textarea.valid { border-color: #2A7A3A !important; }
.fg textarea { resize: vertical; min-height: 110px; }
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236A6058' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  background-color: var(--Alabaster); padding-right: 2.5rem;
}
.err { display: block; font-size: 0.75rem; color: #C0392B; margin-top: 3px; min-height: 15px; font-weight: 500; }
.form-notice { padding: 0.85rem 1rem; font-size: 0.88rem; font-weight: 500; display: none; margin-bottom: 0.8rem; border-radius: var(--radius-sm); }
.form-notice.success { display: block; background: #EAF7ED; color: #1E6830; border: 1px solid #A8DFB5; }
.form-notice.error   { display: block; background: #FDECEA; color: #922B21; border: 1px solid #F5B7B1; }
.sbtn {
  width: 100%; padding: 1rem; background: var(--dark); color: #fff;
  border: none; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0.6px; cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}
.sbtn:hover { background: var(--gold); transform: translateY(-1px); }
.sbtn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--dark); padding: 5rem 5%; text-align: center;
}
.cta-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 0.8rem; }
.cta-strip p { color: rgba(255,255,255,0.5); margin-bottom: 2rem; font-size: 0.95rem; font-weight: 300; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark2); padding: 2.8rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative; z-index: 1; clear: both;
  min-width: 0; width: 100%;
}
.flogo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: #fff; }
.flogo span { color: var(--gold); }
.flogo img {
    width: 45px;      /* Adjust size as needed */
    
    object-fit: contain;
}
.ftag { font-size: 0.72rem; color: rgba(255,255,255,0.22); letter-spacing: 0.8px; margin-top: 3px; }
footer p { font-size: 0.75rem; color: rgba(255,255,255,0.18); }

/* ─── SCROLL REVEAL ─── */
[data-r] { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
[data-r="up"]    { transform: translateY(30px); }
[data-r="left"]  { transform: translateX(-30px); }
[data-r="right"] { transform: translateX(30px); }
[data-r].visible { opacity: 1; transform: translate(0,0); }

/* ─── HERO PILL FIX ─── */
.hero-body { overflow: visible; }
.hero-pill { white-space: nowrap; }

/* ─── RECENT WORK GRID ─── */
.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.recent-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.recent-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── WHY US SECTION ─── */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-us-left {}
.why-us-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem; line-height: 1.8; font-weight: 300; margin-top: 1rem;
}
.why-us-cards { display: flex; flex-direction: column; gap: 1rem; }
.why-us-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.why-us-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(200,136,28,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.why-us-card strong { color: #fff; font-size: 0.92rem; display: block; margin-bottom: 3px; }
.why-us-card p { color: rgba(255,255,255,0.4); font-size: 0.84rem; margin: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .nav-center { display: none; }
  .hamburger { display: flex; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-img-col { height: 340px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .stats-bar { flex-wrap: wrap; }
  .stat-block { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .why-us-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .recent-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
 
  .hero h1 { font-size: 2.7rem; letter-spacing: -0.8px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .btn-fill, .btn-outline, .btn-dark { width: 100%; text-align: center; }
  .hero-contacts { gap: 1.2rem; }
  .hero-body{ padding-top: 40px;}
  .form-row { grid-template-columns: 1fr; }
  .cform { padding: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .lb-prev { left: 0.5rem; } .lb-next { right: 0.5rem; }
  .proc-item { grid-template-columns: 1fr; }
  .recent-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; }
  .stat-block { flex: 0 0 50%; }
  .home-section { padding: 4rem 5%; }
}
@media(max-width:768px){
  .stats-bar{
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:480px){
  .stats-bar{
    grid-template-columns: 1fr;
  }
}
@media(max-width:900px){
  .stats-bar{
    grid-template-columns: repeat(2, 1fr);
  }
}

