/*
  Al Mighiri Business Website
  Design System & Stylesheet (Premium Luxury Wood & Maintenance Theme)
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --primary-color: #6D4C41; /* Deep Walnut */
  --primary-hover: #5D4037;
  --secondary-color: #D4AF37; /* Champagne Gold */
  --secondary-hover: #C5A028;
  --bg-color: #FAF8F5; /* Soft Warm Cream */
  --bg-white: #FFFFFF;
  --text-dark: #2C3E50; /* Charcoal */
  --text-muted: #7F8C8D;
  --text-light: #F8F9FA;
  --border-color: #E8E2D9;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  
  --shadow-sm: 0 4px 6px rgba(109, 76, 65, 0.05);
  --shadow-md: 0 10px 20px rgba(109, 76, 65, 0.08);
  --shadow-lg: 0 20px 40px rgba(109, 76, 65, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(109, 76, 65, 0.06);
  
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  text-indent: -10000px;
}

input, textarea, select {
  font-family: var(--font-primary);
  font-size: 1rem;
}

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

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

p {
  color: var(--text-dark);
  opacity: 0.9;
  margin-bottom: 1rem;
}

/* Helper Layout Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.section {
  padding: 6rem 0;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

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

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

/* Header & Sticky Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-sm);
  background-color: rgba(250, 248, 245, 0.98);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition);
}

header.scrolled .navbar {
  height: 65px;
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

header.scrolled .logo img {
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-owner {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}

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

.nav-cta {
  display: flex;
  align-items: center;
}

.mobile-cta-btn {
  display: none !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  outline: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(109, 76, 65, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--bg-color);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.btn-gold:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0.5rem;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  margin-bottom: 5px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.hamburger span:last-child {
  margin-bottom: 0;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section Image Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: flex-start;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: transform 6s ease;
}

.slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-content {
  position: relative;
  z-index: 10;
  color: #FFFFFF;
  max-width: 800px;
  padding-top: 160px; /* Aligns text neatly below the fixed header with balanced space */
}

.slide-content h1 {
  font-size: 3.5rem;
  color: #FFFFFF;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.4s;
}

.slide-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.4s;
}

.slide-content .hero-btns {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.4s;
}

.slide.active h1,
.slide.active p,
.slide.active .hero-btns {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(109, 76, 65, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

/* Banner for Inner Pages */
.hero-banner {
  position: relative;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--text-light);
  text-align: left;
  padding: 100px 0 50px 0; /* Vertical breathing room under the fixed header */
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(109, 76, 65, 0.8), rgba(44, 30, 26, 0.9));
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0;
}

.hero-banner h1 {
  font-size: clamp(2rem, 5vw, 3rem); /* Responsive title font scaling */
  color: var(--bg-color);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  line-height: 1.25;
}

.hero-banner p {
  font-size: clamp(1rem, 2vw, 1.15rem); /* Responsive subtitle font scaling */
  max-width: 750px;
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary-color);
}

.breadcrumb a {
  color: var(--bg-color);
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.hero-banner-btns {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero-banner-btns {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-banner-btns .btn {
    width: 100%;
    text-align: center;
  }
}


/* Service Overview Card Grid */
.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}

.card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #ddd; /* fallback */
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
}

.card-link i {
  transition: var(--transition);
}

.card:hover .card-link {
  color: var(--secondary-color);
}

.card:hover .card-link i {
  transform: translateX(5px);
}

/* Why Choose Us Section */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-item {
  background-color: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: left;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

.why-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(109, 76, 65, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem 0;
  color: var(--primary-color);
  font-size: 1.8rem;
  transition: var(--transition);
}

.why-item:hover .why-icon {
  background-color: var(--primary-color);
  color: var(--bg-color);
  transform: rotateY(360deg);
}

.why-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.why-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Statistics Counter Section */
.stats-section {
  background: linear-gradient(rgba(109, 76, 65, 0.95), rgba(44, 30, 26, 0.95));
  color: var(--text-light);
  padding: 5rem 0;
}

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

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

/* Recent Projects Gallery Grid */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--bg-color);
  border-color: var(--primary-color);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 30, 26, 0.9) 20%, rgba(109, 76, 65, 0.4));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition);
  z-index: 10;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-category {
  color: var(--secondary-color);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.gallery-title {
  color: var(--bg-color);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Reviews / Testimonials */
.reviews-grid {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1.5rem 0.5rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  scroll-snap-type: x mandatory;
}

.reviews-grid::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.review-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  position: relative;
  min-width: 320px;
  width: 320px;
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.stars {
  color: #FFC107;
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0;
}

.stars i {
  font-size: 0.95rem;
}

.review-text {
  font-style: normal;
  font-size: 0.92rem;
  color: #4A4A4A;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.client-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 0.15rem;
}

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

/* Call to Action Bar (CTA) */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color), #4E342E);
  color: var(--text-light);
  padding: 5rem 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(212, 175, 55, 0.05);
  transform: rotate(30deg);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--bg-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--bg-color);
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Accordion FAQs */
.faqs-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-header {
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.faq-header:hover {
  background-color: rgba(109, 76, 65, 0.02);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.75rem;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-dark);
  opacity: 0.95;
  padding-bottom: 1.5rem;
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--secondary-color);
}

