/*
Theme Name: Mawa Construction
Theme URI: https://mawaconstruction.com
Author: Mawa Construction
Description: Professional construction company theme inspired by modern construction websites. Features a dark color scheme with orange accents.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: mawa-construction
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --primary: #111111;
  --secondary: #1a1a1a;
  --accent: #f6aa50;
  --accent-dark: #e09030;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --mid-gray: #999999;
  --dark-gray: #444444;
  --text: #333333;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-dark: 0 8px 40px rgba(0,0,0,0.3);
  --radius: 4px;
  --container: 1200px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

p { margin-bottom: 1rem; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.section-pad { padding: 80px 0; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent) !important; }

.bg-dark { background: var(--primary); }
.bg-gray { background: var(--light-gray); }
.bg-accent { background: var(--accent); }

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246,170,80,0.4);
}

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

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--accent);
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--dark-gray);
  max-width: 640px;
  line-height: 1.8;
}

.section-title-white { color: var(--white); }
.section-subtitle-white { color: rgba(255,255,255,0.75); }

.divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 20px 0 30px;
}
.divider-center { margin: 20px auto 30px; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Engineer profile card */
.engineer-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--primary);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 28px;
  border-left: 4px solid var(--accent);
}
.engineer-avatar {
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}
.engineer-name { color: var(--white); font-weight: 700; font-size: 16px; font-family: var(--font-heading); }
.engineer-title { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.engineer-phone { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 2px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar a { color: rgba(255,255,255,0.7); font-size: 13px; }
.top-bar a:hover { color: var(--accent); }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item i { color: var(--accent); font-size: 12px; }
.top-bar-social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 11px;
}
.top-bar-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: var(--transition);
}
#site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 70px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-logo-img { width: 44px; height: 44px; object-fit: contain; }
.site-logo-text { display: flex; flex-direction: column; line-height: 1; }
.site-logo-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.site-logo-tagline {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Navigation */
#main-nav ul { display: flex; align-items: center; gap: 0; }
#main-nav ul li { position: relative; }
#main-nav ul li a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0 18px;
  height: 70px;
  line-height: 70px;
  transition: var(--transition);
}
#main-nav ul li a:hover,
#main-nav ul li.current-menu-item > a,
#main-nav ul li.current_page_item > a {
  color: var(--accent);
}
#main-nav ul li a:hover::after,
#main-nav ul li.current-menu-item > a::after {
  width: 100%;
}
#main-nav ul li > a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

/* Dropdown */
#main-nav ul li ul {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary);
  min-width: 220px;
  box-shadow: var(--shadow-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  border-top: 3px solid var(--accent);
}
#main-nav ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#main-nav ul li ul li { width: 100%; }
#main-nav ul li ul li a {
  height: auto;
  line-height: 1;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
}
#main-nav ul li ul li a::after { display: none; }
#main-nav ul li ul li a:hover { color: var(--accent); background: rgba(255,255,255,0.03); padding-left: 26px; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-family: var(--font-heading);
}
.header-phone i { color: var(--accent); }
.header-phone span { color: var(--white); font-weight: 600; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 55%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246,170,80,0.15);
  border: 1px solid rgba(246,170,80,0.3);
  color: var(--accent);
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 1.5s infinite; }
.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}
.hero-title em { color: var(--accent); font-style: normal; }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 580px;
}
.hero-bullets {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
}
.hero-bullet i { color: var(--accent); font-size: 16px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Hero shape */
.hero-shape {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border: 80px solid rgba(246,170,80,0.06);
  border-radius: 50%;
  z-index: 1;
}
.hero-shape-2 {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border: 50px solid rgba(246,170,80,0.04);
  border-radius: 50%;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { padding: 90px 0; }
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--primary);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(246,170,80,0.4);
}
.about-exp-num {
  font-size: 36px;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}
