/* ============================================
   WARDPRIM CONSTRUCTION SERVICES - Main Styles
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&family=Playfair+Display:wght@700&display=swap');

/* ============================================
   CSS Reset
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   CSS Custom Properties - Color Palette
   ============================================ */

:root {
  /* Primary Colors - Premium Stellar Slate & Gold */
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-300: #CBD5E1;
  --slate-50: #F8FAFC;
  --gold-500: #EAB308;
  --gold-400: #FACC15;
  --gold-600: #CA8A04;
  --gold-700: #A16207;

  /* Accent Colors */
  --premium-gold: linear-gradient(135deg, #FDE047 0%, #EAB308 50%, #A16207 100%);
  --glass-bg: rgba(15, 23, 42, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Legacy mapping for compatibility while refactoring */
  --earth-red: var(--gold-500);
  --savanna-gold: var(--gold-400);
  --deep-brown: var(--slate-900);
  --charcoal: var(--slate-800);
  --light-gray: #F8FAFC;
  --white: #FFFFFF;
  --warm-cream: #F1F5F9;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Responsive Breakpoints */
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1024px;
  --breakpoint-large: 1200px;

  /* Spacing Units */
  --spacing-unit: 16px;
  --container-width: 100%;
}

/* ============================================
   Typography
   ============================================ */

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 1rem;
}

strong,
b {
  font-weight: 600;
}

/* ============================================
   Responsive Breakpoints - Tablet (768px+)
   ============================================ */

@media (min-width: 768px) {
  :root {
    --container-width: 720px;
    --grid-columns: 2;
    --spacing-unit: 24px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }
}

/* ============================================
   Responsive Breakpoints - Desktop (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  :root {
    --container-width: 960px;
    --grid-columns: 3;
    --spacing-unit: 32px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }
}

/* ============================================
   Responsive Breakpoints - Large Desktop (1200px+)
   ============================================ */

@media (min-width: 1200px) {
  :root {
    --container-width: 1140px;
    --spacing-unit: 40px;
  }
}

/* ============================================
   Utility Classes
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

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

.text-accent {
  font-family: var(--font-accent);
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   Header Component
   ============================================ */

.site-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0.5rem 0;
}

.site-header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(15, 23, 42, 0.95);
  color: white;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Header Content Layout */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
}

/* Flex Header Layout */
.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo img {
  height: 70px;
  width: auto;
}

.logo-text h1 {
  font-size: 26px;
  color: #0F172A;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.logo-text span {
  color: #EAB308;
  font-size: 13px;
  display: block;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo h1 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-brown);
  margin: 0;
  letter-spacing: 0.5px;
}

/* Main Navigation - Push to Right */
.main-nav {
  margin-left: auto;
  flex-shrink: 0;
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: block;
  }
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 13px;
  min-width: 120px;
}

/* Navigation */
.main-nav {
  position: relative;
}

.nav-list {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-list li {
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  transition: all 0.3s ease;
  position: relative;
}

/* African-inspired hover effect with geometric accent */
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--earth-red), var(--savanna-gold));
  transition: width 0.3s ease;
}

.nav-list a:hover {
  color: var(--earth-red);
}

.nav-list a:hover::after {
  width: 80%;
}

/* Active page styling */
.nav-list a.active {
  color: var(--earth-red);
  font-weight: 700;
}

.nav-list a.active::after {
  width: 80%;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--deep-brown);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* ============================================
   Responsive Header - Mobile (< 768px)
   ============================================ */

@media (max-width: 767px) {
  .logo h1 {
    font-size: 16px;
    max-width: 200px;
    line-height: 1.3;
  }
  
  .logo img {
    height: 40px;
  }
  
  .logo-text h1 {
    font-size: 16px;
  }
  
  .logo-text span {
    font-size: 10px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--warm-cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 2rem 2rem;
    gap: 0;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .nav-list.open {
    right: 0;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(45, 36, 36, 0.1);
  }

  .nav-list a {
    width: 100%;
    padding: 1rem 0;
    font-size: 16px;
  }

  .nav-list a::after {
    left: 0;
    transform: translateX(0);
    height: 2px;
  }

  .nav-list a:hover::after,
  .nav-list a.active::after {
    width: 100%;
  }

  /* African pattern accent on mobile menu */
  .nav-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, var(--earth-red) 0%, var(--savanna-gold) 100%);
    opacity: 0.15;
  }
}

/* ============================================
   Responsive Header - Tablet (768px+)
   ============================================ */

@media (min-width: 768px) {
  .logo h1 {
    font-size: 20px;
  }
  
  .logo img {
    height: 80px;
  }
  
  .logo-text h1 {
    font-size: 28px;
  }
  
  .logo-text span {
    font-size: 14px;
  }

  .nav-list {
    gap: 0.5rem;
  }
}