.faq-item.active .faq-body {
  max-height: 500px; /* Adjust according to body content size */
  padding: 0 1.75rem 1.5rem 1.75rem;
}

/* Detailed Services Page Styles (Alternate Left-Right Layout) */
.detailed-service-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.detailed-service-row:last-child {
  margin-bottom: 0;
}

.detailed-service-row:nth-child(even) .detailed-service-img-col {
  order: 2;
}

.detailed-service-row:nth-child(even) .detailed-service-content-col {
  order: 1;
}

.detailed-service-img {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  background-color: #ddd;
}

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

.service-badge {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--secondary-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
}

.detailed-service-row h3 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.detailed-service-row p {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.service-benefits {
  margin-bottom: 2rem;
}

.benefit-li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.benefit-li i {
  color: var(--secondary-color);
  font-size: 0.95rem;
}

/* About Page Custom Layouts */
.about-story-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 450px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary-color);
  color: var(--bg-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--secondary-color);
}

.story-badge .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
  display: block;
}

.story-badge .lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

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

.vision-card {
  background-color: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.vision-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

.vision-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Meet Our Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

.team-img {
  height: 280px;
  background-color: #eee;
  position: relative;
}

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

.team-details {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Our Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step {
  background-color: var(--bg-white);
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: left;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

.process-num {
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
  transform: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border: 4px solid var(--bg-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step:hover .process-num {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.process-title {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.process-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact Us Layouts */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3.5rem;
}

.contact-info-panel {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.contact-info-panel h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  background-color: rgba(109, 76, 65, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-item:hover .info-icon {
  background-color: var(--primary-color);
  color: var(--bg-color);
}

.info-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  color: var(--text-dark);
}

.info-content p, .info-content a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.info-content a:hover {
  color: var(--primary-color);
}

/* Contact & Quote Form Container */
.contact-forms-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.form-box h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--bg-color);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(109, 76, 65, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Google Map Container */
.map-section {
  position: relative;
  height: 450px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 4rem;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Section */
footer {
  background-color: #2C1E1A; /* Very Dark Walnut */
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  border-top: 4px solid var(--secondary-color);
}

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

.footer-col h4 {
  color: var(--bg-color);
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-col .logo {
  margin-bottom: 1.25rem;
}

.footer-col .logo-title {
  color: var(--bg-color);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--secondary-color);
  margin-top: 0.25rem;
}

.footer-map-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 140px;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Floating WhatsApp Button */
.whatsapp-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-floating:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(18, 140, 126, 0.5);
}

/* Floating Phone Button */
.phone-floating {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #6D4C41; /* Deep Walnut */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(109, 76, 65, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-phone 2s infinite;
}

.phone-floating:hover {
  background-color: #5D4037;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(109, 76, 65, 0.5);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-phone {
  0% {
    box-shadow: 0 0 0 0 rgba(109, 76, 65, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(109, 76, 65, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(109, 76, 65, 0);
  }
}

/* Scroll Reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Custom Success/Error Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transform: scale(0.8);
  transition: var(--transition);
}

.modal.open .modal-content {
  transform: scale(1);
}

.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.1);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem auto;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1200px) and (min-width: 769px) {
  .nav-menu {
    gap: 0.8rem;
  }
  .nav-link {
    font-size: 0.8rem;
  }
  .logo-title {
    font-size: 1rem;
  }
  .nav-cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 1.85rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .detailed-service-row { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .navbar {
    height: 70px;
  }
  .hamburger {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 85px;
    left: 50%;
    transform: translate(-50%, -15px);
    width: calc(100% - 32px);
    max-width: 400px;
    height: auto;
    max-height: calc(100vh - 100px);
    background-color: var(--bg-white);
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 1.75rem 1.25rem;
    gap: 0.75rem;
    box-shadow: 0 15px 35px rgba(109, 76, 65, 0.15);
    border: 1px solid rgba(109, 76, 65, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    overflow-y: auto;
  }
  .nav-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, 0);
  }
  .nav-menu .nav-link {
    background-color: #FAF8F5;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    width: 100%;
    box-shadow: 0 2px 5px rgba(109, 76, 65, 0.02);
    transition: var(--transition);
  }
  .nav-menu .nav-link::after {
    display: none;
  }
  .nav-menu .nav-link:hover, 
  .nav-menu .nav-link.active {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
  }
  .nav-cta {
    display: none; /* Hide top CTA on mobile, link is in menu */
  }
  .mobile-cta-btn {
    display: inline-flex !important;
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .slide-content h1 {
    font-size: 2.25rem;
  }
  .slide-content p {
    font-size: 1.05rem;
  }
  .slide-content .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
  .slide-content .hero-btns .btn {
    width: 100%;
  }
  .detailed-service-row {
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }
  .detailed-service-row:nth-child(even) .detailed-service-img-col {
    order: 0;
  }
  .detailed-service-row:nth-child(even) .detailed-service-content-col {
    order: 0;
  }
  .detailed-service-img {
    height: 300px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-us-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 3rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .whatsapp-floating {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
  }
  .phone-floating {
    bottom: 1.5rem;
    left: 1.5rem;
    right: auto;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .modal-content {
    padding: 2rem 1.5rem;
  }
}
