/* ==========================================================================
   AF MEDIA - Editorial Boutique Design System & Responsive Enhancements
   Inspired by Aesthetics Social (https://www.aestheticssocial.com/)
   ========================================================================== */

/* 1. Imports & Fonts */
@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=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* 2. CSS Variables / Design Tokens */
:root {
  /* Palette */
  --bg-primary: #FAF8F5;
  --bg-secondary: #F3EFEA;
  --bg-card: #FFFFFF;
  --bg-dark: #161513;
  --bg-dark-card: #201E1C;
  --bg-dark-glass: rgba(22, 21, 19, 0.85);

  --text-main: #22201D;
  --text-muted: #6B6760;
  --text-light: #FAF8F5;
  --text-light-muted: #A8A49D;

  --accent: #C87A57;
  --accent-dark: #A65E3D;
  --accent-light: #F4E8E1;
  --accent-gold: #D4AF37;
  
  --border-light: rgba(34, 32, 29, 0.08);
  --border-medium: rgba(34, 32, 29, 0.15);
  --border-dark: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.09);
  --shadow-accent: 0 16px 36px rgba(200, 122, 87, 0.18);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Container */
  --container-max: 1320px;
}

/* 3. Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

/* Container */
.container {
  width: 92%;
  max-width: var(--container-max);
  margin: 0 auto;
  box-sizing: border-box;
}