/* ============================================
   Responsive Header - Desktop (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  .logo h1 {
    font-size: 22px;
  }
  
  .logo img {
    height: 90px;
  }
  
  .logo-text h1 {
    font-size: 32px;
  }
  
  .logo-text span {
    font-size: 15px;
  }

  .nav-list {
    gap: 1rem;
  }

  .nav-list a {
    font-size: 16px;
  }
}

/* ============================================
   Footer Component
   ============================================ */

.site-footer {
  background-color: var(--deep-brown);
  color: var(--warm-cream);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 4px solid var(--earth-red);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--savanna-gold);
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--savanna-gold);
  margin-bottom: 0.75rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.footer-section .address {
  font-style: normal;
}

.footer-section .email a {
  color: var(--savanna-gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-section .email a:hover {
  color: var(--earth-red);
}

.quick-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-links a {
  color: var(--warm-cream);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 1rem;
}

.quick-links a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--earth-red);
  transition: transform 0.3s ease;
}

.quick-links a:hover {
  color: var(--savanna-gold);
  transform: translateX(4px);
}

.quick-links a:hover::before {
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 165, 116, 0.3);
  font-size: 14px;
  color: rgba(245, 230, 211, 0.8);
}

/* ============================================
   Responsive Footer - Tablet (768px+)
   ============================================ */

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

/* ============================================
   Responsive Footer - Desktop (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  .site-footer {
    padding: 4rem 0 2rem;
  }

  .footer-content {
    gap: 4rem;
  }
}

/* ============================================
   Button Styles
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 99px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  min-width: 160px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--premium-gold);
  color: var(--slate-900);
  box-shadow: 0 10px 25px -5px rgba(234, 179, 8, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 35px -10px rgba(234, 179, 8, 0.6);
}

.btn-secondary {
  background-color: transparent;
  color: var(--slate-900);
  border: 1px solid var(--slate-900);
}

.btn-secondary:hover {
  background-color: var(--slate-900);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--slate-900);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(234, 179, 8, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(234, 179, 8, 0.05) 0%, transparent 50%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

.african-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(234, 179, 8, 0.03) 10px, rgba(234, 179, 8, 0.03) 20px);
  opacity: 0.5;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--premium-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--slate-300);
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Services Overview Section
   ============================================ */

.services-overview {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--deep-brown);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--earth-red), var(--savanna-gold));
  border-radius: 2px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--charcoal);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-highlight {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
}

.service-highlight:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.2);
  border-color: var(--gold-400);
}

.service-icon {
  width: 100%;
  height: 240px;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.4) 100%);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-highlight h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--deep-brown);
  margin-bottom: 1rem;
}

.service-highlight p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 0;
}

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

/* ============================================
   Responsive Services Overview - Tablet (768px+)
   ============================================ */

@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .services-overview {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 36px;
  }

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

  .service-icon {
    height: 220px;
  }
}

/* ============================================
   Responsive Services Overview - Desktop (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  .hero {
    min-height: 100vh;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .services-overview {
    padding: 6rem 0;
  }

  .section-title {
    font-size: 40px;
  }

  .section-intro {
    font-size: 19px;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .service-icon {
    height: 180px;
  }

  .service-highlight h3 {
    font-size: 20px;
  }

  .service-highlight p {
    font-size: 15px;
  }
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.why-choose-us {
  padding: 5rem 0;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background-color: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.03);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1);
  border-color: var(--gold-400);
}

.feature-icon .icon {
  font-size: 48px;
  display: inline-block;
  background: var(--premium-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon .icon {
  transform: scale(1.1) rotate(5deg);
}

/* ============================================
   Statistics Section
   ============================================ */

.statistics {
  padding: 7rem 0;
  background-color: var(--slate-900);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(234, 179, 8, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(234, 179, 8, 0.05) 0%, transparent 40%);
  position: relative;
  overflow: hidden;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate-300);
  opacity: 0.8;
}

/* ============================================
   Featured Projects Section
   ============================================ */

.featured-projects {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.featured-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  min-height: 300px;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.featured-main {
  grid-column: 1;
  min-height: 400px;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover img {
  transform: scale(1.1);
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(45, 36, 36, 0.95) 0%, rgba(45, 36, 36, 0.7) 50%, transparent 100%);
  padding: 2rem;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.featured-card:hover .featured-overlay {
  background: linear-gradient(to top, rgba(200, 75, 49, 0.95) 0%, rgba(200, 75, 49, 0.8) 50%, transparent 100%);
}

.project-type {
  display: inline-block;
  background-color: var(--earth-red);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.featured-overlay h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--warm-cream);
  margin-bottom: 0.5rem;
}

.featured-overlay p {
  font-size: 14px;
  color: var(--savanna-gold);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-overlay .btn {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.featured-card:hover .featured-overlay .btn {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
  padding: 5rem 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  transition: all 0.5s ease;
  border: 1px solid rgba(15, 23, 42, 0.03);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.15);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.quote {
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 48px;
  color: var(--earth-red);
  font-family: var(--font-accent);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--earth-red);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--deep-brown);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 14px;
  color: var(--charcoal);
  margin: 0;
  opacity: 0.8;
}

/* ============================================
   Process Section
   ============================================ */

.process-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.process-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.03);
  transition: all 0.4s ease;
}

