/* ==========================================================================
   Binayat Al Madina Technical Services - Global Stylesheet
   ========================================================================== */

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

/* CSS Variables */
:root {
  --primary-dark: #0B132B;
  --secondary-dark: #1C2541;
  --accent-gold: #D4AF37;
  --accent-gold-gradient: linear-gradient(135deg, #E5C158 0%, #C5A059 100%);
  --accent-gold-hover: #AA841C;
  --accent-blue: #3B5998;
  --accent-blue-hover: #2D4373;
  --bg-light: #F1F5F9;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --text-dark: #2D3748;
  --text-light: #64748B;
  --text-white: #FFFFFF;
  --success-color: #10B981;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --container-width: 1200px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary-dark);
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

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

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

.bg-light-sec {
  background-color: var(--bg-light);
}

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

.section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-gold-gradient);
  border-radius: 2px;
}

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

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent-gold-gradient);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

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

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

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

.btn-outline-dark:hover {
  background-color: var(--secondary-dark);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-blue);
  color: var(--text-white);
}

.btn-accent:hover {
  background-color: var(--accent-blue-hover);
  transform: translateY(-2px);
}

/* Top Information Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--text-white);
  font-size: 0.875rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-info a:hover {
  color: var(--accent-gold);
}

.top-bar-socials {
  display: flex;
  gap: 1rem;
}

.top-bar-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 0.8rem;
}

.top-bar-socials a:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(28, 37, 65, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  border-bottom: 2px solid var(--accent-gold);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

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

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
}

.logo-text span {
  color: var(--accent-gold);
  font-size: 0.9rem;
  display: block;
  font-weight: 500;
  letter-spacing: 1px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  display: block;
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--accent-gold);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--secondary-dark);
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  border-top: 3px solid var(--accent-gold);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  color: var(--text-white);
  padding: 0.6rem 1.2rem;
  display: block;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-gold);
  padding-left: 1.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

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

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Section 1: Hero Banner Slider */
.hero {
  position: relative;
  height: 650px;
  background-color: var(--primary-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--text-white);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 0.35; /* Adjusted for readability of overlay text */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 19, 43, 0.95) 40%, rgba(11, 19, 43, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 span {
  color: var(--accent-gold);
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--border-color);
  animation: fadeInUp 1s ease-out;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1.2s ease-out;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section 2: Company Highlights */
.highlights {
  background: var(--secondary-dark);
  color: var(--text-white);
  padding: 3rem 0;
  border-bottom: 4px solid var(--accent-gold);
}

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

.highlight-card h3 {
  font-size: 3.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.highlight-card p {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--border-color);
}

/* Section 3: Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.service-card-icon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: var(--accent-gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  z-index: 5;
}

.service-card-body {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-dark);
}

.service-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-footer {
  margin-top: auto;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  font-size: 0.9rem;
}

.learn-more-btn:hover {
  color: var(--accent-gold);
}

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

.feature-card {
  background-color: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent-gold);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Section 5: Process Section */
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 4px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  width: 18%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--bg-white);
  border: 4px solid var(--border-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-dark);
  transition: var(--transition-smooth);
}

.process-step:hover .step-number {
  border-color: var(--accent-gold);
  background-color: var(--secondary-dark);
  color: var(--accent-gold);
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 0 0.5rem;
}

/* Section 6: Before & After Gallery (Image Comparison Slider) */
.comparison-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--secondary-dark);
}

.comparison-slider {
  position: relative;
  width: 100%;
  height: 450px;
  user-select: none;
}

.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.comparison-image.before {
  z-index: 1;
}

.comparison-image.after {
  z-index: 2;
  width: 50%; /* JS will control this */
}

/* Custom Input Range for Image Overlay Control */
.slider-handle-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%; /* JS will control this */
  width: 4px;
  background-color: var(--accent-gold);
  z-index: 50;
  cursor: ew-resize;
  pointer-events: none;
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--secondary-dark);
  border: 3px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  pointer-events: none;
}

.comparison-slider input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 100;
}

.image-label {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background-color: rgba(11, 19, 43, 0.8);
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  border-radius: 4px;
  z-index: 10;
  font-size: 0.85rem;
}

.image-label.before-label {
  left: 1.5rem;
}

.image-label.after-label {
  right: 1.5rem;
  z-index: 20;
}

/* Section 7: Client Logos Carousel */
.logos-carousel {
  padding: 3rem 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  width: calc(250px * 10);
  animation: scrollLogos 25s linear infinite;
}

.logo-slide {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.logo-slide img {
  max-width: 150px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.logo-slide img:hover {
  filter: grayscale(0);
  opacity: 0.9;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 5)); }
}

/* Section 8: Testimonials Slider */
.testimonials-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 2rem;
  background-color: var(--bg-white);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-rating {
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-review {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.testimonial-meta {
  text-align: left;
}

.testimonial-meta h4 {
  font-size: 1rem;
  margin: 0;
}

.testimonial-meta span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.control-btn {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-dark);
  color: var(--accent-gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.control-btn:hover {
  background-color: var(--accent-gold);
  color: var(--secondary-dark);
}

/* Section 9: FAQ Accordion with Search */
.faq-search-box {
  max-width: 500px;
  margin: 0 auto 2.5rem auto;
  position: relative;
}

.faq-search-box input {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-search-box input:focus {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary-dark);
}

.faq-header:hover {
  background-color: var(--bg-light);
}

.faq-icon {
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--bg-light);
  padding: 0 1.5rem;
}

.faq-body-content {
  padding: 1.25rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.faq-item.active .faq-body {
  max-height: 250px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-gold);
}

/* Section 11: CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(11, 19, 43, 0.95) 0%, rgba(28, 37, 65, 0.95) 100%), url('../images/hero_maintenance.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  text-align: center;
  padding: 5rem 0;
  border-top: 4px solid var(--accent-gold);
  border-bottom: 4px solid var(--accent-gold);
}

.cta-banner h2 {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--border-color);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Section 12: Contact Preview Section */
.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

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

.contact-info-panel h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-gold-gradient);
}