/* Typography Utilities */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow-dark {
  color: var(--accent-gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.section-title span {
  font-style: italic;
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  font-weight: 400;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.925rem;
  letter-spacing: 0.02em;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(200, 122, 87, 0.28);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-medium);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background-color: var(--text-main);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

/* HEADER & NAV */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all var(--transition-smooth);
}

.header.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-brand {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

.logo-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  background: rgba(243, 239, 234, 0.7);
  backdrop-filter: blur(12px);
  padding: 0.4rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border-light);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
  transition: all var(--transition-fast);
  padding: 0.4rem 0.6rem;
  border-radius: 9999px;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: rgba(200, 122, 87, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

/* HERO SECTION */
.hero {
  padding-top: 10.5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(200, 122, 87, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(243, 239, 234, 1) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.2vw, 4.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-subheadline {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-medium);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-main);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid #FFFFFF;
}

.hero-image-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-badge-floating {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  max-width: 260px;
  z-index: 2;
}

.badge-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.badge-title {
  font-size: 0.775rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-accent-shape {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 140px;
  height: 140px;
  border: 2px dashed var(--accent);
  border-radius: 50%;
  z-index: -1;
}

/* PROOF / LOGO BAR SECTION */
.proof-section {
  padding: 4.5rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.proof-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.proof-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.proof-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.brand-card {
  background: var(--bg-card);
  padding: 1.25rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.25;
}

/* ABOUT SECTION - MEET ABENI */
.about-section {
  padding: 7rem 0;
  background-color: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image-collage {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 8px solid #FFFFFF;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-quote-card {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  max-width: 320px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-dark);
}

.about-quote-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  color: #F3EFEA;
}

.about-quote-ref {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.agency-callout-box {
  background: var(--bg-secondary);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.agency-callout-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.agency-callout-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* WHO WE SERVE SECTION */
.serve-section {
  padding: 7rem 0;
  background-color: var(--bg-secondary);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.serve-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 480px;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.serve-card-bg-1 {
  background: linear-gradient(180deg, rgba(16, 15, 14, 0.72) 0%, rgba(16, 15, 14, 0.92) 100%),
              url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}

.serve-card-bg-2 {
  background: linear-gradient(180deg, rgba(16, 15, 14, 0.72) 0%, rgba(16, 15, 14, 0.92) 100%),
              url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}

.serve-card-bg-3 {
  background: linear-gradient(180deg, rgba(16, 15, 14, 0.72) 0%, rgba(16, 15, 14, 0.92) 100%),
              url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}

.serve-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  border-color: var(--accent);
}

.serve-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: var(--accent-gold);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.serve-card-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.serve-who {
  font-size: 0.975rem;
  color: #E2DFD8;
  margin-bottom: 1.5rem;
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.serve-who strong {
  color: #FFFFFF;
  font-weight: 700;
}

.serve-goal-box {
  background: rgba(22, 21, 19, 0.85);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 122, 87, 0.3);
  margin-top: auto;
}

.serve-goal-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.serve-goal-text {
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.5;
}

/* SERVICES SECTION */
.services-section {
  padding: 7rem 0;
  background-color: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 122, 87, 0.3);
}

.service-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.service-highlight {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}

/* MEDIA SHOWCASE SECTION (6 REELS IN ONE HORIZONTAL ROW) */
.showcase-section {
  padding: 7rem 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.showcase-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.phone-mockup-card-sm {
  background: var(--bg-dark-card);
  border-radius: 24px;
  padding: 8px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.phone-mockup-card-sm:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 24px 48px rgba(200, 122, 87, 0.35);
}

.phone-screen-sm {
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #000000;
}

.phone-screen-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.phone-mockup-card-sm:hover .phone-screen-sm img {
  transform: scale(1.08);
}

.phone-overlay-sm {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.85rem 0.65rem;
  color: #FFFFFF;
}

.reel-tag-sm {
  align-self: flex-start;
  background: rgba(200, 122, 87, 0.85);
  backdrop-filter: blur(6px);
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.play-btn-circle-sm {
  width: 40px;
  height: 40px;
  background: rgba(200, 122, 87, 0.95);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  transition: transform var(--transition-bounce);
}

.phone-mockup-card-sm:hover .play-btn-circle-sm {
  transform: scale(1.2);
  background: var(--accent-gold);
  color: #000000;
}

.reel-info-sm {
  margin-top: auto;
}

.reel-client-sm {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.reel-type-sm {
  font-size: 0.7rem;
  color: var(--text-light-muted);
}

/* REVIEWS SECTION */
.reviews-section {
  padding: 7rem 0;
  background-color: var(--bg-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.review-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.author-business {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* PROCESS SECTION */
.process-section {
  padding: 7rem 0;
  background-color: var(--bg-primary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
}

.process-step {
  background: var(--bg-card);
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-smooth);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* FINAL CTA & CONTACT SECTION */
.contact-section {
  padding: 7rem 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.contact-info .section-title {
  color: #FFFFFF;
}

.contact-info .section-subtitle {
  color: var(--text-light-muted);
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-dark-card);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  transition: border-color var(--transition-fast);
}

.contact-method-card:hover {
  border-color: var(--accent);
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 122, 87, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.method-label {
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
}

.method-val {
  font-weight: 700;
  font-size: 1.1rem;
  color: #FFFFFF;
}

.contact-form-box {
  background: var(--bg-dark-card);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.form-desc {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: #E2DFD8;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(200, 122, 87, 0.25);
}

.form-select option {
  background: var(--bg-dark);
  color: #FFFFFF;
}

/* EXPANDED RICH FOOTER & STYLED CONTACT BUTTONS */
.footer {
  padding: 5rem 0 2.5rem;
  background-color: #0B0A09;
  color: var(--text-light-muted);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links li a {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  transition: color var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--accent-gold);
}

.footer-contact-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  width: 100%;
}

.footer-contact-btn-phone {
  background: rgba(200, 122, 87, 0.15);
  border: 1px solid var(--accent);
  color: #FFFFFF;
}

.footer-contact-btn-phone:hover {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(200, 122, 87, 0.3);
}

.footer-contact-btn-email {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  color: #E2DFD8;
}

.footer-contact-btn-email:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.footer-geo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.geo-tag {
  font-size: 0.725rem;
  background: rgba(255,255,255,0.06);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  color: var(--text-light-muted);
  border: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-light-muted);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* VERTICAL REEL MODAL FIX */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-card);
  width: 92%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
  box-shadow: var(--shadow-lg);
  max-height: 92vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-muted);
}

#reel-iframe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

#reel-iframe-container iframe {
  width: 320px;
  max-width: 100%;
  height: 560px;
  border: none;
  border-radius: 16px;
}

/* TOAST NOTIFICATION */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-dark);
  color: #FFFFFF;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-bounce);
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* RESPONSIVE DESIGN FOR MOBILE & TABLET */
@media (max-width: 1200px) {
  .showcase-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .serve-grid, .services-grid, .reviews-grid, .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .container {
    width: 94% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .logo-brand {
    font-size: 1.45rem !important;
  }

  .logo-tag {
    font-size: 0.55rem !important;
  }

  .nav-wrapper {
    gap: 0.4rem !important;
    justify-content: space-between !important;
  }

  .nav-actions {
    gap: 0.35rem !important;
    flex-shrink: 0;
  }

  .nav-actions .btn-text-full {
    display: none !important;
  }

  .nav-actions .btn-icon-only {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    font-size: 0.85rem !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
  }

  .mobile-toggle {
    display: flex !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-toggle svg {
    width: 18px !important;
    height: 18px !important;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-smooth);
    border-radius: 0;
    gap: 1.25rem;
    box-sizing: border-box;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .showcase-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .serve-grid, .services-grid, .reviews-grid, .process-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge-floating {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -3rem;
    margin-left: 1rem;
  }

  .about-quote-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-left: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