.process-card:hover {
  border-color: var(--gold-400);
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--slate-900);
  color: var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.process-card:hover .process-number {
  background: var(--premium-gold);
  color: var(--slate-900);
  transform: scale(1.1);
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--deep-brown);
  margin-bottom: 1rem;
}

.process-card p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   Home CTA Section
   ============================================ */

.home-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--deep-brown) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(212, 165, 116, 0.05) 15px, rgba(212, 165, 116, 0.05) 30px);
  opacity: 0.5;
}

.home-cta .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-accent);
  font-size: 36px;
  color: var(--warm-cream);
  margin-bottom: 1rem;
}

.cta-content>p {
  font-size: 18px;
  color: var(--savanna-gold);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.contact-quick-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--warm-cream);
  font-size: 16px;
}

.contact-icon {
  font-size: 20px;
}

/* ============================================
   Responsive Styles for New Sections
   ============================================ */

@media (min-width: 768px) {
  .why-choose-us {
    padding: 6rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .statistics {
    padding: 6rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .stat-number {
    font-size: 64px;
  }

  .featured-projects {
    padding: 6rem 0;
  }

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

  .featured-main {
    grid-column: 1 / -1;
    min-height: 450px;
  }

  .testimonials {
    padding: 6rem 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .process-section {
    padding: 6rem 0;
  }

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

  .home-cta {
    padding: 7rem 0;
  }

  .cta-content h2 {
    font-size: 42px;
  }

  .contact-quick-info {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .why-choose-us {
    padding: 7rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .feature-card {
    padding: 3rem 2rem;
  }

  .statistics {
    padding: 7rem 0;
  }

  .stats-grid {
    gap: 3rem;
  }

  .stat-number {
    font-size: 72px;
  }

  .stat-label {
    font-size: 16px;
  }

  .featured-projects {
    padding: 7rem 0;
  }

  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
  }

  .featured-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: auto;
    height: 100%;
  }

  .testimonials {
    padding: 7rem 0;
  }

  .testimonials-grid {
    gap: 2.5rem;
  }

  .process-section {
    padding: 7rem 0;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .home-cta {
    padding: 8rem 0;
  }

  .cta-content h2 {
    font-size: 48px;
  }

  .cta-content>p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .why-choose-us {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-intro {
    font-size: 16px;
  }

  .features-grid {
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .feature-icon .icon {
    font-size: 36px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .statistics {
    padding: 3rem 0;
  }

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

  .stat-number {
    font-size: 40px;
  }

  .stat-label {
    font-size: 14px;
  }

  .featured-projects {
    padding: 3rem 0;
  }

  .featured-grid {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .featured-card {
    min-height: 250px;
  }

  .featured-main {
    min-height: 300px;
  }

  .featured-overlay {
    padding: 1.5rem;
  }

  .featured-overlay h3 {
    font-size: 18px;
  }

  .featured-overlay p {
    font-size: 13px;
  }

  .testimonials {
    padding: 3rem 0;
  }

  .testimonials-grid {
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .quote {
    font-size: 15px;
  }

  .process-section {
    padding: 3rem 0;
  }

  .process-grid {
    gap: 1.5rem;
  }

  .process-card {
    padding: 2rem;
  }

  .process-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .process-card h3 {
    font-size: 20px;
  }

  .process-card p {
    font-size: 14px;
  }

  .home-cta {
    padding: 4rem 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content>p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .contact-item {
    font-size: 14px;
  }
}

/* ============================================
   About Page Styles
   ============================================ */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--earth-red) 0%, var(--deep-brown) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255, 255, 255, 0.05) 15px, rgba(255, 255, 255, 0.05) 30px);
  opacity: 0.5;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-family: var(--font-accent);
  font-size: 32px;
  color: var(--warm-cream);
  margin-bottom: 0.5rem;
}

.about-hero .hero-subtitle {
  font-size: 18px;
  color: var(--savanna-gold);
  margin-bottom: 0;
}

/* Section Divider with African Motif */
.section-divider {
  margin: 3rem 0;
  border: none;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--earth-red) 50%, transparent 100%);
  position: relative;
}

.section-divider::before {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--earth-red);
  background-color: var(--white);
  padding: 0 1rem;
}

/* Company History Section */
.company-history {
  padding: 4rem 0;
  background-color: var(--white);
}

.company-history h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.company-history h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--earth-red), var(--savanna-gold));
  border-radius: 2px;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.text-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.text-content h3 {
  font-size: 20px;
  color: var(--deep-brown);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.25rem;
}

.text-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.text-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--earth-red);
  font-size: 18px;
}

.image-content {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}

.image-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid var(--earth-red);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.image-content:hover::after {
  opacity: 1;
}