.about-exp-text { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.about-content { padding-left: 40px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--light-gray);
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-feature:hover { background: var(--primary); }
.about-feature:hover .about-feature-text { color: var(--white); }
.about-feature:hover .about-feature-title { color: var(--accent); }
.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.about-feature-title { font-family: var(--font-heading); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.about-feature-text { font-size: 12px; color: var(--dark-gray); }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--primary);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f6aa50' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-suffix { font-size: 32px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-heading); font-weight: 600; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { padding: 90px 0; background: var(--light-gray); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  background: var(--primary);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-icon-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(246,170,80,0.1);
  border-radius: 50%;
}
.service-icon {
  font-size: 48px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
/* Image-based service card variant */
.svc-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .svc-img-wrap img { transform: scale(1.08); }
.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.svc-icon-badge {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(246,170,80,0.4);
}

.service-body { padding: 30px; }
.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: var(--transition);
}
.service-card:hover .service-title { color: var(--accent); }
.service-desc { font-size: 14px; color: var(--dark-gray); line-height: 1.8; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-link:hover { gap: 10px; color: var(--accent-dark); }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section { padding: 90px 0; background: var(--primary); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: rgba(246,170,80,0.2);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 80px; height: 80px;
  background: var(--secondary);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent);
  transition: var(--transition);
}
.process-step:hover .process-num {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.1);
}
.process-step-title {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.process-step-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section { padding: 90px 0; }
.portfolio-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0 40px;
}
.filter-btn {
  padding: 8px 22px;
  background: var(--light-gray);
  color: var(--dark-gray);
  border: none;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  color: var(--primary);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover .portfolio-img { transform: scale(1.1); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-info { transform: translateY(10px); transition: var(--transition); }
.portfolio-item:hover .portfolio-info { transform: translateY(0); }
.portfolio-cat { color: var(--accent); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
.portfolio-title { color: var(--white); font-size: 18px; font-weight: 700; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { padding: 90px 0; background: var(--light-gray); }
.why-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image { position: relative; }
.why-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-dark); }
.why-image-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.why-badge-num { font-size: 32px; font-weight: 800; font-family: var(--font-heading); color: var(--accent); line-height: 1; }
.why-badge-text { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.why-list { margin: 30px 0; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.why-item:last-child { border-bottom: none; }
.why-item-icon {
  width: 48px; height: 48px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-item-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.why-item-text { font-size: 13px; color: var(--dark-gray); }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section { padding: 90px 0; background: var(--primary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.testimonial-card {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(246,170,80,0.3);
  transform: translateY(-5px);
}
.testimonial-quote {
  font-size: 60px;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: 20px;
}
.testimonial-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.9; margin-bottom: 24px; font-style: italic; }
.testimonial-stars { color: var(--accent); font-size: 14px; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.testimonial-name { color: var(--white); font-weight: 700; font-size: 15px; }
.testimonial-role { color: rgba(255,255,255,0.4); font-size: 12px; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { padding: 90px 0; }
.faq-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--accent); }
.faq-question.active { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: var(--transition);
  color: var(--accent);
}
.faq-question.active .faq-icon { background: var(--accent); color: var(--primary); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 14px; color: var(--dark-gray); line-height: 1.9; }
.faq-image img { width: 100%; border-radius: var(--radius); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { padding: 90px 0; background: var(--primary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; margin-top: 50px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-icon {
  width: 50px; height: 50px;
  background: rgba(246,170,80,0.1);
  border: 1px solid rgba(246,170,80,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-title { font-family: var(--font-heading); font-weight: 700; color: rgba(255,255,255,0.6); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
.contact-info-value { color: var(--white); font-size: 15px; font-weight: 600; }
.contact-info-value a { color: var(--white); }
.contact-info-value a:hover { color: var(--accent); }
.contact-social { display: flex; gap: 10px; margin-top: 30px; }
.contact-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
}
.contact-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }

/* Contact Form */
.contact-form { background: var(--secondary); padding: 40px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06); }
.contact-form h3 { color: var(--white); margin-bottom: 8px; font-size: 22px; }
.contact-form p { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; font-family: var(--font-heading); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(246,170,80,0.05);
}
.form-group select option { background: var(--secondary); color: var(--white); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 16px; background: var(--accent); color: var(--primary); border: none; border-radius: var(--radius); font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; transition: var(--transition); }
.form-submit:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(246,170,80,0.3); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--accent);
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-text-wrap h2 { font-size: 32px; color: var(--primary); margin-bottom: 8px; }
.cta-text-wrap p { color: rgba(0,0,0,0.6); font-size: 16px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ============================================
   CERTIFICATIONS
   ============================================ */
.cert-section { padding: 60px 0; border-top: 1px solid rgba(0,0,0,0.06); }
.cert-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cert-label { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 2px; white-space: nowrap; }
.cert-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.cert-logo-item { display: flex; align-items: center; gap: 10px; color: var(--dark-gray); font-size: 14px; font-weight: 600; opacity: 0.6; transition: var(--transition); }
.cert-logo-item:hover { opacity: 1; color: var(--accent); }
.cert-logo-item i { font-size: 32px; color: var(--accent); }

/* ============================================
   FOOTER
   ============================================ */
#site-footer { background: var(--primary); padding-top: 70px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-name { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--white); }
.footer-logo-sub { font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; }
.footer-about { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.9; margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.footer-heading { font-size: 14px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; font-family: var(--font-heading); padding-bottom: 12px; border-bottom: 2px solid var(--accent); display: inline-block; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 13px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--accent); font-size: 16px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item i { color: var(--accent); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copyright { color: rgba(255,255,255,0.3); font-size: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); font-size: 12px; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px; height: 46px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(246,170,80,0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 50px; height: 50px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: var(--transition);
  z-index: 998;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; background: #128C7E; }

/* ============================================
   INNER PAGES
   ============================================ */
.page-hero {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f6aa50' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 52px); margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; }
.breadcrumb a, .breadcrumb span { color: rgba(255,255,255,0.5); font-size: 13px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--accent); }
.breadcrumb .current { color: var(--accent); }

/* Entry content */
.entry-content { padding: 80px 0; }
.entry-content p { margin-bottom: 1.5rem; color: var(--dark-gray); }
.entry-content h2, .entry-content h3 { margin-bottom: 1rem; margin-top: 2rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 992px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .about-content { padding-left: 0; }
  .faq-container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-content { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav-open #main-nav {
    display: block;
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--primary);
    overflow-y: auto;
    padding: 20px 0;
  }
  .mobile-nav-open #main-nav ul { flex-direction: column; }
  .mobile-nav-open #main-nav ul li ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding-left: 16px;
    background: transparent;
    display: none;
  }
  .mobile-nav-open #main-nav ul li.open > ul { display: block; }
  .mobile-nav-open #main-nav ul li a {
    height: auto;
    line-height: 1;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .top-bar { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-exp-badge { right: 10px; bottom: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-section { min-height: 100svh; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .portfolio-filter { justify-content: center; }
  .section-pad { padding: 60px 0; }
}
