/* ============================================================
   ALIK Construction & Interiors — Premium CSS
   Theme: Bold Warmth | Burnt Orange + Amber + Warm Black

   Palette:
   --gold       #d27020  Burnt Orange  (primary accent)
   --gold-light #f0c53c  Amber Yellow  (highlight / glow)
   --gold-dark  #f25810  Vivid Orange  (CTA / hover fire)
   --black      #20201c  Warm Near-Black
   --dark       #28271f  Dark Warm Brown
   --dark2      #302f26  Deep Warm Charcoal
   --mid        #4a4d50  Slate Grey
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --gold:       #F4B400;
  --gold-light: #FFD54F;
  --gold-dark:  #C49000;

  --black:      #222222;   /* softer black for text */
  --dark:       #FFFFFF;   /* no dark background */
  --dark2:      #F9F9F9;   /* section background */

  --mid:        #4A4D50;
  --gray:       #8A8880;
  --light-gray: #F5F5F5;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;

  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-gold:  0 10px 30px rgba(244,180,0,0.18);
  --shadow-dark:  0 10px 30px rgba(0,0,0,0.08);
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Selection ── */
::selection { background: var(--gold); color: var(--black); }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(3rem, 7vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p  { font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.85; }

/* ── Gold Text ── */
.gold { color: var(--gold); }
.text-center { text-align: center; }

/* ── Section Label ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 2.5rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1.8rem; height: 1px;
  background: var(--gold);
}

/* ── Section Header ── */
.section-header { margin-bottom: 3.5rem; }
.section-header p { max-width: 560px; margin-top: 1rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 1rem auto 0; }
.section-header.centered .section-label { padding-left: 0; }
.section-header.centered .section-label::before { display: none; }

/* ── Gold Divider ── */
.gold-line {
  display: block;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, #d27020, #f0c53c, transparent);
  margin: 1.5rem 0;
}
.centered .gold-line { margin: 1.5rem auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn-gold {
  background: linear-gradient(135deg, #f25810, #d27020);
  color: var(--black);
}
.btn-gold:hover { background: linear-gradient(135deg, #f0c53c, #d27020); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(210,112,32,0.35); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--gold); transform: translateY(-2px); }

.btn-arrow::after { content: none; }
.btn-arrow span { transition: transform 0.3s; }
.btn-arrow:hover span { transform: translateX(5px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(32,32,28,0.97);
  backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(210,112,32,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo-main span { color: var(--gold); }
.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,32,28,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.active { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #20201c 0%, #1A1510 40%, #20201c 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(32,32,28,0.92) 40%, transparent);
}
.hero-overlay-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(210,112,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210,112,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(210,112,32,0.4);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.9;
  animation: fadeInUp 0.9s ease 0.6s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.8s both;
}
.hero-stats {
  position: absolute;
  bottom: 4rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  gap: 3rem;
  animation: fadeIn 1s ease 1s both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, #f0c53c, #d27020, transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
  100% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   CONTAINER & SECTIONS
   ============================================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}
section { padding: 8rem 0; }
.section-dark  { background: var(--dark); } /* #28271f */
.section-darker { background: #1e1d16; }
.section-dark2 { background: var(--dark2); }
.section-light { background: var(--light-gray); color: var(--black); }
.section-light p { color: rgba(0,0,0,0.65); }
.section-light .section-label { }

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  filter: brightness(0.9);
}
.about-img-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: linear-gradient(135deg, #f25810, #d27020);
  color: var(--black);
  padding: 2rem;
  text-align: center;
  min-width: 140px;
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}
.about-img-badge span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  margin-top: 0.3rem;
  display: block;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.about-feature-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(210,112,32,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.9rem;
}
.about-feature-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.about-feature-text p { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: rgba(210,112,32,0.15);
}
.service-card {
  background: var(--dark);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #d27020, #f0c53c, transparent);
  transition: width 0.5s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--dark2); transform: translateY(-4px); }
.service-card-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(210,112,32,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}
.service-card:hover .service-card-number { color: rgba(210,112,32,0.25); }
.service-card-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(210,112,32,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s;
}
.service-card:hover .service-card-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}
.service-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateY(0); }

/* ============================================================
   PROJECTS GALLERY
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(210,112,32,0.1);
}
.project-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.project-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.7);
}
.project-item:hover img { transform: scale(1.06); filter: brightness(0.5); }
.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  transition: all 0.4s;
}
.project-category {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.project-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
}
.project-view {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0;
  transition: all 0.4s;
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}
.project-item:hover .project-view { opacity: 1; transform: translate(-50%, -50%); }

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  background: transparent;
  transition: all 0.3s;
}
.filter-tab:hover, .filter-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(210,112,32,0.08);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.why-us-items { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s;
}
.why-item:hover {
  border-color: rgba(210,112,32,0.3);
  background: rgba(210,112,32,0.04);
}
.why-item-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.why-item-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.why-item-content p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s;
}
.testimonial-card:hover {
  border-color: rgba(210,112,32,0.25);
  background: rgba(210,112,32,0.04);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 1.8rem;
  font-style: italic;
}
.testimonial-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(210,112,32,0.3);
}
.testimonial-name strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}
.testimonial-name span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #f25810 0%, #d27020 45%, #e8901a 75%, #f0c53c 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/texture.png') repeat;
  opacity: 0.08;
}
.cta-banner h2 { color: var(--black); font-size: clamp(2rem, 4vw, 3rem); }
.cta-banner p { color: rgba(0,0,0,0.65); margin: 1rem auto 2.5rem; max-width: 520px; }
.cta-banner-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.contact-info-items { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(210,112,32,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0; font-size: 1rem;
}
.contact-info-text strong { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--white); }
.contact-info-text p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(210,112,32,0.05);
  box-shadow: 0 0 0 3px rgba(210,112,32,0.08);
}
.form-group select option { background: var(--dark2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-msg {
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
}
.form-msg.success { background: rgba(46,186,100,0.12); border: 1px solid rgba(46,186,100,0.3); color: #2eba64; display: block; }
.form-msg.error   { background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.3); color: #ff6060; display: block; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 12rem 0 6rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(210,112,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210,112,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d27020, #f0c53c, #d27020, transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(210,112,32,0.1);
  margin-top: 4rem;
}
.mv-card {
  background: var(--dark);
  padding: 3.5rem;
}
.mv-card h3 { margin-bottom: 1.2rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card { text-align: center; }
.team-img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.team-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.8);
  transition: all 0.5s;
}
.team-card:hover .team-img-wrap img { filter: brightness(0.7) saturate(0.9); transform: scale(1.03); }
.team-card h4 { font-family: var(--font-display); font-size: 1.4rem; }
.team-card .role {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: all 0.5s;
}
.service-detail:hover .service-detail-img { filter: brightness(0.9); }
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.service-detail-list li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   ADMIN / DASHBOARD
   ============================================================ */
.admin-body {
  background: var(--dark2);
  min-height: 100vh;
  font-family: var(--font-body);
}
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  background-image:
    linear-gradient(rgba(210,112,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210,112,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.login-card {
  background: var(--dark2);
  border: 1px solid rgba(210,112,32,0.15);
  padding: 3.5rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.login-card h2 { margin-bottom: 0.5rem; }
.login-card p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.login-form { display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.admin-top {
  background: var(--dark);
  border-bottom: 1px solid rgba(210,112,32,0.1);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-logo { font-family: var(--font-display); font-size: 1.4rem; }
.admin-logo span { color: var(--gold); }
.admin-main { padding: 2.5rem; max-width: 1300px; margin: 0 auto; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.admin-stat-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2rem;
}
.admin-stat-card .num {
  /* amber accent */
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.admin-stat-card .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.3rem; }
.admin-table-wrap { background: var(--dark); border: 1px solid rgba(255,255,255,0.07); overflow-x: auto; }
.admin-table-head {
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-table-head h3 { font-family: var(--font-display); font-size: 1.3rem; }
table { width: 100%; border-collapse: collapse; }
thead th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
tbody td {
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
}
tbody tr:hover { background: rgba(255,255,255,0.02); }
.badge-service {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(210,112,32,0.12);
  color: var(--gold);
  border: 1px solid rgba(210,112,32,0.25);
}
.btn-delete {
  background: transparent;
  border: 1px solid rgba(255,80,80,0.3);
  color: #ff6060;
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-delete:hover { background: rgba(255,80,80,0.1); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(210,112,32,0.1);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand p { font-size: 0.82rem; margin-top: 1.2rem; max-width: 300px; }
.footer-logo-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
}
.footer-logo-main span { color: var(--gold); }
.footer-logo-sub { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.8rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.8rem; margin-bottom: 1rem; }
.footer-contact-item i { color: var(--gold); font-size: 0.85rem; margin-top: 0.2rem; }
.footer-contact-item span { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 500;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.3s;
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.whatsapp-float:hover { animation: none; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ── Keyframes ── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@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: 1200px) {
  .about-preview, .why-us-wrap, .contact-wrap { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 992px) {
  section { padding: 5rem 0; }
  .container { padding: 0 2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-preview, .why-us-wrap, .contact-wrap,
  .service-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail.reverse { direction: ltr; }
  .service-detail-img { height: 300px; }
  .about-img-wrap img { height: 380px; }
  .about-img-badge { bottom: 1rem; right: 1rem; }
  .testimonials-wrap { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 576px) {
  .container { padding: 0 1.2rem; }
  .nav-container { padding: 0 1.2rem; }
  .hero-content { padding: 0 1.2rem; padding-top: 80px; }
  .form-row { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; cursor: pointer; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(32,32,28,.98);
  border: 1px solid rgba(210,112,32,.18);
  backdrop-filter: blur(20px);
  min-width: 200px;
  padding: .6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all .3s ease;
  pointer-events: none;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(210,112,32,.2);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown-menu li a {
  display: flex; align-items: center; gap: .7rem;
  padding: .65rem 1.4rem;
  font-size: .75rem !important;
  letter-spacing: .08em !important;
  color: rgba(255,255,255,.65) !important;
  transition: all .25s;
  white-space: nowrap;
}
.nav-dropdown-menu li a::after { display: none !important; }
.nav-dropdown-menu li a i { color: var(--gold); font-size: .82rem; width: 14px; }
.nav-dropdown-menu li a:hover { background: rgba(210,112,32,.07); color: var(--gold) !important; padding-left: 1.7rem; }

/* ============================================================
   BLOG PLACEHOLDER IMAGE FALLBACK
   ============================================================ */
.blog-card-img-wrap img[src=""] ,
.blog-card-img-wrap img:not([src]) {
  display: none;
}