.image-content img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-content:hover img {
  transform: scale(1.05);
}

/* Mission and Vision Section */
.mission-vision {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--light-gray) 100%);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.mission-card,
.vision-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  border-top: 4px solid var(--earth-red);
  transition: all 0.3s ease;
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--earth-red), var(--savanna-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
  opacity: 1;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mission-card h2,
.vision-card h2 {
  font-size: 24px;
  color: var(--deep-brown);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

.mission-card h2::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--earth-red);
  font-size: 24px;
}

.vision-card h2::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--savanna-gold);
  font-size: 24px;
}

.mission-card p,
.vision-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0;
}

/* Core Values Section */
.core-values {
  padding: 4rem 0;
  background-color: var(--white);
}

.core-values h2 {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.core-values h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--earth-red), var(--savanna-gold));
  border-radius: 2px;
}

.core-values .section-intro {
  text-align: center;
  font-size: 17px;
  color: var(--charcoal);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  list-style: none;
  padding: 0;
}

.values-list li {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--earth-red);
  transition: all 0.3s ease;
  position: relative;
}

.values-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -4px;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--earth-red), var(--savanna-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.values-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.values-list li:hover::before {
  opacity: 1;
}

.values-list h3 {
  font-size: 20px;
  color: var(--deep-brown);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
}

.values-list h3::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--earth-red);
  font-size: 18px;
}

.values-list p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 0;
}

/* Expertise and Experience Section */
.expertise-experience {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.expertise-experience h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.expertise-experience h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--earth-red), var(--savanna-gold));
  border-radius: 2px;
}

/* ============================================
   Responsive About Page - Tablet (768px+)
   ============================================ */

@media (min-width: 768px) {
  .about-hero {
    padding: 5rem 0 4rem;
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .about-hero .hero-subtitle {
    font-size: 20px;
  }

  .content-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .values-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .section-divider {
    margin: 4rem 0;
  }
}

/* ============================================
   Responsive About Page - Desktop (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  .about-hero {
    padding: 6rem 0 5rem;
  }

  .about-hero h1 {
    font-size: 48px;
  }

  .about-hero .hero-subtitle {
    font-size: 22px;
  }

  .company-history,
  .core-values,
  .expertise-experience {
    padding: 5rem 0;
  }

  .mission-vision {
    padding: 5rem 0;
  }

  .content-wrapper {
    gap: 4rem;
  }

  .mission-vision-grid {
    gap: 3rem;
  }

  .values-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .text-content p {
    font-size: 17px;
  }

  .mission-card p,
  .vision-card p {
    font-size: 17px;
  }

  .values-list p {
    font-size: 16px;
  }

  .section-divider {
    margin: 5rem 0;
  }
}

/* ============================================
   Responsive About Page - Mobile Stacking
   ============================================ */

@media (max-width: 767px) {
  .about-hero {
    padding: 3rem 0 2rem;
  }

  .about-hero h1 {
    font-size: 28px;
  }

  .about-hero .hero-subtitle {
    font-size: 16px;
  }

  .company-history,
  .mission-vision,
  .core-values,
  .expertise-experience {
    padding: 3rem 0;
  }

  .content-wrapper {
    gap: 2rem;
  }

  /* Ensure images stack properly on mobile */
  .image-content {
    order: 2;
  }

  .text-content {
    order: 1;
  }

  /* For expertise section, reverse order */
  .expertise-experience .content-wrapper .image-content {
    order: 1;
  }

  .expertise-experience .content-wrapper .text-content {
    order: 2;
  }

  .mission-card,
  .vision-card {
    padding: 2rem;
  }

  .values-list li {
    padding: 1.5rem;
  }

  .section-divider {
    margin: 2rem 0;
  }
}

/* ============================================
   Services Page Styles
   ============================================ */

/* Services Hero Section */
.services-hero {
  background: linear-gradient(135deg, var(--earth-red) 0%, var(--deep-brown) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255, 255, 255, 0.05) 15px, rgba(255, 255, 255, 0.05) 30px);
  opacity: 0.5;
}

.services-hero .container {
  position: relative;
  z-index: 1;
}

.services-hero h1 {
  font-family: var(--font-accent);
  font-size: 32px;
  color: var(--warm-cream);
  margin-bottom: 0.5rem;
}

.services-hero .hero-subtitle {
  font-size: 18px;
  color: var(--savanna-gold);
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Category Section */
.services-category {
  padding: 4rem 0;
  background-color: var(--white);
}

.services-category:nth-child(even) {
  background-color: var(--light-gray);
}

.category-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--deep-brown);
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--earth-red), var(--savanna-gold));
  border-radius: 2px;
}

/* Services Grid */
.services-category .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Service Card */
.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid var(--earth-red);
}

/* African pattern accent on cards */
.service-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--earth-red), var(--savanna-gold), var(--earth-red));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .service-icon {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--light-gray);
  position: relative;
}

.service-card .service-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(45, 36, 36, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
  opacity: 1;
}