.contact-details-list {
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-detail-text p, .contact-detail-text a {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-detail-text a:hover {
  color: var(--accent-gold);
}

/* Office Map Frame */
.map-container {
  height: 250px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

/* Form Styling */
.form-panel {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-panel h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--secondary-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Footer Section */
footer {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: 4rem 0 2rem 0;
  border-top: 5px solid var(--accent-gold);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.9fr 1.1fr 1.1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 44px;
  width: auto;
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-white);
}

.footer-about p {
  color: var(--border-color);
  margin-bottom: 1.5rem;
}

.footer-about-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-about-socials a {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.footer-about-socials a:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.footer-column h3 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
  position: relative;
}

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

.footer-links a {
  color: var(--border-color);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 0.3rem;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0;
}

.footer-hours-list li:last-child {
  border-bottom: none;
}

.footer-hours-list span {
  color: var(--border-color);
}

.footer-hours-list span.day {
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--border-color);
}

.footer-bottom p {
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive Design Breakpoints
   ========================================================================== */

/* Tablet & Smaller Layouts (992px) */
@media (max-width: 992px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .process-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    width: 45%;
  }
  
  .contact-preview-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Mobile Screens (768px) */
@media (max-width: 768px) {
  .top-bar {
    display: none; /* Hide top bar on mobile to save vertical space */
  }
  
  .nav-menu {
    position: fixed;
    top: 68px; /* Below header */
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background-color: var(--secondary-dark);
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    width: 100%;
    text-align: center;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(255,255,255,0.03);
    display: none;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

/* Inner Page Hero Banner */
.inner-hero {
  position: relative;
  padding: 8rem 0;
  background-color: var(--primary-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
  text-align: center;
}

.inner-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 19, 43, 0.92) 0%, rgba(28, 37, 65, 0.85) 100%);
  z-index: 1;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.inner-hero h1 {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  text-shadow: var(--shadow-sm);
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
  color: var(--accent-gold);
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.4);
}

.inner-hero p {
  font-size: 1.15rem;
  color: var(--border-color);
  line-height: 1.5;
}

/* Overview Layout */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.overview-img img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--secondary-dark);
  width: 100%;
}

.overview-content .section-label {
  color: var(--accent-gold);
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.overview-content h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  color: var(--secondary-dark);
}

.overview-content p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

/* Our Story Timeline (Vertical) */
.timeline {
  position: relative;
  max-width: 850px;
  margin: 4rem auto 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  width: 50%;
}

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

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 6px;
  width: 24px;
  height: 24px;
  background: var(--accent-gold-gradient);
  border: 4px solid var(--bg-white);
  border-radius: 50%;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -12px;
}

.timeline-content {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-dark);
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.925rem;
  margin: 0;
}

/* Vision & Mission Row */
.vision-mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.vision-mission-row:last-child {
  margin-bottom: 0;
}

.vision-mission-img img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--secondary-dark);
}

.vision-mission-text h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vision-mission-text h3 span {
  font-size: 2.25rem;
}

.vision-mission-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Core Values Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.value-card {
  background-color: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 2.25rem;
  margin: 0 auto 2rem auto;
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* Team Grid & Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

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

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.team-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

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

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

.team-info {
  padding: 1.75rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--secondary-dark);
}

.team-info .team-role {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: block;
}

.team-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.team-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--secondary-dark);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.team-socials a:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

/* Responsive Overrides for About Us Page */
@media (max-width: 992px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .vision-mission-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .vision-mission-row.reverse {
    grid-template-columns: 1fr;
  }
  
  .vision-mission-row.reverse .vision-mission-text {
    grid-column: auto;
  }
  
  .vision-mission-row.reverse .vision-mission-img {
    grid-column: auto;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .inner-hero h1 {
    font-size: 2.25rem;
  }
  
  .inner-hero p {
    font-size: 1rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 45px;
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .timeline-dot {
    left: 8px !important;
    right: auto !important;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Service Details Page Styles
   ========================================================================== */

.callout-box {
  background-color: rgba(212, 175, 55, 0.08);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-dark);
}

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

.process-timeline-6::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 8%;
  width: 84%;
  height: 4px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step-6 {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-step-6 .step-number {
  width: 80px;
  height: 80px;
  background-color: var(--bg-white);
  border: 4px solid var(--border-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-dark);
  transition: var(--transition-smooth);
}

.process-step-6:hover .step-number {
  border-color: var(--accent-gold);
  background-color: var(--secondary-dark);
  color: var(--accent-gold);
  transform: scale(1.1);
}

.process-step-6 h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step-6 p {
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 0 0.5rem;
}

@media (max-width: 992px) {
  .process-timeline-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .process-timeline-6::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-timeline-6 {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 992px) {
  .grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .grid-4-cols {
    grid-template-columns: 1fr;
  }
}

/* Service Covers Section Styles (No Images/No Icons) */
.covers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.covers-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--secondary-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.covers-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--accent-gold);
}

.covers-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-gold);
  opacity: 0.8;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
  display: block;
}

.covers-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-dark);
  margin-bottom: 0.75rem;
}

.covers-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 992px) {
  .covers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .covers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