.service-card .service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--deep-brown);
  margin: 1.5rem 1.5rem 1rem;
  position: relative;
  padding-left: 1.5rem;
}

/* African geometric accent for card titles */
.service-card h3::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--earth-red);
  font-size: 18px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0 1.5rem 1.25rem;
}

.service-features {
  list-style: none;
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal);
}

.service-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--earth-red);
  font-size: 16px;
}

/* Services CTA Section */
.services-cta-section {
  background: linear-gradient(135deg, var(--deep-brown) 0%, var(--charcoal) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 165, 116, 0.1) 10px, rgba(212, 165, 116, 0.1) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(200, 75, 49, 0.1) 10px, rgba(200, 75, 49, 0.1) 20px);
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.services-cta-section .container {
  position: relative;
  z-index: 1;
}

.services-cta-section h2 {
  font-family: var(--font-accent);
  font-size: 32px;
  color: var(--warm-cream);
  margin-bottom: 1rem;
}

.services-cta-section p {
  font-size: 18px;
  color: var(--savanna-gold);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Responsive Services Page - Tablet (768px+)
   ============================================ */

@media (min-width: 768px) {
  .services-hero {
    padding: 5rem 0 4rem;
  }

  .services-hero h1 {
    font-size: 42px;
  }

  .services-hero .hero-subtitle {
    font-size: 20px;
  }

  .services-category {
    padding: 5rem 0;
  }

  .category-title {
    font-size: 32px;
  }

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

  .service-card .service-icon {
    height: 240px;
  }

  .service-card h3 {
    font-size: 21px;
  }

  .service-card p {
    font-size: 16px;
  }

  .service-features li {
    font-size: 15px;
  }

  .services-cta-section {
    padding: 5rem 0;
  }

  .services-cta-section h2 {
    font-size: 38px;
  }

  .services-cta-section p {
    font-size: 19px;
  }
}

/* ============================================
   Responsive Services Page - Desktop (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  .services-hero {
    padding: 6rem 0 5rem;
  }

  .services-hero h1 {
    font-size: 48px;
  }

  .services-hero .hero-subtitle {
    font-size: 22px;
  }

  .services-category {
    padding: 6rem 0;
  }

  .category-title {
    font-size: 36px;
  }

  .services-category .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .service-card .service-icon {
    height: 220px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 15px;
  }

  .services-cta-section {
    padding: 6rem 0;
  }

  .services-cta-section h2 {
    font-size: 42px;
  }

  .services-cta-section p {
    font-size: 20px;
  }
}

/* ============================================
   Responsive Services Page - Mobile (< 768px)
   ============================================ */

@media (max-width: 767px) {
  .services-hero {
    padding: 3rem 0 2rem;
  }

  .services-hero h1 {
    font-size: 28px;
  }

  .services-hero .hero-subtitle {
    font-size: 16px;
  }

  .services-category {
    padding: 3rem 0;
  }

  .category-title {
    font-size: 24px;
    margin-bottom: 2rem;
  }

  .services-category .services-grid {
    gap: 1.5rem;
  }

  .service-card .service-icon {
    height: 200px;
  }

  .service-card h3 {
    font-size: 19px;
    margin: 1.25rem 1.25rem 0.75rem;
  }

  .service-card p {
    font-size: 14px;
    margin: 0 1.25rem 1rem;
  }

  .service-features {
    padding: 0 1.25rem 1.25rem;
  }

  .service-features li {
    font-size: 13px;
  }

  .services-cta-section {
    padding: 3rem 0;
  }

  .services-cta-section h2 {
    font-size: 26px;
  }

  .services-cta-section p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================
   Projects Page Styles
   ============================================ */

/* Projects Hero Section */
.projects-hero {
  background: linear-gradient(135deg, var(--earth-red) 0%, var(--deep-brown) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.projects-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255, 255, 255, 0.05) 15px, rgba(255, 255, 255, 0.05) 30px);
  opacity: 0.5;
}

.projects-hero .container {
  position: relative;
  z-index: 1;
}

.projects-hero h1 {
  font-family: var(--font-accent);
  font-size: 32px;
  color: var(--warm-cream);
  margin-bottom: 0.5rem;
}

.projects-hero .hero-subtitle {
  font-size: 18px;
  color: var(--savanna-gold);
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Project Gallery Section */
.project-gallery {
  padding: 4rem 0;
  background-color: var(--white);
}

.project-gallery .section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--deep-brown);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.project-gallery .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--earth-red), var(--savanna-gold));
  border-radius: 2px;
}

.project-gallery .section-intro {
  text-align: center;
  font-size: 17px;
  color: var(--charcoal);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Project Card */
.project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: var(--white);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.project-card:focus {
  outline: 3px solid var(--earth-red);
  outline-offset: 2px;
}

.project-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: var(--light-gray);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

/* Project Overlay */
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(45, 36, 36, 0.95) 0%, rgba(45, 36, 36, 0.7) 70%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(200, 75, 49, 0.95) 0%, rgba(200, 75, 49, 0.8) 70%, transparent 100%);
}

.project-overlay h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--warm-cream);
  margin-bottom: 0.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.project-overlay p {
  font-size: 14px;
  color: var(--savanna-gold);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Project Modal */
.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.project-modal.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Modal Backdrop */
.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

/* Modal Content */
.modal-content {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal Close Button */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background-color: var(--earth-red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
  background-color: var(--deep-brown);
  transform: rotate(90deg);
}

.modal-close:focus {
  outline: 3px solid var(--savanna-gold);
  outline-offset: 2px;
}

/* Modal Body */
.modal-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.modal-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: var(--light-gray);
  border-radius: 12px 12px 0 0;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modal Info */
.modal-info {
  padding: 2rem;
}

.modal-info h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
}

.modal-type {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background-color: var(--earth-red);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.modal-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-details li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
}

.modal-details li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--earth-red);
  font-size: 18px;
}

/* ============================================
   Responsive Projects Page - Tablet (768px+)
   ============================================ */

@media (min-width: 768px) {
  .projects-hero {
    padding: 5rem 0 4rem;
  }

  .projects-hero h1 {
    font-size: 42px;
  }

  .projects-hero .hero-subtitle {
    font-size: 20px;
  }

  .project-gallery {
    padding: 5rem 0;
  }

  .project-gallery .section-title {
    font-size: 36px;
  }

  .project-gallery .section-intro {
    font-size: 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .project-image {
    height: 320px;
  }

  .project-overlay h3 {
    font-size: 22px;
  }

  .project-overlay p {
    font-size: 15px;
  }

  .modal-body {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .modal-image {
    height: 100%;
    min-height: 400px;
    border-radius: 12px 0 0 12px;
  }

  .modal-info {
    padding: 2.5rem;
  }

  .modal-info h3 {
    font-size: 30px;
  }

  .modal-description {
    font-size: 16px;
  }
}

/* ============================================
   Responsive Projects Page - Desktop (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  .projects-hero {
    padding: 6rem 0 5rem;
  }

  .projects-hero h1 {
    font-size: 48px;
  }

  .projects-hero .hero-subtitle {
    font-size: 22px;
  }

  .project-gallery {
    padding: 6rem 0;
  }

  .project-gallery .section-title {
    font-size: 40px;
  }

  .project-gallery .section-intro {
    font-size: 19px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .project-image {
    height: 280px;
  }

  .project-overlay h3 {
    font-size: 20px;
  }

  .modal-info {
    padding: 3rem;
  }

  .modal-info h3 {
    font-size: 32px;
  }

  .modal-description {
    font-size: 17px;
  }

  .modal-details li {
    font-size: 16px;
  }
}

/* ============================================
   Responsive Projects Page - Mobile (< 768px)
   ============================================ */

@media (max-width: 767px) {
  .projects-hero {
    padding: 3rem 0 2rem;
  }

  .projects-hero h1 {
    font-size: 28px;
  }

  .projects-hero .hero-subtitle {
    font-size: 16px;
  }

  .project-gallery {
    padding: 3rem 0;
  }

  .project-gallery .section-title {
    font-size: 26px;
    margin-bottom: 0.75rem;
  }

  .project-gallery .section-intro {
    font-size: 15px;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    gap: 1.5rem;
  }

  .project-image {
    height: 240px;
  }

  .project-overlay {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .project-overlay h3 {
    font-size: 18px;
  }

  .project-overlay p {
    font-size: 13px;
  }

  .modal-content {
    max-height: 95vh;
    border-radius: 8px;
  }

  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
    top: 0.75rem;
    right: 0.75rem;
  }

  .modal-image {
    height: 220px;
    border-radius: 8px 8px 0 0;
  }

  .modal-info {
    padding: 1.5rem;
  }

  .modal-info h3 {
    font-size: 24px;
  }

  .modal-type {
    font-size: 13px;
    margin-bottom: 1.25rem;
  }

  .modal-description {
    font-size: 15px;
    margin-bottom: 1.25rem;
  }

  .modal-details li {
    font-size: 14px;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .modal-details li::before {
    font-size: 16px;
  }
}

/* ============================================
   Modal Accessibility
   ============================================ */

/* Smooth scrolling for modal content */
.modal-content {
  scroll-behavior: smooth;
}

/* Focus trap for modal */
.project-modal.open .modal-content {
  outline: none;
}

/* Ensure modal is accessible via keyboard */
.project-card:focus-visible {
  outline: 3px solid var(--earth-red);
  outline-offset: 3px;
}

.modal-close:focus-visible {
  outline: 3px solid var(--savanna-gold);
  outline-offset: 3px;
}

/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, var(--earth-red) 0%, var(--deep-brown) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255, 255, 255, 0.05) 15px, rgba(255, 255, 255, 0.05) 30px);
  opacity: 0.5;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-family: var(--font-accent);
  font-size: 32px;
  color: var(--warm-cream);
  margin-bottom: 0.5rem;
}

.contact-hero .hero-subtitle {
  font-size: 18px;
  color: var(--savanna-gold);
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Content Section */
.contact-content {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Contact Form Container */
.contact-form-container {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--earth-red);
}

.contact-form-container h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--deep-brown);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.contact-form-container h2::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--earth-red);
  font-size: 24px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--deep-brown);
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal);
  background-color: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  transition: all 0.3s ease;
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--earth-red);
  box-shadow: 0 0 0 3px rgba(200, 75, 49, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

/* Error Messages */
.error-message {
  font-size: 14px;
  color: #FF4757;
  font-weight: 600;
  display: block;
  min-height: 20px;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #FF4757;
}

/* Form Status Messages */
.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #D4EDDA;
  color: #28A745;
  border: 2px solid #2ECC71;
}

.form-status.error {
  display: block;
  background-color: #FFE8E8;
  color: #FF4757;
  border: 2px solid #FF6B6B;
}

/* Contact Information Container */
.contact-info-container {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--savanna-gold);
}

.contact-info-container h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--deep-brown);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}

.contact-info-container h2::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--savanna-gold);
  font-size: 24px;
}

.contact-info-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--earth-red);
  margin-bottom: 0.75rem;
}

.contact-info-item p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0;
}

.contact-info-item .address {
  font-style: normal;
}

.contact-info-item .email a {
  color: var(--earth-red);
  text-decoration: underline;
  transition: color 0.3s ease;
  font-weight: 600;
}

.contact-info-item .email a:hover {
  color: var(--deep-brown);
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.map-section h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--deep-brown);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.map-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--earth-red), var(--savanna-gold));
  border-radius: 2px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--earth-red);
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* ============================================
   Responsive Contact Page - Tablet (768px+)
   ============================================ */

@media (min-width: 768px) {
  .contact-hero {
    padding: 5rem 0 4rem;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-hero .hero-subtitle {
    font-size: 20px;
  }

  .contact-content {
    padding: 5rem 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 3rem;
  }

  .contact-form-container h2,
  .contact-info-container h2 {
    font-size: 28px;
  }

  .map-section {
    padding: 5rem 0;
  }

  .map-section h2 {
    font-size: 36px;
  }
}

/* ============================================
   Responsive Contact Page - Desktop (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  .contact-hero {
    padding: 6rem 0 5rem;
  }

  .contact-hero h1 {
    font-size: 48px;
  }

  .contact-hero .hero-subtitle {
    font-size: 22px;
  }

  .contact-content {
    padding: 6rem 0;
  }

  .contact-wrapper {
    gap: 4rem;
  }

  .map-section {
    padding: 6rem 0;
  }

  .map-section h2 {
    font-size: 40px;
  }
}

/* ============================================
   Responsive Contact Page - Mobile (< 768px)
   ============================================ */

@media (max-width: 767px) {
  .contact-hero {
    padding: 3rem 0 2rem;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-hero .hero-subtitle {
    font-size: 16px;
  }

  .contact-content {
    padding: 3rem 0;
  }

  .contact-wrapper {
    gap: 2rem;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 2rem;
  }

  .contact-form-container h2,
  .contact-info-container h2 {
    font-size: 22px;
    margin-bottom: 1.25rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .contact-info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .contact-info-item h3 {
    font-size: 17px;
  }

  .contact-info-item p {
    font-size: 15px;
  }

  .map-section {
    padding: 3rem 0;
  }

  .map-section h2 {
    font-size: 26px;
    margin-bottom: 1.5rem;
  }

  .map-container iframe {
    height: 300px;
  }
}

/* ============================================
   Home Page Reconstruction Styles
   ============================================ */

/* Cinematic Hero */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--slate-900);
  overflow: hidden;
  padding: 120px 0;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 40%, rgba(234, 179, 8, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(15, 23, 42, 0.8) 0%, var(--slate-900) 100%);
  z-index: 1;
}

.hero-pattern-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(234, 179, 8, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 179, 8, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
}

.hero-cinematic-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.2);
  color: var(--gold-400);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.hero-cinematic-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 1;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}

.text-gradient {
  background: var(--premium-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-cinematic-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--slate-300);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

.hero-cinematic-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Bento Grid */
.bento-features {
  padding: 100px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 24px;
}

.bento-card {
  background: var(--slate-50);
  border-radius: 32px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.bento-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.15);
  border-color: var(--gold-400);
}

.bento-main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: var(--slate-900);
  color: var(--white);
}

.bento-main h3 {
  color: var(--gold-400);
}

.bento-main p {
  color: var(--slate-300);
}

.bento-accent {
  grid-column: span 1;
}

.bento-wide {
  grid-column: 3 / 5;
  background: var(--premium-gold);
  color: var(--slate-900);
}

.bento-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.bento-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

/* Immersive Services */
.immersive-services {
  padding: 120px 0;
  background-color: var(--slate-50);
}

.services-modern-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-image-display {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.3);
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modern-service-item {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  cursor: pointer;
  transition: all 0.4s ease;
}

.modern-service-item.active {
  padding-left: 2rem;
  border-bottom-color: var(--gold-500);
}

.service-number {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold-600);
  margin-bottom: 0.5rem;
  display: block;
}

/* Stats Premium */
.stats-premium {
  padding: 80px 0;
  background: var(--slate-900);
}

.stats-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

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

.stat-num {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
}

.stat-lbl {
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

/* Cinematic CTA */
.cinematic-cta {
  padding: 140px 0;
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)),
    url('../images/projects/project1.jpg') center/cover fixed;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-inner p {
  color: var(--slate-300);
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-main,
  .bento-wide {
    grid-column: span 2;
  }

  .services-modern-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Micro-animations & Reveal Utilities
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay for grid items */
.features-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.features-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.features-grid .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.features-grid .reveal:nth-child(5) {
  transition-delay: 0.4s;
}

.features-grid .reveal:nth-child(6) {
  transition-delay: 0.5s;
}

.services-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.services-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.services-grid .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.process-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.process-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.process-grid .reveal:nth-child(4) {
  transition-delay: 0.3s;
}


/* ============================================
   Missing Home Page Section Styles
   ============================================ */

/* Featured Projects Section */
.featured-projects-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.projects-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-showcase-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.15);
  transition: all 0.4s ease;
  min-height: 350px;
}

.project-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.25);
}

.project-showcase-card.main-project {
  grid-column: span 2;
  min-height: 450px;
}

.project-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-showcase-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, transparent 100%);
  padding: 2rem;
  color: var(--white);
}

.project-category {
  display: inline-block;
  background-color: var(--gold-500);
  color: var(--slate-900);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.project-overlay h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.project-overlay p {
  font-size: 14px;
  color: var(--slate-300);
  margin-bottom: 1rem;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.15);
}

.testimonial-rating {
  color: var(--gold-500);
  font-size: 20px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-500);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 16px;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 14px;
  color: var(--slate-600);
  margin: 0;
}

/* Process Steps Grid */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--slate-900);
  color: var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin: 0 auto 1.5rem;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 20px;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.process-step p {
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.6;
}

.process-step-arrow {
  font-size: 32px;
  color: var(--gold-500);
  text-align: center;
  display: none;
}

@media (min-width: 768px) {
  .process-step-arrow {
    display: block;
  }
  
  .process-steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  }
}

/* Trust Signals */
.trust-signals {
  padding: 60px 0;
  background-color: var(--slate-50);
}

.trust-content {
  text-align: center;
  margin-bottom: 3rem;
}

.trust-content h3 {
  font-size: 24px;
  color: var(--slate-900);
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-logo-item {
  font-size: 16px;
  color: var(--slate-700);
  font-weight: 600;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 15px;
  color: var(--slate-700);
}

.badge-icon {
  color: var(--gold-500);
  font-weight: 700;
  font-size: 20px;
}

/* Quick Contact CTA */
.quick-contact-cta {
  padding: 80px 0;
  background-color: var(--white);
}

.quick-contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .quick-contact-content {
    grid-template-columns: 1.5fr 1fr;
  }
}

.contact-info-block h3 {
  font-size: 28px;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.contact-info-block p {
  font-size: 16px;
  color: var(--slate-700);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 15px;
  color: var(--slate-700);
}

.contact-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--gold-600);
  text-decoration: underline;
}

.cta-buttons-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 15px;
}

/* Latest News Section */
.latest-news-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  transition: all 0.4s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.2);
}

.news-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-content {
  padding: 2rem;
}

.news-date {
  display: block;
  font-size: 13px;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-content h3 {
  font-size: 20px;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.news-content p {
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-link {
  color: var(--gold-600);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: var(--gold-700);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.faq-item {
  background-color: var(--slate-50);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--gold-500);
}

.faq-item h3 {
  font-size: 18px;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.faq-item p {
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.7;
  margin: 0;
}

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

.faq-cta p {
  font-size: 18px;
  color: var(--slate-700);
  margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.2);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--gold-500);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 20px;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 14px;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-bio {
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.6;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: var(--white);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.location-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.location-card {
  background-color: var(--slate-50);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.location-card h4 {
  font-size: 18px;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.location-card p {
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.7;
  margin: 0;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 16px;
  color: var(--slate-300);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 15px;
}

.newsletter-form input::placeholder {
  color: var(--slate-400);
}

.newsletter-form button {
  flex-shrink: 0;
}

.newsletter-note {
  font-size: 13px;
  color: var(--slate-400);
  margin: 0;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 22px;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a {
  color: var(--gold-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--gold-300);
}

.footer-links h4 {
  font-size: 18px;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--slate-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
  .project-showcase-card.main-project {
    grid-column: span 1;
  }
  
  .projects-showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
}
