/* FAQ Section Animation */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1);
}
:root {
  /* Primary Colors */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gold: #F4A300;
  --color-gold-dark: #CC8400;

  /* Secondary Grays */
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-400: #ced4da;
  --color-gray-500: #adb5bd;
  --color-gray-600: #6c757d;
  --color-gray-700: #495057;
  --color-gray-800: #343a40;
  --color-gray-900: #212529;

  /* Accent Colors */
  --color-accent-light: #FFD366;
  --color-accent: #F4A300;
  --color-accent-dark: #C97A00;

  /* Background Colors */
  --bg-light: var(--color-gray-100);
  --bg-dark: var(--color-black);
  --bg-white: var(--color-white);
  --bg-card: #1E1E1E;

  /* Text Colors */
  --text-heading: var(--color-black);
  --text-body: var(--color-gray-800);
  --text-muted: var(--color-gray-600);
  --text-white: var(--color-white);
  --text-accent: var(--color-gold);

  /* Border Colors */
  --border-light: var(--color-gray-300);
  --border-dark: var(--color-gray-700);

  /* Button Colors */
  --btn-primary-bg: var(--color-gold);
  --btn-primary-text: var(--color-white);
  --btn-hover-bg: var(--color-black);
  --btn-hover-text: var(--color-gold);

  /* Shadows */
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 8px 24px rgba(0, 0, 0, 0.2);

  /* Website Theme Colors */
  --bg-color: var(--color-white); /* Navbar background */
  --primary-color: var(--color-gold); /* Main accent */
  --primary-dark: var(--color-gold-dark); /* Darker accent for hover */
  --text-color: var(--color-black); /* Main text color */

  /* Border Radius */
  --radius-md: 8px;
  --radius-sm: 4px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);

  /* Transition */
  --transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
}

/* Example Utility Classes */
.bg-primary {
  background-color: var(--color-gold);
}
.bg-dark {
  background-color: var(--color-black);
}
.text-primary {
  color: var(--color-gold);
}
.text-dark {
  color: var(--color-black);
}
.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 5px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
  min-height: 38px;
}
.btn-primary:hover {
  background-color: var(--btn-hover-bg);
  color: var(--btn-hover-text);
  box-shadow: var(--shadow-medium);
}

/* =========================
   Global Styles & Variables
   ========================= */
html, body {
  width: 100vw;
  min-height: 100vh;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  background-color: var(--bg-light);
  color: var(--text-body);
  animation: fadeInPage 1s ease-in-out;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* === Navbar === */

/* Navbar Container */
.navbar {
  width: 100vw;
  left: 0;
  box-sizing: border-box;
  background: var(--bg-color);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  z-index: 2000; /* Ensure always above content */
  transition: var(--transition);
  height: 70px;
}

.navbar-container {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}

/* Brand/Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  z-index: 1001;
}

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

/* Desktop Navigation */
.navbar-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

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

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  min-height: 38px;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  min-height: 38px;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Toggle Button */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1002;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--text-color);
  transition: var(--transition);
}

.navbar-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.navbar-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  background: var(--bg-color);
  color: var(--text-color);
  z-index: 1999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.navbar-mobile.open {
  transform: translateX(0);
}

.mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 0;
  margin-bottom: 2rem;
  background: var(--bg-color);
  color: var(--text-color);
}

.mobile-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-color);
  transition: var(--transition);
  border-radius: 50%;
}

.mobile-close:hover,
.mobile-close:focus {
  background: rgba(0,0,0,0.05);
  color: var(--primary-color);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-link {
  display: block;
  padding: 1rem;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: transparent;
}

.mobile-link:hover,
.mobile-link:focus,
.mobile-link.active {
  background: rgba(244, 163, 0, 0.08); /* gold accent background on hover */
  color: var(--primary-color);
}

.mobile-link.active {
  font-weight: 600;
}

.mobile-btn {
  margin-top: auto;
  width: 100%;
  background: var(--primary-color);
  color: #fff;
}

/* Overlay */
.navbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  /* Remove blur */
  backdrop-filter: none;
}

.navbar-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Scrolled State */
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .navbar-desktop {
    display: none;
  }
  
  .navbar-toggle {
    display: flex;
  }
  
  .navbar-container {
    width: 100%;
    max-width: 100vw;
    padding: 0.75rem 1rem;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    z-index: 1001;
  }
  
  .navbar-toggle {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    width: 100%;
    max-width: 100vw;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
  }
  
  .logo-img {
    height: 36px;
  }
  
  .navbar-mobile {
    width: 100vw;
    padding: 1rem;
    box-sizing: border-box;
  }
  
  .mobile-link {
    padding: 0.875rem;
    font-size: 1rem;
  }
  
  .mobile-close {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

@media (max-width: 360px) {
  .mobile-link {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  
  .mobile-btn {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
}

/* =========================
   Footer Styles - Modern & Responsive
   ========================= */

/* Base Styles */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 1.5rem 0 0 !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0.5rem !important;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem !important;
}

.footer-section {
  margin-bottom: 1rem !important;
}

.footer-title {
  color: #F4A300;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem !important;
  position: relative;
  padding-bottom: 0.5rem !important;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #F4A300;
}

/* Company Info */
.company-info {
  grid-column: 1 / -1;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

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

.company-name {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.company-description {
  color: #b3b3b3;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Newsletter */
.newsletter {
  margin-top: 0.5rem !important;
}

.newsletter h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #2a2a2a;
  color: #ffffff;
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: #999;
}

.btn-subscribe {
  padding: 0.75rem 1.5rem;
  background-color: #F4A300;
  color: #000000;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background-color: #e69500;
  transform: translateY(-2px);
}

/* Quick Links */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  color: #b3b3b3;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.5rem;
}

.footer-link::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #F4A300;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 2rem;
}

.footer-link:hover::before {
  opacity: 1;
  left: 0.5rem;
}

/* Contact Info */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #b3b3b3;
}

.contact-item i {
  color: #F4A300;
  margin-right: 1rem;
  margin-top: 0.25rem;
  min-width: 16px;
}

.contact-item a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffffff;
}

/* Social Media */
.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #2a2a2a;
  border-radius: 50%;
  color: #b3b3b3;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #F4A300;
  color: #000000;
  transform: translateY(-3px);
}

.business-hours {
  margin-top: 2rem;
}

.business-hours h5 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.business-hours p {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #000000;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.copyright {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #F4A300;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .company-info {
    grid-column: span 2;
  }
  
  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .copyright {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .company-info {
    grid-column: span 1;
  }
}

/* --- ULTIMATE RESPONSIVE FIX: Premium Quality Assurance Section --- */
@media (max-width: 768px) {
  section.quality-assurance-section,
  section.quality-assurance-section .quality-container,
  section.quality-assurance-section .quality-gallery,
  section.quality-assurance-section .gallery-grid {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    display: block !important;
    overflow-x: hidden !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
}

@media (max-width: 600px) {
  section.quality-assurance-section .gallery-img {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border-radius: 0 !important;
  }
}

/* Footer contact info white text */
.footer .contact-list a,
.footer .contact-list i,
.footer .contact-list span {
  color: #fff !important;
}

@media (max-width: 600px) {
  .hide-on-mobile {
    display: none !important;
  }
}

@media (max-width: 480px) {
  section.quality-assurance-section .gallery-img {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border-radius: 0 !important;
  }
}

@media (max-width: 500px) {
  html, body {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  section.quality-assurance-section,
  section.quality-assurance-section .quality-container,
  section.quality-assurance-section .quality-gallery,
  section.quality-assurance-section .gallery-grid,
  section.quality-assurance-section .gallery-item,
  section.quality-assurance-section .gallery-img-container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    display: block !important;
    position: static !important;
  }
  section.quality-assurance-section .gallery-img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
  }
}

@media (max-width: 600px) {
  section.quality-assurance-section .gallery-img-container {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: none !important;
    overflow: visible !important;
    display: block !important;
    position: static !important;
  }
  section.quality-assurance-section .gallery-img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
  }
}

@media (max-width: 600px) {
  section.quality-assurance-section .gallery-img-container {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: none !important;
    overflow: visible !important;
    display: block !important;
    position: static !important;
  }
  section.quality-assurance-section .gallery-img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
  }
}

@media (max-width: 600px) {
  section.quality-assurance-section .gallery-img {
    width: 100% !important;
    max-height: 150px !important;
    object-fit: cover !important;
    object-position: center !important;
    margin-bottom: 1rem !important;
    border-radius: 50% !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 600px) {
  section.quality-assurance-section,
  section.quality-assurance-section .quality-container,
  section.quality-assurance-section .quality-gallery,
  section.quality-assurance-section .gallery-grid,
  section.quality-assurance-section .gallery-item,
  section.quality-assurance-section .gallery-img-container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    display: block !important;
    position: static !important;
  }
  section.quality-assurance-section .gallery-img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  section.quality-assurance-section {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  section.quality-assurance-section .gallery-grid {
    display: block !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  section.quality-assurance-section .gallery-item,
  section.quality-assurance-section .gallery-img-container {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    z-index: 2 !important;
    box-sizing: border-box !important;
  }
  section.quality-assurance-section .gallery-img {
    width: 100% !important;
    height: auto !important;
    min-height: 180px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  section.quality-assurance-section .gallery-grid {
    display: block !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  section.quality-assurance-section .gallery-item,
  section.quality-assurance-section .gallery-img-container {
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: block !important;
  }
  section.quality-assurance-section .gallery-img {
    width: 100% !important;
    height: auto !important;
    min-height: 180px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  html, body {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
  }
  section.quality-assurance-section,
  section.quality-assurance-section .quality-container,
  section.quality-assurance-section .quality-gallery,
  section.quality-assurance-section .gallery-grid,
  section.quality-assurance-section .gallery-item,
  section.quality-assurance-section .gallery-img-container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
  }
  section.quality-assurance-section .gallery-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
  }
}

/* --- FORCE FULL WIDTH IMAGES ON MOBILE --- */
@media (max-width: 480px) {
  section.quality-assurance-section .gallery-item,
  section.quality-assurance-section .gallery-img-container {
    width: 100vw !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 auto !important;
    position: static !important;
  }
  section.quality-assurance-section .gallery-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
  }
}

/* --- FORCE RESPONSIVE: Premium Quality Assurance Gallery --- */
@media (max-width: 768px) {
  section.quality-assurance-section .quality-gallery .gallery-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  section.quality-assurance-section .gallery-item,
  section.quality-assurance-section .gallery-img-container {
    max-width: 100% !important;
    width: 100% !important;
    height: 180px !important;
    overflow: hidden !important;
    position: relative !important;
    border-radius: 8px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  section.quality-assurance-section .gallery-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    display: block !important;
  }
  section.quality-assurance-section .img-overlay {
    position: absolute !important;
    left: 0; right: 0; bottom: 0;
    width: 100% !important;
    background: rgba(0,0,0,0.6) !important;
    color: #fff !important;
    padding: 0.35rem 0.2rem !important;
    font-size: 0.95rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-radius: 0 0 8px 8px !important;
    z-index: 2;
    min-height: 32px;
    box-sizing: border-box !important;
  }
  section.quality-assurance-section .overlay-text, 
  section.quality-assurance-section .overlay-icon {
    font-size: 0.95rem !important;
    margin: 0 0.2rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}
@media (max-width: 480px) {
  section.quality-assurance-section .quality-gallery .gallery-grid {
    grid-template-columns: 1fr !important;
  }
  section.quality-assurance-section .gallery-item,
  section.quality-assurance-section .gallery-img-container {
    height: 120px !important;
    border-radius: 6px !important;
  }
  section.quality-assurance-section .gallery-img {
    border-radius: 6px !important;
  }
  section.quality-assurance-section .img-overlay {
    font-size: 0.85rem !important;
    padding: 0.18rem 0.1rem !important;
    min-height: 20px !important;
    border-radius: 0 0 6px 6px !important;
  }
  section.quality-assurance-section .overlay-text, 
  section.quality-assurance-section .overlay-icon {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-section {
    width: 100%;
    display: block;
    text-align: center;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .footer-link {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    padding-left: 1rem;
  }
  
  .footer-link::before {
    left: 0;
    font-size: 0.8rem;
  }
  
  .footer-link:hover {
    padding-left: 1.5rem;
  }
  
  .footer-link:hover::before {
    left: 0.25rem;
  }
  
  .contact-item {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
  }
  
  .contact-item i {
    margin-right: 0.75rem;
    margin-top: 0.15rem;
    font-size: 1rem;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .business-hours h5 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  
  .business-hours p {
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
  }
  
  .footer-bottom-container {
    padding: 0 1rem;
  }
  
  .copyright {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
  
  .legal-links {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .legal-links a {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    gap: 1.5rem;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
    padding: 0.4rem 0;
    padding-left: 0.75rem;
  }
  
  .footer-link::before {
    font-size: 0.7rem;
  }
  
  .footer-link:hover {
    padding-left: 1.25rem;
  }
  
  .footer-link:hover::before {
    left: 0.2rem;
  }
  
  .contact-item {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
  }
  
  .contact-item i {
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .business-hours h5 {
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
  }
  
  .business-hours p {
    font-size: 0.75rem;
    margin-bottom: 0.1rem;
  }
  
  .footer-bottom-container {
    padding: 0 0.75rem;
  }
  
  .copyright {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .legal-links {
    gap: 0.75rem;
  }
  
  .legal-links a {
    font-size: 0.75rem;
  }
}

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

/* Projects Container */
.emp-projects-section {
  padding: 2rem 0;
  background-color: #f8f9fa;
  margin-top: 70px;
}

.emp-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Projects Grid */
.emp-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Project Card */
.emp-project-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.emp-project-card:hover {
  transform: translateY(-5px);
}

/* Project Image */
.emp-project-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

/* Project Info */
.emp-project-info {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.emp-project-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.emp-project-description {
  color: #6c757d;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.emp-project-link {
  display: inline-block;
  background-color: #F4A300;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
}

.emp-project-link:hover {
  background-color: #CC8400;
}

/* Clients Section */
.emp-clients-section {
  padding: 2rem 0;
  background-color: #f8f9fa;
}

.emp-clients-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.emp-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.emp-client-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.emp-client-card:hover {
  transform: translateY(-5px);
}

.emp-client-logo {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 1rem;
}

.emp-client-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.emp-client-description {
  color: #6c757d;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .emp-projects-grid,
  .emp-clients-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .emp-projects-grid,
  .emp-clients-grid {
    grid-template-columns: 1fr;
  }
}

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

/* About Us Container */
.emp-about-section {
  padding: 2rem 0;
  background-color: #f8f9fa;
  margin-top: 70px;
}

.emp-about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* About Us Content */
.emp-about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.emp-about-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.emp-about-description {
  color: #6c757d;
  line-height: 1.6;
  max-width: 800px;
}

/* Mission & Vision */
.emp-mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.emp-mission,
.emp-vision {
  flex: 1;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
}

.emp-mission-title,
.emp-vision-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.emp-mission-description,
.emp-vision-description {
  color: #6c757d;
  line-height: 1.6;
}

/* Team Section */
.emp-team-section {
  padding: 2rem 0;
  background-color: #f8f9fa;
}

.emp-team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.emp-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.emp-team-member {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.emp-team-member:hover {
  transform: translateY(-5px);
}

.emp-team-member-img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 1rem;
  border-radius: 50%;
}

.emp-team-member-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.emp-team-member-role {
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.emp-team-member-description {
  color: #6c757d;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .emp-mission-vision {
    flex-direction: column;
  }
  
  .emp-team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .emp-team-grid {
    grid-template-columns: 1fr;
  }
}

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

/* Contact Us Container */
.emp-contact-section {
  padding: 2rem 0;
  background-color: #f8f9fa;
  margin-top: 70px;
}

.emp-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Contact Us Content */
.emp-contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.emp-contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.emp-contact-description {
  color: #6c757d;
  line-height: 1.6;
  max-width: 800px;
}

/* Contact Form */
.emp-contact-form {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.emp-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.emp-form-input,
.emp-form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 1rem;
}

.emp-form-textarea {
  resize: vertical;
}

.emp-form-submit {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background-color: #F4A300;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.emp-form-submit:hover {
  background-color: #CC8400;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .emp-contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .emp-contact-form {
    padding: 1rem;
  }
}

/* =========================
   Premium Quality Assurance Section
   ========================= */

/* Container */
.emp-quality-section {
  padding: 2rem 0;
  background-color: #f8f9fa;
}

.emp-quality-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Content */
.emp-quality-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.emp-quality-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.emp-quality-description {
  color: #6c757d;
  line-height: 1.6;
  max-width: 800px;
}

/* Gallery */
.emp-quality-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.emp-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-img-container {
  width: 100%;
  max-width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.img-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 0.4rem 0.2rem;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 8px 8px;
  z-index: 2;
  min-height: 32px;
}

.overlay-text, .overlay-icon {
  font-size: 0.95rem;
  margin: 0 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Expertise */
.emp-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.emp-expertise-card {
  flex: 1;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
}

.emp-expertise-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.emp-expertise-description {
  color: #6c757d;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .emp-quality-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .gallery-img-container {
    width: 100% !important;
    max-width: 100% !important;
    height: 180px !important;
    overflow: hidden !important;
    position: relative !important;
    border-radius: 8px !important;
  }
  .gallery-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    display: block !important;
  }
  .img-overlay {
    position: absolute !important;
    left: 0; right: 0; bottom: 0;
    width: 100% !important;
    background: rgba(0,0,0,0.55) !important;
    color: #fff !important;
    padding: 0.4rem 0.2rem !important;
    font-size: 0.95rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-radius: 0 0 8px 8px !important;
    z-index: 2;
    min-height: 32px;
  }
  .overlay-text, .overlay-icon {
    font-size: 0.95rem !important;
    margin: 0 0.2rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 480px) {
  .gallery-img-container {
    height: 120px !important;
    border-radius: 6px !important;
  }
  .gallery-img {
    border-radius: 6px !important;
  }
  .img-overlay {
    font-size: 0.85rem !important;
    padding: 0.25rem 0.1rem !important;
    min-height: 24px;
    border-radius: 0 0 6px 6px !important;
  }
  .overlay-text, .overlay-icon {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .footer-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  .footer-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }
  .footer-logo {
    margin-bottom: 1rem !important;
  }
  .company-name {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
  }
  .company-description {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
  }
  .newsletter h4 {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
  }
  .newsletter-form input {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.9rem !important;
  }
  .btn-subscribe {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
  }
  .footer-menu {
    margin-bottom: 1.5rem !important;
  }
  .footer-link {
    font-size: 0.9rem !important;
    padding: 0.25rem 0 !important;
  }
  .contact-item {
    font-size: 0.9rem !important;
    margin-bottom: 0.75rem !important;
  }
  .contact-item i {
    margin-right: 0.75rem !important;
    margin-top: 0.15rem !important;
    font-size: 1rem !important;
  }
  .social-links {
    margin-bottom: 1.5rem !important;
    justify-content: center !important;
  }
  .social-link {
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
  }
  .business-hours {
    margin-top: 1.5rem !important;
  }
  .business-hours h5 {
    font-size: 0.9rem !important;
    margin-bottom: 0.25rem !important;
  }
  .business-hours p {
    font-size: 0.8rem !important;
    margin-bottom: 0.15rem !important;
  }
  .footer-bottom {
    padding: 1rem 0 !important;
    margin-top: 2rem !important;
  }
  .footer-bottom-container {
    padding: 0 1rem !important;
  }
  .copyright {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  .legal-links {
    gap: 1rem !important;
  }
  .legal-links a {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 0.5rem !important;
  }
  .footer-section {
    padding: 0.5rem 0 !important;
  }
  .footer-title {
    font-size: 1rem !important;
    margin-bottom: 0.25rem !important;
  }
  .footer-logo {
    margin-bottom: 0.75rem !important;
  }
  .company-name {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }
  .company-description {
    font-size: 0.8rem !important;
    margin-bottom: 1rem !important;
  }
  .newsletter h4 {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
  }
  .newsletter-form input {
    padding: 0.375rem 0.5rem !important;
    font-size: 0.8rem !important;
  }
  .btn-subscribe {
    padding: 0.375rem 0.75rem !important;
    font-size: 0.8rem !important;
  }
  .footer-menu {
    margin-bottom: 1rem !important;
  }
  .footer-link {
    font-size: 0.8rem !important;
    padding: 0.125rem 0 !important;
  }
  .contact-item {
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem !important;
  }
  .contact-item i {
    margin-right: 0.5rem !important;
    margin-top: 0.1rem !important;
    font-size: 0.9rem !important;
  }
  .social-links {
    margin-bottom: 1rem !important;
  }
  .social-link {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem !important;
  }
  .business-hours {
    margin-top: 1rem !important;
  }
  .business-hours h5 {
    font-size: 0.8rem !important;
    margin-bottom: 0.15rem !important;
  }
  .business-hours p {
    font-size: 0.7rem !important;
    margin-bottom: 0.075rem !important;
  }
  .footer-bottom {
    padding: 0.75rem 0 !important;
    margin-top: 1.5rem !important;
  }
  .footer-bottom-container {
    padding: 0 0.5rem !important;
  }
  .copyright {
    font-size: 0.7rem !important;
    margin-bottom: 0.5rem !important;
  }
  .legal-links {
    gap: 0.75rem !important;
  }
  .legal-links a {
    font-size: 0.7rem !important;
  }
}

@media (max-width: 768px) {
  .quality-container {
    flex-direction: column !important;
    display: flex !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
  }
  .quality-gallery, .quality-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  .gallery-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
  .gallery-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .gallery-img-container {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .gallery-img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    border-radius: 8px !important;
  }
  .expertise-highlights {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }
  .expertise-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: center !important;
  }
  .quality-content {
    padding: 1rem 0.5rem !important;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 0.7rem !important;
  }
  .gallery-img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 6px !important;
  }
  .quality-content {
    padding: 0.5rem 0.2rem !important;
  }
  .expertise-highlights {
    gap: 0.5rem !important;
  }
}

@media (max-width: 576px) {
  .footer-container {
    display: block !important;
    padding: 0.5rem 0 !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .footer-section {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-bottom: 0.75rem !important;
    padding: 0.5rem 0 !important;
  }
  .footer-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }
  .footer-link, .contact-item a {
    font-size: 1.05rem !important;
    padding: 0.6rem 0.8rem !important;
    margin: 0.2rem 0 !important;
    display: inline-block !important;
    min-width: 44px;
    min-height: 44px;
    max-width: 100%;
    word-break: break-word;
  }
  .footer-menu, .contact-list {
    padding-left: 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .footer-menu li, .contact-list li {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0.1rem 0 !important;
    display: block !important;
  }
  .social-links {
    display: flex !important;
    justify-content: center !important;
    gap: 0.7rem !important;
    margin-bottom: 0.5rem !important;
    flex-wrap: wrap !important;
    max-width: 100% !important;
  }
  .social-link {
    font-size: 1.4rem !important;
    padding: 0.7rem !important;
    border-radius: 50% !important;
    background: #f3f3f3 !important;
    margin: 0 0.15rem !important;
    min-width: 44px;
    min-height: 44px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 100%;
  }
  .social-link:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
  }
  .business-hours {
    font-size: 0.95rem !important;
    margin-top: 0.5rem !important;
    max-width: 100%;
  }
  .footer-bottom-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.3rem !important;
    text-align: center !important;
    padding: 0.5rem 0 !important;
    max-width: 100%;
  }
  .legal-links {
    margin-top: 0.3rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    max-width: 100%;
  }
  .legal-links a {
    font-size: 1rem !important;
    min-width: 44px;
    min-height: 44px;
    padding: 0.4rem 0.7rem !important;
    max-width: 100%;
    word-break: break-word;
  }
  .company-description, .business-hours p {
    word-break: break-word !important;
    white-space: normal !important;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-container {
    display: block !important;
    padding: 0.5rem 0 !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .footer-section {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-bottom: 0.75rem !important;
    padding: 0.5rem 0 !important;
  }
  .footer-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }
  .footer-link, .contact-item a {
    font-size: 1.05rem !important;
    padding: 0.6rem 0.8rem !important;
    margin: 0.2rem 0 !important;
    display: inline-block !important;
    min-width: 44px;
    min-height: 44px;
    max-width: 100%;
    word-break: break-word;
  }
  .footer-menu, .contact-list {
    padding-left: 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .footer-menu li, .contact-list li {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0.1rem 0 !important;
    display: block !important;
  }
  .social-links {
    display: flex !important;
    justify-content: center !important;
    gap: 0.7rem !important;
    margin-bottom: 0.5rem !important;
    flex-wrap: wrap !important;
    max-width: 100% !important;
  }
  .social-link {
    font-size: 1.4rem !important;
    padding: 0.7rem !important;
    border-radius: 50% !important;
    background: #f3f3f3 !important;
    margin: 0 0.15rem !important;
    min-width: 44px;
    min-height: 44px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 100%;
  }
  .social-link:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
  }
  .business-hours {
    font-size: 0.95rem !important;
    margin-top: 0.5rem !important;
    max-width: 100%;
  }
  .footer-bottom-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.3rem !important;
    text-align: center !important;
    padding: 0.5rem 0 !important;
    max-width: 100%;
  }
  .legal-links {
    margin-top: 0.3rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    max-width: 100%;
  }
  .legal-links a {
    font-size: 1rem !important;
    min-width: 44px;
    min-height: 44px;
    padding: 0.4rem 0.7rem !important;
    max-width: 100%;
    word-break: break-word;
  }
  .company-description, .business-hours p {
    word-break: break-word !important;
    white-space: normal !important;
    max-width: 100%;
  }
}

/* Responsive Footer Enhancements */
@media (max-width: 992px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
  }
  .footer-section {
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer-section.quick-links ul,
  .footer-section.contact-info ul {
    padding-left: 0;
    text-align: center;
  }
  .footer-section.quick-links li,
  .footer-section.contact-info li {
    margin-bottom: 0.5rem;
    display: inline-block;
    margin-right: 0.5rem;
  }
  .footer-section.quick-links li:last-child,
  .footer-section.contact-info li:last-child {
    margin-right: 0;
  }
  .footer-section .footer-link,
  .footer-section .contact-item a {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    display: inline-block;
  }
  .footer-section .social-links {
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .footer-section .social-link {
    font-size: 1.3rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: #f3f3f3;
    margin: 0 0.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-section .social-link:hover {
    background: var(--color-primary);
    color: #fff;
  }
  .business-hours {
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
  .legal-links {
    margin-top: 0.5rem;
  }
  .legal-links a {
    margin: 0 0.5rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {
  .footer-section {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
  }
  .footer-section .footer-link,
  .footer-section .contact-item a {
    font-size: 0.95rem;
    padding: 0.4rem 0.5rem;
  }
  .footer-section .social-link {
    font-size: 1.1rem;
    padding: 0.4rem;
  }
  .footer-title {
    font-size: 1.1rem;
  }
  .business-hours {
    font-size: 0.9rem;
  }
  .legal-links a {
    font-size: 0.9rem;
  }
}

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

/* =========================
   Hero Section Styles - Light Version
   ========================= */
.hero-section {
  position: relative;
  background-color: #f8f5f0; /* Warm light neutral */
  color: #333333;
  padding: 2rem 1rem;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: #d2aa50; /* Gold */
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #222222;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease-out;
}

.title-line:last-child {
  color: #d2aa50; /* Gold accent */
  animation-delay: 0.2s;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 2.5rem;
  max-width: 90%;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #d2aa50;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(210, 170, 80, 0.2);
}

.btn-primary:hover {
  background: #c19a40;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(210, 170, 80, 0.3);
}

.btn-primary svg {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  border: 2px solid #d2aa50;
  color: #d2aa50;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(210, 170, 80, 0.1);
  border-color: #c19a40;
  color: #c19a40;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out 0.3s forwards;
  opacity: 0;
}

.image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image:hover .image-wrapper {
  transform: perspective(1000px) rotateY(0deg);
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
}

.stats-card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
  opacity: 0;
  border: 1px solid rgba(210, 170, 80, 0.2);
}

.stat-item {
  text-align: center;
  padding: 0 0.5rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d2aa50;
  margin-bottom: 0.3rem;
  font-family: 'Arial', sans-serif;
}

.stat-label {
  font-size: 0.8rem;
  color: #666666;
  font-weight: 500;
}

.stat-number[data-count="50"]::after {
  content: "+";
  font-size: 1.2rem;
  color: #d2aa50;
}

.stat-number[data-count="100"]::after {
  content: "%";
  font-size: 1.2rem;
  color: #d2aa50;
}

.stat-number[data-count="24"]::after {
  content: "/7";
  font-size: 1.2rem;
  color: #d2aa50;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  animation: bounce 2s infinite;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #d2aa50;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  margin-bottom: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #d2aa50;
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

.arrow-down {
  width: 16px;
  height: 16px;
  border-right: 2px solid #d2aa50;
  border-bottom: 2px solid #d2aa50;
  transform: rotate(45deg);
  margin-top: -8px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 1rem 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .stats-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 2rem;
    backdrop-filter: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .stats-card {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Leadership Section Styles
   ========================= */
.leadership-section {
  padding: 2rem 1rem;
  background-color: #f8f8f8;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1rem !important;
}

.section-subtitle {
  display: block;
  font-size: 1rem;
  color: #d2aa50;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 2.75rem;
  color: #222;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto;
  width: 100%;
  max-width: 300px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d2aa50, transparent);
}

.divider-icon {
  margin: 0 1.5rem;
  color: #d2aa50;
  font-size: 1.2rem;
}

.section-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.leaders-container {
  max-width: 1200px;
  margin: 0 auto;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 0.75rem !important;
  justify-content: center;
}

.leader-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(210, 170, 80, 0.1);
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.leader-image-container {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.leader-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.leader-card:hover .leader-image {
  transform: scale(1.08);
}

.social-links {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.leader-card:hover .social-links {
  opacity: 1;
  transform: translateY(0);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  color: #555;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-link:hover {
  background: #d2aa50;
  color: #fff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(210, 170, 80, 0.3);
}

/* Specific icon colors */
.social-link:nth-child(1):hover { background: #0077b5; } /* LinkedIn */
.social-link:nth-child(2):hover { background: #3b5998; } /* Facebook */
.social-link:nth-child(3):hover { background: #1da1f2; } /* Twitter */

.leader-info {
  padding: 2rem;
  text-align: center;
}

.leader-name {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.leader-title {
  color: #d2aa50;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.leader-title:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #d2aa50;
}

.leader-bio {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.leader-quote {
  background: rgba(210, 170, 80, 0.08);
  border-left: 3px solid #d2aa50;
  padding: 1rem;
  margin-top: 1.5rem;
  position: relative;
}

.leader-quote i {
  color: #d2aa50;
  font-size: 1.2rem;
  position: absolute;
  left: 10px;
  top: 10px;
  opacity: 0.5;
}

.leader-quote p {
  color: #555;
  font-style: italic;
  padding-left: 1.5rem;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .leader-image-container {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
  
  .leaders-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .leadership-section {
    padding: 1rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .leader-info {
    padding: 1.5rem;
  }
}

/* =========================
   Services Section Styles
   ========================= */
.services-section {
  padding: 2rem 1rem;
  background-color: #fff;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1rem !important;
}

.section-subtitle {
  display: block;
  font-size: 1rem;
  color: #d2aa50;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto;
  width: 100%;
  max-width: 300px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d2aa50, transparent);
}

.divider-icon {
  margin: 0 1.5rem;
  color: #d2aa50;
  font-size: 1.2rem;
}

.section-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.service-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(210, 170, 80, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  background: #fff;
  border-color: rgba(210, 170, 80, 0.3);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(210, 170, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #d2aa50;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #d2aa50;
  color: #fff;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: #d2aa50;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #c19a40;
}

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

.services-cta {
  text-align: center;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #d2aa50;
  color: #fff;
  box-shadow: 0 4px 15px rgba(210, 170, 80, 0.3);
}

.btn-primary:hover {
  background: #c19a40;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(210, 170, 80, 0.4);
}

.btn-primary svg {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .services-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 3rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 1rem 1rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

/* =========================
   Projects Section Styles
   ========================= */
.projects-section {
  padding: 2rem 1rem;
  background-color: var(--bg-light);
  position: relative;
}

.projects-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.projects-section .text-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.projects-section h2 {
  font-size: 2.5rem;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.projects-section p {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Projects Grid */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.project-image {
  position: relative;
  aspect-ratio: 4/3;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h3 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.project-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-overlay li {
  color: var(--color-accent-light);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.project-overlay strong {
  color: var(--text-white);
  font-weight: 500;
}

/* CTA Button */
.projects-section .btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.projects-section .btn-primary:hover {
  background-color: var(--btn-hover-bg);
  color: var(--btn-hover-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.projects-section .btn-primary svg {
  transition: transform 0.3s ease;
}

.projects-section .btn-primary:hover svg {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .projects-gallery {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .projects-section h2 {
    font-size: 2rem;
  }
  
  .projects-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .projects-section {
    padding: 1rem 1rem;
  }
  
  .projects-gallery {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .project-overlay {
    padding: 1rem;
  }
  
  .project-overlay h3 {
    font-size: 1.25rem;
  }
}

/* =========================
   Projects Carousel Styles
   ========================= */
.projects-carousel {
  position: relative;
  padding: 1rem 0;
}

.projects-track {
  display: flex;
  width: 100%;
  animation: autoSlide 20s infinite linear;
}

.project-slide {
  flex: 0 0 auto;
  transition: transform 0.5s ease;
  width: 420px; /* Much larger width for bigger images */
  margin-right: 2rem;
}

/* Fixed size for project cards in carousel */
.project-slide .project-card {
  width: 100%;
  height: 350px; /* Much larger height for bigger images */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.project-slide .project-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.project-slide .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-slide .project-overlay {
  opacity: 1 !important; /* Force overlay to always be visible */
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.project-slide .project-overlay h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.project-slide .project-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-slide .project-overlay li {
  color: var(--color-accent-light);
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.project-slide .project-overlay strong {
  color: var(--text-white);
  font-weight: 500;
}

/* Pause animation on hover */
.projects-carousel:hover .projects-track {
  animation-play-state: paused;
}

/* Navigation Arrows */
.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #d2aa50;
  padding: 0.75rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-prev:hover, .carousel-next:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev svg, .carousel-next svg {
  width: 1.5rem;
  height: 1.5rem;
}

.projects-carousel:hover .carousel-prev,
.projects-carousel:hover .carousel-next {
  opacity: 1;
}

/* Projects CTA */
.projects-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 0 1rem;
}

.projects-cta .btn {
  background: linear-gradient(135deg, #d2aa50 0%, #c19a40 100%);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(210, 170, 80, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.projects-cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.projects-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(210, 170, 80, 0.4);
  background: linear-gradient(135deg, #c19a40 0%, #b08a30 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

.projects-cta .btn:hover::before {
  left: 100%;
}

.projects-cta .btn span {
  position: relative;
  z-index: 1;
}

.projects-cta .btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.projects-cta .btn:hover svg {
  transform: translateX(5px);
}

/* Button focus states for accessibility */
.projects-cta .btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(210, 170, 80, 0.3);
}

/* Responsive button sizing */
@media (max-width: 768px) {
  .projects-cta .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .projects-cta .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Auto-slide Animation */
@keyframes autoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 4 * 4)); /* Adjust based on slide count */
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .project-slide {
    width: 350px; /* Much larger width for tablets */
  }
  
  .project-slide .project-card {
    height: 280px; /* Much larger height for tablets */
  }
  
  @keyframes autoSlide {
    100% {
      transform: translateX(calc(-100% / 2 * 4)); /* 2 visible slides */
    }
  }
}

@media (max-width: 480px) {
  .project-slide {
    width: 380px; /* Much larger width for mobile */
  }
  
  .project-slide .project-card {
    height: 300px; /* Much larger height for mobile */
  }
  
  @keyframes autoSlide {
    100% {
      transform: translateX(calc(-100% * 4)); /* 1 visible slide */
    }
  }
}



/* =========================
   About Page Styles
   ========================= */
.about-page {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.about-page header {
  background: var(--color-black);
  color: var(--color-gold);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  width: 100%;
}
.about-page header h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  animation: fade-in 1s ease;
}
.about-page header p {
  font-size: 1rem;
  margin-top: 0.5rem;
  animation: fade-in 1.5s ease;
}
.about-page .section {
  width: 100%;
  max-width: 800px;
  padding: 1.5rem 1rem;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  animation: fade-in-up 1s ease;
}
.about-page .section h2 {
  font-size: 1.5rem;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  display: inline-block;
}
.about-page .section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-gold);
  margin: 0.5rem auto 0;
}
.about-page .section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-body);
  text-align: center;
}
.about-page .section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.about-page .section ul li {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--bg-card);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-page .section ul li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}
.about-page .section ul li i {
  color: var(--color-gold);
  font-size: 1.2rem;
  min-width: 24px;
}
.about-page .btn-back {
  display: inline-block;
  margin: 1.5rem auto;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-black);
  color: var(--color-gold);
  text-decoration: none;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease, transform 0.2s ease;
  text-align: center;
  animation: fade-in 2s ease;
}
.about-page .btn-back:hover {
  background: var(--color-gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* =========================
   Contact Page Styles
   ========================= */
.contact-page {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.contact-page header {
  background: var(--color-black);
  color: var(--color-gold);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  width: 100%;
  position: relative;
}
.contact-page header h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  animation: fade-in 1s ease;
}
.contact-page .back-to-home {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bg-white);
  color: var(--color-black);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}
.contact-page .back-to-home:hover {
  background: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}
.contact-page main {
  width: 100%;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.contact-page .contact-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
}
.contact-page .contact-info,
.contact-page form {
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  width: 100%;
  max-width: 500px;
  animation: fade-in-up 1s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-page .contact-info:hover,
.contact-page form:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}
.contact-page .contact-info h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-gold);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}
.contact-page .contact-info h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-gold);
  margin: 0.5rem auto 0;
}
.contact-page .contact-info p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.contact-page .contact-info strong {
  color: var(--text-body);
}
.contact-page .contact-info a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-page .contact-info a:hover {
  color: var(--color-accent-dark);
}
.contact-page form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-page label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
}
.contact-page input,
.contact-page textarea {
  font-size: 0.9rem;
  padding: 0.7rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-page input:focus,
.contact-page textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 8px rgba(254, 66, 77, 0.3);
}
.contact-page textarea {
  resize: none;
}
.contact-page button {
  background: var(--color-black);
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: var(--shadow-soft);
}
.contact-page button:hover {
  background: var(--color-gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* =========================
   Learn More Page Styles
   ========================= */
.learn-more-page {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.learn-more-section {
  padding: 4rem 2rem;
  background-color: var(--bg-white);
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInPage 1s ease-in-out;
}
.learn-more-section h1 {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 2rem;
  animation: fadeIn 1.2s ease-in-out;
  position: relative;
}
.learn-more-section h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-gold);
  margin: 1rem auto 0;
}
.service-details {
  text-align: left;
}
.service-card {
  background-color: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}
.service-card h2 {
  font-size: 2rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  animation: fadeIn 1.5s ease-in-out;
  position: relative;
}
.service-card h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-gold);
  margin: 1rem 0;
}
.service-card p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  animation: fadeIn 1.8s ease-in-out;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.service-card ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}
.service-card ul li i {
  color: var(--color-gold);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}
.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--color-gold);
  border-radius: 30px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-card .service-link:hover {
  background: var(--color-black);
  color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}
.why-choose-us {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-white);
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.why-choose-us h2 {
  font-size: 2rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}
.why-choose-us h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-gold);
  margin: 1rem auto 0;
}
.why-choose-us ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}
.why-choose-us ul li {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.why-choose-us ul li i {
  color: var(--color-gold);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

/* =========================
   Privacy Page Styles
   ========================= */
.privacy-page {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.privacy-page header {
  background: var(--color-black);
  color: var(--color-gold);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  width: 100%;
}
.privacy-page header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  animation: fade-in 1s ease;
}
.privacy-page main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  width: 95%;
  animation: fade-in-up 1s ease;
}
.privacy-page main h2 {
  font-size: 2rem;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}
.privacy-page main h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-gold);
  margin: 1rem 0;
}
.privacy-page main h3 {
  font-size: 1.5rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.privacy-page main p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-body);
}
.privacy-page main ul {
  list-style-type: disc;
  padding-left: 2rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}
.privacy-page main ul li {
  margin-bottom: 0.8rem;
}
.privacy-page main a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
}
.privacy-page main a:hover {
  text-decoration: underline;
}
.privacy-page .btn-back {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-black);
  color: var(--color-gold);
  text-decoration: none !important;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease, transform 0.2s ease;
}
.privacy-page .btn-back:hover {
  background: var(--color-gold-dark);
  transform: translateY(-3px);
}

/* =========================
   Terms Page Styles
   ========================= */
body, .term-page {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.6;
}
header {
  background: var(--color-black);
  color: var(--color-gold);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}
main {
  width: 100vw;
  min-height: calc(100vh - 120px); /* Adjust for navbar/footer height */
  display: block;
}
main h2 {
  font-size: 2rem;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
main h3 {
  font-size: 1.5rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
main p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-body);
}
main ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}
main ul li {
  margin-bottom: 0.8rem;
}
main a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
}
main a:hover {
  text-decoration: underline;
}
.btn-back {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-black);
  color: var(--color-gold);
  text-decoration: none !important;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-back:hover {
  background: var(--color-gold-dark);
  transform: translateY(-3px);
}

/* Remove or adjust max-width for containers if needed for full width */
.navbar-container, .footer-container, .contact-page .contact-container, .about-page .section, .learn-more-section, .projects-gallery {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

/* Hide close button by default */
.navbar-close-btn {
  display: none;
}

@media (max-width: 768px) {
  /* ...existing code... */
  .navbar-close-btn {
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-black);
    cursor: pointer;
    z-index: 1001;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    transition: background 0.2s;
  }
  .navbar-close-btn:focus, .navbar-close-btn:hover {
    background: var(--color-gray-200);
    outline: none;
  }
}

/* =========================
   Testimonials Section Styles
   ========================= */
.testimonials-section {
  padding: 1rem 0;
  background: var(--bg-light);
  position: relative;
}

.testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.testimonials-section .mb-12 {
  margin-bottom: 1rem !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.testimonials-section .text-gold {
  color: var(--color-gold);
}

.testimonials-section .uppercase {
  text-transform: uppercase;
}

.testimonials-section .text-sm {
  font-size: 0.875rem;
}

.testimonials-section .font-semibold {
  font-weight: 600;
}

.testimonials-section .tracking-wider {
  letter-spacing: 0.05em;
}

.testimonials-section .text-4xl {
  font-size: 2.25rem;
}

.testimonials-section .font-bold {
  font-weight: 700;
}

.testimonials-section .text-gray-900 {
  color: var(--color-gray-900);
}

.testimonials-section .mt-2 {
  margin-top: 0.5rem;
}

.testimonials-section .text-gray-600 {
  color: var(--color-gray-600);
}

.testimonials-section .max-w-2xl {
  max-width: 42rem;
}

.testimonials-section .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.testimonials-section .text-lg {
  font-size: 1.125rem;
}

/* Carousel Container */
.testimonials-section .relative {
  position: relative;
}

.testimonials-section .max-w-6xl {
  max-width: 72rem;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--color-white);
  color: var(--color-gold);
  padding: 0.75rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.carousel-btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(244, 163, 0, 0.3);
}

.carousel-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 163, 0, 0.3);
}

.carousel-btn.prev-btn {
  left: 0;
  transform: translateY(-50%) translateX(-1rem);
}

.carousel-btn.next-btn {
  right: 0;
  transform: translateY(-50%) translateX(1rem);
}

.carousel-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Carousel Track */
.clients-carousel {
  overflow: hidden;
  padding: 1rem 0;
}

.feedback-track {
  display: flex;
  transition: transform 0.5s ease-out;
  gap: 0;
}

.feedback-card {
  padding: 0 1rem;
  min-width: 100%;
  flex-shrink: 0;
}

/* Feedback Card Content */
.feedback-content {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 0.5rem;
  height: 100%;
  border-left: 4px solid var(--color-gold);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feedback-content:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-left-color: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* Quote Icon */
.quote-icon {
  color: var(--color-gold);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.75;
  line-height: 1;
}

/* Feedback Text */
.feedback-content p {
  color: var(--color-gray-700);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

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

.client-info .w-12 {
  width: 3rem;
}

.client-info .h-12 {
  height: 3rem;
}

.client-info .rounded-full {
  border-radius: 50%;
}

.client-info .bg-gold {
  background: var(--color-gold);
}

.client-info .flex {
  display: flex;
}

.client-info .items-center {
  align-items: center;
}

.client-info .justify-center {
  justify-content: center;
}

.client-info .text-white {
  color: var(--color-white);
}

.client-info .font-bold {
  font-weight: 700;
}

.client-info .mr-4 {
  margin-right: 1rem;
}

.client-info .shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.client-info h4 {
  color: var(--color-gray-900);
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0;
}

.client-info p {
  color: var(--color-gray-500);
  font-size: 0.875rem;
  margin: 0;
  font-style: normal;
}

/* Navigation Dots */
.testimonials-section .flex {
  display: flex;
}

.testimonials-section .justify-center {
  justify-content: center;
}

.testimonials-section .mt-8 {
  margin-top: 2rem;
}

.testimonials-section .space-x-2 > * + * {
  margin-left: 0.5rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--color-gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: var(--color-gold);
  transform: scale(1.2);
}

.dot:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 163, 0, 0.3);
}

.dot.bg-gold {
  background: var(--color-gold);
}

/* Responsive Design */
@media (min-width: 640px) {
  .feedback-card {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .feedback-card {
    min-width: 33.333%;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 1rem 0;
  }
  
  .testimonials-section .text-4xl {
    font-size: 1.875rem;
  }
  
  .testimonials-section .text-lg {
    font-size: 1rem;
  }
  
  .feedback-content {
    padding: 1.5rem;
  }
  
  .feedback-content p {
    font-size: 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    padding: 0.5rem;
  }
  
  .carousel-btn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .carousel-btn.prev-btn {
    transform: translateY(-50%) translateX(-0.5rem);
  }
  
  .carousel-btn.next-btn {
    transform: translateY(-50%) translateX(0.5rem);
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 1rem 0;
  }
  
  .testimonials-section .text-4xl {
    font-size: 1.5rem;
  }
  
  .feedback-content {
    padding: 1rem;
  }
  
  .feedback-content p {
    font-size: 0.875rem;
  }
  
  .client-info {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .client-info .mr-4 {
    margin-right: 0;
  }
  
  .carousel-btn {
    display: none;
  }
}

/* Animation for card entrance */
.feedback-card {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Smooth transitions for carousel */
.feedback-track {
  will-change: transform;
}

/* Focus states for accessibility */
.carousel-btn:focus-visible,
.dot:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Loading state */
.testimonials-section.loading .feedback-track {
  opacity: 0.7;
  pointer-events: none;
}

/* Auto-play indicator */
.testimonials-section.auto-play .dot.active {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
} 

/* =========================
   Why Choose Us Section Styles
   ========================= */
.why-choose-section {
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Section Header */
.why-choose-section .section-header {
  text-align: center;
  margin-bottom: 1rem !important;
}

.why-choose-section .section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}

.why-choose-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.why-choose-section .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  gap: 1rem;
}

.why-choose-section .divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.why-choose-section .divider-icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
}

.why-choose-section .section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Why Choose Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 0.75rem !important;
  margin-bottom: 3rem;
}

/* Why Card */
.why-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 163, 0, 0.1);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-gold);
}

.why-card:hover::before {
  transform: scaleX(1);
}

/* Icon Wrapper */
.why-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(244, 163, 0, 0.3);
}

.why-icon-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(244, 163, 0, 0.1), rgba(204, 132, 0, 0.1));
  border-radius: 25px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(244, 163, 0, 0.4);
}

.why-card:hover .why-icon-bg {
  opacity: 1;
}

/* Content */
.why-content {
  position: relative;
  z-index: 2;
}

.why-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-description {
  font-size: 1rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Features List */
.why-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-gray-700);
  transition: all 0.3s ease;
}

.why-features li:hover {
  color: var(--color-black);
  transform: translateX(5px);
}

.why-features li i {
  color: var(--color-gold);
  margin-right: 0.75rem;
  font-size: 0.875rem;
  width: 16px;
  text-align: center;
}

/* CTA Section */
.why-choose-cta {
  text-align: center;
  margin-top: 3rem;
}

.why-choose-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(244, 163, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.why-choose-cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.why-choose-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(244, 163, 0, 0.4);
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
}

.why-choose-cta .btn:hover::before {
  left: 100%;
}

.why-choose-cta .btn svg {
  transition: transform 0.3s ease;
}

.why-choose-cta .btn:hover svg {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .why-choose-section {
    padding: 1rem 0;
  }
  
  .why-choose-section .section-title {
    font-size: 2.5rem;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
  }
  
  .why-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 1rem 0;
  }
  
  .why-choose-container {
    padding: 0 1rem;
  }
  
  .why-choose-section .section-title {
    font-size: 2rem;
  }
  
  .why-choose-section .section-description {
    font-size: 1rem;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .why-card {
    padding: 1.5rem;
  }
  
  .why-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .why-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .why-choose-section {
    padding: 1rem 0;
  }
  
  .why-choose-section .section-title {
    font-size: 1.75rem;
  }
  
  .why-card {
    padding: 1.25rem;
  }
  
  .why-choose-cta .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* Animation for cards entrance */
.why-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }
.why-card:nth-child(5) { animation-delay: 0.5s; }
.why-card:nth-child(6) { animation-delay: 0.6s; }

/* Hover effects for features */
.why-features li {
  position: relative;
}

.why-features li::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
  transform: translateY(-50%);
}

.why-features li:hover::before {
  width: 0.5rem;
}

/* Focus states for accessibility */
.why-card:focus-within {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.why-choose-cta .btn:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Loading state */
.why-choose-section.loading .why-card {
  opacity: 0.7;
  pointer-events: none;
}

/* Success state animation */
.why-card.success {
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
} 

/* =========================
   Awards & Recognition Section Styles
   ========================= */
.awards-section {
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--bg-light) 100%);
  position: relative;
}

.awards-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Awards Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Award Card */
.award-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 163, 0, 0.1);
  text-align: center;
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-gold);
}

.award-card:hover::before {
  transform: scaleX(1);
}

/* Award Icon */
.award-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(244, 163, 0, 0.3);
}

.award-card:hover .award-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(244, 163, 0, 0.4);
}

/* Award Content */
.award-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.award-issuer {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.award-description {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.award-year {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(244, 163, 0, 0.3);
}

/* =========================
   Client Success Stories Section Styles
   ========================= */
.success-stories-section {
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--color-white) 100%);
  position: relative;
}

.success-stories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Stories Grid */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 0.75rem !important;
  margin-top: 3rem;
}

/* Story Card */
.story-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(244, 163, 0, 0.1);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Story Image */
.story-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.story-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.story-category {
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Story Content */
.story-content {
  padding: 2rem;
}

.story-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.story-excerpt {
  font-size: 1rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Story Metrics */
.story-metrics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

.metric {
  text-align: center;
  flex: 1;
}

.metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Story Link */
.story-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.story-link:hover {
  color: var(--color-gold-dark);
  transform: translateX(5px);
}

.story-link i {
  transition: transform 0.3s ease;
}

.story-link:hover i {
  transform: translateX(3px);
}

/* =========================
   Industry Insights Section Styles
   ========================= */
.insights-section {
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--bg-light) 100%);
  position: relative;
}

.insights-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Insights Grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.75rem !important;
  margin-top: 3rem;
}

/* Insight Card */
.insight-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(244, 163, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-gold);
}

.insight-card:hover::before {
  transform: scaleX(1);
}

/* Insight Header */
.insight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.insight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(244, 163, 0, 0.3);
}

.insight-card:hover .insight-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(244, 163, 0, 0.4);
}

.insight-meta {
  flex: 1;
}

.insight-category {
  display: block;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.insight-date {
  display: block;
  color: var(--color-gray-500);
  font-size: 0.75rem;
}

/* Insight Content */
.insight-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.insight-content p {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Insight Stats */
.insight-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-gray-200);
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Insight Link */
.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.insight-link:hover {
  color: var(--color-gold-dark);
  transform: translateX(5px);
}

/* Insights CTA */
.insights-cta {
  text-align: center;
  margin-top: 3rem;
}

.insights-cta .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: transparent;
  color: var(--color-gold);
  text-decoration: none;
  border: 2px solid var(--color-gold);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.insights-cta .btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(244, 163, 0, 0.3);
}

.insights-cta .btn-outline svg {
  transition: transform 0.3s ease;
}

.insights-cta .btn-outline:hover svg {
  transform: translateX(4px);
}

/* Responsive Design for All New Sections */
@media (max-width: 1200px) {
  .awards-grid,
  .stories-grid,
  .insights-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .awards-section,
  .success-stories-section,
  .insights-section {
    padding: 1rem 0;
  }
  
  .awards-grid,
  .stories-grid,
  .insights-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
  }
  
  .award-card,
  .story-content,
  .insight-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .awards-section,
  .success-stories-section,
  .insights-section {
    padding: 1rem 0;
  }
  
  .awards-container,
  .success-stories-container,
  .insights-container {
    padding: 0 1rem;
  }
  
  .awards-grid,
  .stories-grid,
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .award-card,
  .story-content,
  .insight-card {
    padding: 1.5rem;
  }
  
  .award-icon,
  .insight-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .story-image {
    height: 200px;
  }
  
  .story-metrics,
  .insight-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .awards-section,
  .success-stories-section,
  .insights-section {
    padding: 1rem 0;
  }
  
  .award-card,
  .story-content,
  .insight-card {
    padding: 1.25rem;
  }
  
  .insights-cta .btn-outline {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* Animation for cards entrance */
.award-card,
.story-card,
.insight-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.award-card:nth-child(1) { animation-delay: 0.1s; }
.award-card:nth-child(2) { animation-delay: 0.2s; }
.award-card:nth-child(3) { animation-delay: 0.3s; }
.award-card:nth-child(4) { animation-delay: 0.4s; }

.story-card:nth-child(1) { animation-delay: 0.1s; }
.story-card:nth-child(2) { animation-delay: 0.2s; }
.story-card:nth-child(3) { animation-delay: 0.3s; }

.insight-card:nth-child(1) { animation-delay: 0.1s; }
.insight-card:nth-child(2) { animation-delay: 0.2s; }
.insight-card:nth-child(3) { animation-delay: 0.3s; }
.insight-card:nth-child(4) { animation-delay: 0.4s; }

/* Focus states for accessibility */
.award-card:focus-within,
.story-card:focus-within,
.insight-card:focus-within {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.insights-cta .btn-outline:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Loading state */
.awards-section.loading .award-card,
.success-stories-section.loading .story-card,
.insights-section.loading .insight-card {
  opacity: 0.7;
  pointer-events: none;
}

/* =========================
   Process Section Styles
   ========================= */
.process-section {
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.process-section .section-header {
  text-align: center;
  margin-bottom: 1rem !important;
}

.process-section .section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}

.process-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.process-section .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  gap: 1rem;
}

.process-section .divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.process-section .divider-icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
}

.process-section .section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Removed the yellow timeline line */

.process-step {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--color-white);
}

.step-content {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  width: calc(50% - 3rem);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.process-step:hover .step-content {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: var(--color-gold);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-medium);
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.step-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-body);
  font-size: 0.95rem;
}

.step-features li i {
  color: var(--color-gold);
  margin-right: 0.75rem;
  font-size: 0.875rem;
  width: 16px;
  text-align: center;
}

.step-duration {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.step-duration i {
  color: var(--color-gold);
  margin-right: 0.5rem;
}

.process-cta {
  text-align: center;
  margin-top: 4rem;
}

.process-cta .btn {
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.process-cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.process-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.process-cta .btn:hover::before {
  left: 100%;
}

.process-cta .btn svg {
  transition: transform 0.3s ease;
}

.process-cta .btn:hover svg {
  transform: translateX(5px);
}

/* =========================
   News & Blog Section Styles
   ========================= */
.news-blog-section {
  padding: 1rem 0;
  background: var(--color-white);
  position: relative;
}

.news-blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.news-blog-section .section-header {
  text-align: center;
  margin-bottom: 1rem !important;
}

.news-blog-section .section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}

.news-blog-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.news-blog-section .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  gap: 1rem;
}

.news-blog-section .divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.news-blog-section .divider-icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
}

.news-blog-section .section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.news-blog-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  position: relative;
}

.news-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.news-blog-card.featured {
  grid-column: span 2;
}

.news-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.news-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-white);
  padding: 0.75rem;
  border-radius: 10px;
  text-align: center;
  z-index: 2;
}

.news-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.news-date .month {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-content {
  padding: 2rem;
}

.news-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.news-blog-card:hover .news-content h3 {
  color: var(--color-gold);
}

.news-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-meta i {
  color: var(--color-gold);
  font-size: 0.75rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.news-link:hover {
  color: var(--color-gold-dark);
  gap: 0.75rem;
}

.news-link i {
  transition: transform 0.3s ease;
}

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

.news-blog-cta {
  text-align: center;
}

.news-blog-cta .btn-outline {
  background: transparent;
  color: var(--color-gold);
  padding: 1rem 2.5rem;
  border: 2px solid var(--color-gold);
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-blog-cta .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  transition: left 0.3s ease;
  z-index: -1;
}

.news-blog-cta .btn-outline:hover {
  color: var(--color-white);
  border-color: var(--color-gold);
}

.news-blog-cta .btn-outline:hover::before {
  left: 0;
}

.news-blog-cta .btn-outline svg {
  transition: transform 0.3s ease;
}

.news-blog-cta .btn-outline:hover svg {
  transform: translateX(5px);
}

/* =========================
   FAQ Section Styles
   ========================= */
.faq-section {
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
  position: relative;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 1rem !important;
}

.faq-section .section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}

.faq-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.faq-section .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  gap: 1rem;
}

.faq-section .divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.faq-section .divider-icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
}

.faq-section .section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.faq-item {
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--color-gold);
}

.faq-item.active {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-medium);
}


.faq-question {
  width: 100%;
  padding: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  background: var(--color-white);
  border: none;
  outline: none;
  font-size: 1.15rem;
  font-family: inherit;
  font-weight: 600;
  color: var(--text-heading);
  border-radius: 0;
  text-align: left;
  gap: 1.5rem;
}

.faq-question:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  background: var(--bg-light);
}

.faq-q-icon {
  margin-right: 1rem;
  color: var(--color-gold);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.faq-q-text {
  flex: 1;
  text-align: left;
}

.faq-toggle {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-gold);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.1rem;
  transition: background 0.3s, transform 0.3s;
}

.faq-item.active .faq-toggle {
  background: var(--color-gold-dark);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  background: var(--bg-light);
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem 2rem 2rem;
}

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

.faq-question h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 2rem;
}

.faq-toggle {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item:hover .faq-toggle {
  transform: scale(1.1);
}

.faq-item.active .faq-toggle {
  background: var(--color-gold-dark);
  transform: scale(1.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--bg-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 2rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.faq-answer li {
  padding: 0.5rem 0;
  color: var(--text-body);
  position: relative;
  padding-left: 1.5rem;
}

.faq-answer li::before {
  content: '•';
  color: var(--color-gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.faq-answer strong {
  color: var(--text-heading);
  font-weight: 600;
}

.faq-cta {
  text-align: center;
  background: var(--color-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.faq-cta p {
  font-size: 1.25rem;
  color: var(--text-heading);
  margin-bottom: 2rem;
  font-weight: 500;
}

.faq-cta .btn {
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.faq-cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.faq-cta .btn:hover::before {
  left: 100%;
}

.faq-cta .btn:hover svg {
  transform: translateX(5px);
}

/* =========================
   Responsive Styles
   ========================= */
@media (max-width: 1200px) {
  /* Timeline line removed */
  
  .process-step {
    flex-direction: row !important;
    margin-left: 60px;
  }
  
  .step-number {
    left: 0;
    transform: translateX(-50%);
  }
  
  .step-content {
    width: 100%;
  }
  
  .news-blog-card.featured {
    grid-column: span 1;
  }
}

@media (max-width: 992px) {
  .process-section,
  .news-blog-section,
  .faq-section {
    padding: 1rem 0;
  }
  
  .process-section .section-title,
  .news-blog-section .section-title,
  .faq-section .section-title {
    font-size: 2.5rem;
  }
  
  .news-blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .process-section,
  .news-blog-section,
  .faq-section {
    padding: 1rem 0;
  }
  
  .process-container,
  .news-blog-container,
  .faq-container {
    padding: 0 1rem;
  }
  
  .process-section .section-title,
  .news-blog-section .section-title,
  .faq-section .section-title {
    font-size: 2rem;
  }
  
  .process-section .section-description,
  .news-blog-section .section-description,
  .faq-section .section-description {
    font-size: 1rem;
  }
  
  /* Timeline line removed */
  
  .process-step {
    margin-left: 40px;
  }
  
  .step-number {
    left: 0;
    transform: translateX(-50%);
  }
  
  .step-content {
    padding: 1.5rem;
    width: 100%;
  }
  
  .step-content h3 {
    font-size: 1.25rem;
  }
  
  .news-blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .news-content {
    padding: 1.5rem;
  }
  
  .news-content h3 {
    font-size: 1.25rem;
  }
  
  .faq-question {
    padding: 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1.125rem;
    padding-right: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
  
  .faq-cta {
    padding: 2rem 1.5rem;
  }
  
  .faq-cta p {
    font-size: 1.125rem;
  }
  
  .process-cta .btn,
  .news-blog-cta .btn-outline,
  .faq-cta .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .process-section,
  .news-blog-section,
  .faq-section {
    padding: 1rem 0;
  }
  
  .process-section .section-title,
  .news-blog-section .section-title,
  .faq-section .section-title {
    font-size: 1.75rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .step-content {
    padding: 1rem;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .news-image {
    height: 200px;
  }
  
  .news-content {
    padding: 1rem;
  }
  
  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    padding-right: 0.5rem;
  }
  
  .faq-toggle {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }
  
  .faq-cta {
    padding: 1.5rem 1rem;
  }
  
  .faq-cta p {
    font-size: 1rem;
  }
  
  .process-cta .btn,
  .news-blog-cta .btn-outline,
  .faq-cta .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* =========================
   Animation & Focus Styles
   ========================= */
.process-step,
.news-blog-card,
.faq-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.news-blog-card:nth-child(1) { animation-delay: 0.1s; }
.news-blog-card:nth-child(2) { animation-delay: 0.2s; }
.news-blog-card:nth-child(3) { animation-delay: 0.3s; }
.news-blog-card:nth-child(4) { animation-delay: 0.4s; }

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.process-step:focus-within,
.news-blog-card:focus-within,
.faq-item:focus-within {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.process-cta .btn:focus,
.news-blog-cta .btn-outline:focus,
.faq-cta .btn:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Loading states */
.process-section.loading .process-step,
.news-blog-section.loading .news-blog-card,
.faq-section.loading .faq-item {
  animation: none;
  opacity: 0.5;
}

/* Success states */
.process-step.success,
.news-blog-card.success,
.faq-item.success {
  animation: successPulse 0.6s ease;
}

@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* =========================
   Contact CTA Section Styles
   ========================= */
.contact-cta-section {
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.contact-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23F4A300" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 163, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 3;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
}

.cta-badge i {
  font-size: 0.75rem;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 1.25rem;
  color: var(--color-gray-300);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  font-weight: 500;
  font-size: 1rem;
}

.cta-feature i {
  color: var(--color-gold);
  font-size: 1.125rem;
}

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

.cta-btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  color: var(--color-white);
  border: none;
  box-shadow: var(--shadow-medium);
}

.cta-btn.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.cta-btn.btn-primary:hover::before {
  left: 100%;
}

.cta-btn.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-gold);
  position: relative;
  overflow: hidden;
}

.cta-btn.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-btn.btn-outline:hover {
  color: var(--color-black);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.cta-btn.btn-outline:hover::before {
  left: 0;
}

.cta-btn svg,
.cta-btn i {
  transition: transform 0.3s ease;
}

.cta-btn:hover svg,
.cta-btn:hover i {
  transform: translateX(5px);
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gray-300);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: var(--color-gold);
}

.contact-item i {
  color: var(--color-gold);
  font-size: 1.125rem;
}

/* =========================
   Process Timeline Line Fix
   ========================= */
/* Timeline line removed */

.process-timeline::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, transparent 0%, rgba(244, 163, 0, 0.1) 50%, transparent 100%);
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 4px;
}

/* Enhanced step number styling */
.step-number {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.75rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(244, 163, 0, 0.4);
  border: 4px solid var(--color-white);
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(244, 163, 0, 0.6);
}

/* Enhanced step content styling */
.step-content {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  width: calc(50% - 4rem);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.process-step:hover .step-content {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: var(--color-gold);
}

/* Enhanced step icon styling */
.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(244, 163, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.process-step:hover .step-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 6px 25px rgba(244, 163, 0, 0.5);
}

.process-step:hover .step-icon::before {
  left: 100%;
}

/* Enhanced step features styling */
.step-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-body);
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.step-features li:hover {
  color: var(--color-gold);
  transform: translateX(5px);
}

.step-features li i {
  color: var(--color-gold);
  margin-right: 1rem;
  font-size: 1rem;
  width: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-features li:hover i {
  transform: scale(1.2);
}

/* Enhanced step duration styling */
.step-duration {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 15px;
  margin-top: 1.5rem;
  border-left: 4px solid var(--color-gold);
  transition: all 0.3s ease;
}

.process-step:hover .step-duration {
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  color: var(--color-white);
  transform: translateX(5px);
}

.step-duration i {
  color: var(--color-gold);
  margin-right: 0.75rem;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.process-step:hover .step-duration i {
  color: var(--color-white);
}

/* =========================
   Responsive Styles for CTA
   ========================= */
@media (max-width: 992px) {
  .contact-cta-section {
    padding: 1rem 0;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .cta-description {
    font-size: 1.125rem;
  }
  
  .cta-features {
    gap: 1.5rem;
  }
  
  .cta-actions {
    gap: 1rem;
  }
  
  .cta-contact-info {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-cta-section {
    padding: 1rem 0;
  }
  
  .contact-cta-container {
    padding: 0 1rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .cta-contact-info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-cta-section {
    padding: 1rem 0;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .cta-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* =========================
   Animation for CTA
   ========================= */
.cta-content {
  animation: fadeInUp 0.8s ease forwards;
}

.cta-badge {
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.cta-title {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.cta-description {
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.cta-features {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.cta-actions {
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.cta-contact-info {
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Focus states for accessibility */
.cta-btn:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.contact-item:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* =========================
   Enhanced Responsive Design
   ========================= */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .hero-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .section-header {
    max-width: 900px;
  }
  
  .leaders-container,
  .services-container,
  .why-choose-container,
  .awards-container,
  .success-stories-container,
  .insights-container,
  .process-container,
  .news-blog-container,
  .faq-container {
    max-width: 1400px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .news-blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 2;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .news-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-step {
    flex-direction: column !important;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .step-content {
    width: 100%;
    margin-top: 2rem;
  }
  
  .step-number {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 1rem;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .hero-section {
    padding: 1rem 2rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .leaders-grid,
  .services-grid,
  .why-choose-grid,
  .awards-grid,
  .stories-grid,
  .insights-grid,
  .news-blog-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .leader-image-container {
    height: 300px;
  }
  
  .service-card,
  .why-card,
  .award-card,
  .story-card,
  .insight-card,
  .news-blog-card {
    padding: 2rem;
  }
  
  .process-step {
    flex-direction: column !important;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .step-content {
    width: 100%;
    margin-top: 2rem;
    padding: 2rem;
  }
  
  .step-number {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 1rem;
  }
  
  .projects-carousel {
    margin: 0 -1rem;
  }
  
  .project-slide {
    padding: 0 1rem;
  }
  
  .carousel-prev,
  .carousel-next {
    display: none;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .hero-section {
    padding: 1rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .section-description {
    font-size: 0.95rem;
  }
  
  .leaders-grid,
  .services-grid,
  .why-choose-grid,
  .awards-grid,
  .stories-grid,
  .insights-grid,
  .news-blog-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .leader-image-container {
    height: 250px;
  }
  
  .service-card,
  .why-card,
  .award-card,
  .story-card,
  .insight-card,
  .news-blog-card {
    padding: 1.5rem;
  }
  
  .service-icon,
  .why-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .process-step {
    flex-direction: column !important;
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .step-content {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.5rem;
  }
  
  .step-number {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .projects-carousel {
    margin: 0 -0.5rem;
  }
  
  .project-slide {
    padding: 0 0.5rem;
  }
  
  .carousel-prev,
  .carousel-next {
    display: none;
  }
  
  .testimonials-section {
    padding: 1rem 1rem;
  }
  
  .testimonials-section .container {
    padding: 0;
    max-width: 100%;
  }
  
  .testimonials-section .relative {
    position: relative;
    max-width: 100%;
  }
  
  .testimonials-section .max-w-6xl {
    max-width: 100% !important;
  }
  
  .testimonials-section .text-center {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .testimonials-section .text-4xl {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .testimonials-section .text-lg {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .testimonials-section .max-w-2xl {
    max-width: 100%;
  }
  
  .testimonials-section .max-w-6xl {
    max-width: 100%;
  }
  
  .clients-carousel {
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  
  .clients-carousel.overflow-hidden {
    overflow: visible !important;
  }
  
  .feedback-track {
    gap: 0;
    flex-wrap: nowrap;
    width: 100%;
  }
  
  /* Force single column layout on mobile */
  .feedback-track .feedback-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .feedback-card {
    min-width: 100% !important;
    width: 100% !important;
    padding: 0 0.5rem;
    flex-shrink: 0;
  }
  
  /* Override Tailwind responsive classes */
  .feedback-card.min-w-full,
  .feedback-card.sm\:min-w-\[50\%\],
  .feedback-card.lg\:min-w-\[33\.333\%\] {
    min-width: 100% !important;
    width: 100% !important;
  }
  
  .feedback-content {
    padding: 1.25rem;
    height: auto;
    min-height: 180px;
    margin: 0;
  }
  
  .feedback-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .quote-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .client-info {
    margin-top: 0.75rem;
    flex-direction: row;
    align-items: center;
  }
  
  .client-info .w-12 {
    width: 2.5rem;
    min-width: 2.5rem;
  }
  
  .client-info .h-12 {
    height: 2.5rem;
  }
  
  .client-info h4 {
    font-size: 0.95rem;
    margin: 0;
  }
  
  .client-info p {
    font-size: 0.8rem;
    margin: 0;
  }
  
  .carousel-btn {
    display: none !important;
  }
  
  .testimonials-section .flex {
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
  }
  
  .testimonials-section .relative {
    position: relative;
  }
  
  .testimonials-section .absolute {
    position: absolute;
  }
  
  .contact-cta-section {
    padding: 1rem 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-btn {
    width: 100%;
  }
}

/* Mobile Small (375px - 575px) */
@media (max-width: 575px) and (min-width: 375px) {
  .hero-section {
    padding: 1rem 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-text {
    font-size: 0.95rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-description {
    font-size: 0.9rem;
  }
  
  .leaders-grid,
  .services-grid,
  .why-choose-grid,
  .awards-grid,
  .stories-grid,
  .insights-grid,
  .news-blog-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .leader-image-container {
    height: 200px;
  }
  
  .service-card,
  .why-card,
  .award-card,
  .story-card,
  .insight-card,
  .news-blog-card {
    padding: 1rem;
  }
  
  .service-icon,
  .why-icon {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
  
  .process-step {
    flex-direction: column !important;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .step-content {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
  }
  
  .step-number {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 1rem;
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
  
  .step-icon {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
  
  .projects-carousel {
    margin: 0;
  }
  
  .project-slide {
    padding: 0;
  }
  
  .carousel-prev,
  .carousel-next {
    display: none;
  }
  
  .testimonials-section {
    padding: 1rem 1rem;
  }
  
  .testimonials-section .text-4xl {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .testimonials-section .text-lg {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .testimonials-section .text-center {
    margin-bottom: 1rem;
  }
  
  .clients-carousel {
    margin: 0;
    padding: 0;
  }
  
  /* Force single column layout on small mobile */
  .feedback-track .feedback-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .feedback-card {
    min-width: 100% !important;
    width: 100% !important;
    padding: 0 0.25rem;
  }
  
  /* Override Tailwind responsive classes for small screens */
  .feedback-card.min-w-full,
  .feedback-card.sm\:min-w-\[50\%\],
  .feedback-card.lg\:min-w-\[33\.333\%\] {
    min-width: 100% !important;
    width: 100% !important;
  }
  
  .feedback-content {
    padding: 1rem;
    min-height: 160px;
  }
  
  .feedback-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
  
  .quote-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .client-info {
    margin-top: 0.5rem;
  }
  
  .client-info .w-12 {
    width: 2rem;
    min-width: 2rem;
  }
  
  .client-info .h-12 {
    height: 2rem;
  }
  
  .client-info h4 {
    font-size: 0.9rem;
  }
  
  .client-info p {
    font-size: 0.75rem;
  }
  
  .carousel-btn {
    display: none !important;
  }
  
  .testimonials-section .flex {
    margin-top: 1rem;
    gap: 0.25rem;
  }
  
  .dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
  }
  
  .contact-cta-section {
    padding: 1rem 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cta-contact-info {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Mobile Extra Small (320px - 374px) */
@media (max-width: 374px) {
  .hero-section {
    padding: 1rem 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-text {
    font-size: 0.9rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-description {
    font-size: 0.85rem;
  }
  
  .leaders-grid,
  .services-grid,
  .why-choose-grid,
  .awards-grid,
  .stories-grid,
  .insights-grid,
  .news-blog-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .leader-image-container {
    height: 180px;
  }
  
  .service-card,
  .why-card,
  .award-card,
  .story-card,
  .insight-card,
  .news-blog-card {
    padding: 0.75rem;
  }
  
  .service-icon,
  .why-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .process-step {
    flex-direction: column !important;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .step-content {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem;
  }
  
  .step-number {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 0.75rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .projects-carousel {
    margin: 0;
  }
  
  .project-slide {
    padding: 0;
  }
  
  .carousel-prev,
  .carousel-next {
    display: none;
  }
  
  .testimonials-section {
    padding: 1rem 1rem;
  }
  
  .feedback-card {
    min-width: 100%;
  }
  
  .carousel-btn {
    display: none;
  }
  
  .contact-cta-section {
    padding: 1rem 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cta-btn {
    width: 100%;
    padding: 0.75rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cta-contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1rem;
  }
  
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .navbar-collapse.show {
    left: 0;
  }
  
  .navbar-links {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .nav-link {
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover,
  .nav-link.active {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
  }
  
  .contact-link {
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 25px;
    padding: 1rem 2rem;
    margin-top: 1rem;
  }
  
  .contact-link:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
  }
  
  .navbar-toggler {
    display: block;
  }
  
  .navbar-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-heading);
    cursor: pointer;
    z-index: 1001;
  }
}

/* Enhanced Footer Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-info,
  .footer-links,
  .footer-contact,
  .footer-social {
    padding: 0;
  }
  
  .footer-links a,
  .footer-contact a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .footer-social a {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Enhanced Stats Card Responsive */
@media (max-width: 768px) {
  .stats-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 2rem;
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.875rem;
  }
}

/* Enhanced Project Carousel Responsive */
@media (max-width: 768px) {
  .projects-carousel {
    overflow: hidden;
    margin: 0 -1rem;
  }
  
  .projects-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 0;
  }
  
  .project-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 0.5rem;
  }
  
  .project-card {
    margin: 0;
    width: 100%;
  }
  
  .project-overlay {
    padding: 1rem;
  }
  
  .project-overlay h3 {
    font-size: 1.125rem;
  }
  
  .project-overlay ul {
    font-size: 0.875rem;
  }
  
  .carousel-prev,
  .carousel-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .projects-carousel {
    margin: 0 -0.5rem;
  }
  
  .project-slide {
    padding: 0 0.25rem;
  }
  
  .project-overlay {
    padding: 0.75rem;
  }
  
  .project-overlay h3 {
    font-size: 1rem;
  }
  
  .project-overlay ul {
    font-size: 0.8rem;
  }
}

/* Enhanced FAQ Responsive */
@media (max-width: 768px) {
  .faq-question {
    padding: 1rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    padding-right: 2rem;
  }
  
  .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem;
  }
  
  .faq-answer p,
  .faq-answer li {
    font-size: 0.9rem;
  }
}

/* Enhanced Contact CTA Responsive */
@media (max-width: 768px) {
  .contact-cta-section {
    background-attachment: scroll;
    padding: 1rem 1rem;
  }
  
  .contact-cta-container {
    padding: 0;
  }
  
  .cta-content {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .cta-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .cta-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .cta-feature {
    text-align: center;
    padding: 0.5rem 0;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .cta-btn {
    width: auto;
    max-width: 220px;
    margin: 0 auto;
    justify-content: center;
    padding: 0.75rem 1.25rem;
  }
  
  .cta-contact-info {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin-top: 2rem;
  }
  
  .contact-item {
    padding: 0.75rem 0;
  }
}

@media (max-width: 480px) {
  .contact-cta-section {
    padding: 1rem 1rem;
  }
  
  .cta-content {
    padding: 1.5rem 0.75rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 0.9rem;
  }
  
  .cta-features {
    gap: 0.5rem;
  }
  
  .cta-actions {
    gap: 0.75rem;
  }
  
  .cta-btn {
    max-width: 180px;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
  
  .cta-contact-info {
    gap: 0.75rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
}

/* Enhanced Scroll Indicator Responsive */
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 1rem;
  }
  
  .mouse {
    width: 25px;
    height: 40px;
  }
  
  .wheel {
    width: 3px;
    height: 8px;
  }
  
  .arrow-down {
    width: 20px;
    height: 20px;
  }
}

/* Enhanced Section Spacing */
@media (max-width: 768px) {
  .leadership-section,
  .services-section,
  .why-choose-section,
  .awards-section,
  .success-stories-section,
  .insights-section,
  .process-section,
  .news-blog-section,
  .contact-cta-section,
  .faq-section {
    padding: 1rem 1rem;
  }
  
  .section-header {
    margin-bottom: 1rem !important;
  }
  
  .section-title {
    margin-bottom: 1rem;
  }
  
  .section-description {
    margin-bottom: 2rem;
  }
}

/* Enhanced Button Responsive */
@media (max-width: 768px) {
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 20px;
    width: auto;
    max-width: 200px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    min-height: 44px;
  }
  
  .btn svg {
    width: 18px;
    height: 18px;
  }
  
  .btn-primary,
  .btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }
  
  .hero-actions .btn {
    width: auto;
    max-width: 220px;
    padding: 0.75rem 1.5rem;
  }
  
  .services-cta .btn,
  .projects-cta .btn,
  .why-choose-cta .btn,
  .process-cta .btn,
  .news-blog-cta .btn,
  .faq-cta .btn {
    width: auto;
    max-width: 180px;
    padding: 0.7rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    width: auto;
    max-width: 160px;
    min-height: 40px;
  }
  
  .btn svg {
    width: 16px;
    height: 16px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: auto;
    max-width: 200px;
    padding: 0.7rem 1.25rem;
  }
  
  .services-cta .btn,
  .projects-cta .btn,
  .why-choose-cta .btn,
  .process-cta .btn,
  .news-blog-cta .btn,
  .faq-cta .btn {
    max-width: 150px;
    padding: 0.6rem 1rem;
  }
}

/* Enhanced Image Responsive */
@media (max-width: 768px) {
  .hero-image img,
  .leader-image,
  .project-image img,
  .story-image img,
  .news-image img {
    border-radius: 10px;
  }
  
  .image-wrapper {
    border-radius: 10px;
    overflow: hidden;
  }
}

/* Enhanced Card Hover Effects for Touch Devices */
@media (hover: none) and (pointer: coarse) {
  .leader-card:hover,
  .service-card:hover,
  .why-card:hover,
  .award-card:hover,
  .story-card:hover,
  .insight-card:hover,
  .news-blog-card:hover,
  .project-card:hover {
    transform: none;
  }
  
  .leader-card:active,
  .service-card:active,
  .why-card:active,
  .award-card:active,
  .story-card:active,
  .insight-card:active,
  .news-blog-card:active,
  .project-card:active {
    transform: scale(0.98);
  }
}

/* Enhanced Focus States for Accessibility */
@media (max-width: 768px) {
  .nav-link:focus,
  .btn:focus,
  .faq-question:focus,
  .carousel-btn:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
  }
  
  .navbar-toggler:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
    border-radius: 4px;
  }
}

/* Enhanced Loading States */
@media (max-width: 768px) {
  .loading {
    opacity: 0.7;
    pointer-events: none;
  }
  
  .loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--color-gold);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
  }
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Print Styles */
@media print {
  .navbar,
  .footer,
  .scroll-indicator,
  .carousel-prev,
  .carousel-next,
  .btn {
    display: none !important;
  }
  
  .hero-section,
  .leadership-section,
  .services-section,
  .why-choose-section,
  .awards-section,
  .success-stories-section,
  .insights-section,
  .process-section,
  .news-blog-section,
  .faq-section,
  .contact-cta-section {
    page-break-inside: avoid;
    margin-bottom: 2rem;
  }
  
  .section-title {
    color: #000 !important;
    font-size: 1.5rem !important;
  }
  
  .section-description {
    color: #333 !important;
  }
}

/* =========================
   Testimonials Mobile Fixes
   ========================= */

/* Override Tailwind classes for mobile responsiveness */
@media (max-width: 768px) {
  /* Force single column layout */
  .testimonials-section .feedback-card,
  .testimonials-section .feedback-card.min-w-full,
  .testimonials-section .feedback-card.sm\:min-w-\[50\%\],
  .testimonials-section .feedback-card.lg\:min-w-\[33\.333\%\] {
    min-width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  /* Container fixes */
  .testimonials-section .container {
    padding: 0 1rem !important;
    max-width: 100% !important;
  }
  
  .testimonials-section .max-w-6xl {
    max-width: 100% !important;
  }
  
  /* Carousel fixes */
  .testimonials-section .clients-carousel {
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
  }
  
  .testimonials-section .relative {
    position: relative !important;
  }
  
  .testimonials-section .feedback-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: 100% !important;
  }
  
  /* Content fixes */
  .testimonials-section .feedback-content {
    padding: 1.25rem !important;
    margin: 0 0.5rem !important;
  }
  
  /* Show navigation arrows but position them properly */
  .testimonials-section .carousel-btn {
    display: flex !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    background: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
  }
  
  .testimonials-section .carousel-btn.prev-btn {
    left: 10px !important;
  }
  
  .testimonials-section .carousel-btn.next-btn {
    right: 10px !important;
  }
  
  .testimonials-section .carousel-btn:hover {
    background: var(--color-gold) !important;
    color: white !important;
  }
  
  .testimonials-section .carousel-btn svg {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (max-width: 480px) {
  /* Extra small screen fixes */
  .testimonials-section .feedback-card,
  .testimonials-section .feedback-card.min-w-full,
  .testimonials-section .feedback-card.sm\:min-w-\[50\%\],
  .testimonials-section .feedback-card.lg\:min-w-\[33\.333\%\] {
    min-width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .testimonials-section .container {
    padding: 0 0.75rem !important;
  }
  
  .testimonials-section .feedback-content {
    padding: 1rem !important;
    margin: 0 0.25rem !important;
  }
  
  .testimonials-section .text-4xl {
    font-size: 1.5rem !important;
  }
  
  .testimonials-section .text-lg {
    font-size: 0.85rem !important;
  }
  
  /* Show navigation arrows on small mobile too */
  .testimonials-section .carousel-btn {
    display: flex !important;
    width: 35px !important;
    height: 35px !important;
  }
  
  .testimonials-section .carousel-btn svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0.5rem 1rem;
    min-height: 48px;
  }
  .navbar-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
  }
  .navbar-logo-img {
    height: 28px;
    max-width: 120px;
  }
  .navbar-toggler {
    display: flex;
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    padding: 0.3rem;
    background: rgba(244,163,0,0.07);
    box-shadow: 0 1px 4px rgba(244,163,0,0.07);
  }
  .navbar-toggler-icon {
    width: 18px;
    height: 2px;
  }
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    width: 18px;
    height: 2px;
  }
  .navbar-close-btn {
    font-size: 1.3rem;
    top: 0.4rem;
    right: 0.4rem;
    padding: 0.1rem 0.3rem;
  }
  .nav-link {
    font-size: 0.97rem;
    padding: 0.7rem 0.9rem;
    min-height: 40px;
  }
  .contact-link {
    font-size: 0.97rem;
    padding: 0.7rem 1rem !important;
    min-height: 40px;
  }
  .social-link {
    font-size: 1.1rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

/* --- Responsive Navbar Fix --- */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0.5rem 1rem;
    min-height: 56px;
    position: relative;
    justify-content: center;
  }
  .navbar-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
  }
  .navbar-logo-img {
    height: 32px;
    max-width: 120px;
  }
  .navbar-toggler {
    display: flex !important;
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: none;
    box-shadow: none;
    z-index: 1002;
  }
  .navbar-links,
  .contact-link {
    display: none !important;
  }
  .navbar-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    flex-direction: column;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    transition: left 0.3s, opacity 0.3s;
    box-shadow: 2px 0 16px rgba(0,0,0,0.08);
    overflow-y: auto;
  }
  .navbar-mobile-menu.open {
    display: flex;
    left: 0;
    opacity: 1;
  }
  .navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.18);
    z-index: 1500;
    transition: opacity 0.2s;
  }
  .navbar-overlay.open {
    display: block;
    opacity: 1;
  }
  body {
    overflow-x: hidden;
  }
}
@media (min-width: 769px) {
  .navbar-toggler,
  .navbar-mobile-menu,
  .navbar-overlay {
    display: none !important;
  }
  .navbar-links,
  .contact-link {
    display: flex !important;
  }
}
/* --- End Responsive Navbar Fix --- */

@media (max-width: 768px) {
  .navbar-close-btn {
    display: block !important;
    position: absolute !important;
    top: 0.7rem !important;
    right: 0.7rem !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 1.7rem !important;
    line-height: 30px !important;
    color: #222 !important;
    background: #fff !important;
    border: 2px solid #F4A300 !important;
    border-radius: 50% !important;
    z-index: 3000 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10) !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }
  .navbar-mobile-menu {
    padding-top: 3.2rem !important;
  }
}

@media (max-width: 480px) {
  .navbar-close-btn {
    top: 0.4rem !important;
    right: 0.4rem !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 1.3rem !important;
    line-height: 26px !important;
    border-width: 2px !important;
  }
  .navbar-mobile-menu {
    padding-top: 2.5rem !important;
  }
}

.navbar-desktop .btn,
.navbar-mobile .btn,
.mobile-btn {
  font-size: 0.95rem;
  padding: 0.35rem 1rem;
  min-height: 32px;
  min-width: 90px;
  border-radius: var(--radius-sm);
}

@media (max-width: 992px) {
  .navbar-mobile .btn,
  .mobile-btn {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    min-height: 38px;
    min-width: 100px;
  }
}

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

/* Who we are section */
.about-section {
  padding: 4rem 2rem;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.who-we-are .about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 450px;
  min-width: 300px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  margin: 1rem 0 2rem;
}

.intro-text {
  color: var(--text-body);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.value-item {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.value-item .icon {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.closing-text {
  color: var(--text-body);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-top: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent-color);
}

.about-image {
  flex: 1 1 450px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 2rem 1.5rem;
}

.overlay-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

/* Timeline */
.timeline {
  background: var(--bg-light);
  padding: 1rem 0;
}
.timeline h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.timeline-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.timeline-item {
  background: var(--bg-white);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  min-width: 220px;
  box-shadow: var(--shadow-sm);
}
.timeline-year {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.timeline-content {
  color: var(--text-body);
}

/* Core Values */
.core-values {
  background: var(--bg-white);
  padding: 1rem 0;
}
.core-values h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.value-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.value-card i {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.value-card p {
  color: var(--text-body);
  font-size: 1rem;
}
.value-card:hover {
  box-shadow: var(--shadow-md);
}

/* Our Team */
.our-team {
  background: var(--bg-light);
  padding: 3rem 0;
}
.our-team h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.team-image {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--primary-color);
}
.team-name {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}
.team-role {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.team-bio {
  color: var(--text-body);
  font-size: 0.98rem;
}
.team-card:hover {
  box-shadow: var(--shadow-md);
}

/* Culture & Work Environment */
.culture {
  background: var(--bg-white);
  padding: 3rem 0;
}
.culture h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.culture-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.culture-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
  list-style: none;
  padding: 0;
}
.culture-list li {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  color: var(--primary-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.culture-gallery {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.culture-gallery img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

/* Community Involvement / CSR */
.csr {
  background: var(--bg-light);
  padding: 3rem 0;
}
.csr h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.csr-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.csr-list li {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  color: var(--primary-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}
.csr-list li i {
  font-size: 1.2rem;
}

/* Careers */
.careers {
  background: var(--bg-white);
  padding: 3rem 0;
  text-align: center;
}
.careers h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.careers p {
  color: var(--text-body);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.careers .btn {
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
}

/* About CTA */
.about-cta {
  background: var(--primary-color);
  color: var(--color-white);
  padding: 3rem 0;
  text-align: center;
  border-radius: var(--radius-md);
  margin: 3rem auto 0 auto;
  max-width: 900px;
  box-shadow: var(--shadow-soft);
}
.about-cta h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}
.about-cta p {
  color: var(--color-white);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.about-cta .btn {
  background: var(--color-white);
  color: var(--primary-color);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}
.about-cta .btn:hover {
  background: var(--primary-dark);
  color: var(--color-white);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-section {
    padding: 2.5rem 0 2rem 0;
  }
  .who-we-are .about-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .about-image img {
    max-width: 260px;
  }
  .values-grid, .team-grid, .csr-list {
    gap: 1.2rem;
  }
  .culture-gallery img {
    width: 90px;
    height: 60px;
  }
}
@media (max-width: 600px) {
  .about-section {
    padding: 1.5rem 0 1rem 0;
  }
  .about-text h1, .core-values h2, .our-team h2, .culture h2, .csr h2, .careers h2 {
    font-size: 1.5rem;
  }
  .timeline-grid, .values-grid, .team-grid, .csr-list {
    flex-direction: column;
    gap: 1rem;
  }
  .timeline-item, .value-card, .team-card, .csr-list li {
    min-width: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .culture-gallery {
    flex-direction: column;
    gap: 0.5rem;
  }
  .culture-gallery img {
    width: 100%;
    height: 60px;
  }
  .about-cta {
    padding: 1.5rem 0;
    margin: 1.5rem auto 0 auto;
  }
}

/* --- Fix: Prevent content hidden by fixed navbar --- */
main, .hero-section, .leadership-section, .services-section, .projects-section, .testimonials-section, .why-choose-section, .awards-section, .success-stories-section, .insights-section, .process-section, .news-blog-section, .contact-cta-section, .faq-section {
  margin-top: 70px;
}

@media (max-width: 992px) {
  .navbar-container {
    justify-content: flex-start;
    position: relative;
    min-height: 56px;
  }
  .navbar-brand {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
    z-index: 1001;
  }
  .navbar-toggle {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    justify-content: flex-start;
    min-height: 48px;
    padding: 0.5rem 0.5rem;
  }
  .navbar-brand {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
  }
  .logo-img {
    height: 32px;
  }
  .navbar-toggle {
    left: 0.5rem;
  }
}

/* --- Navbar Flex Layout Fix for Mobile --- */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand, .navbar-toggle {
  position: static;
  margin: 0;
  left: auto;
  top: auto;
  transform: none;
}

@media (max-width: 992px) {
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
  }
  .navbar-toggle {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
  }
  .navbar-brand {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 56px;
    padding: 0.5rem 0.5rem;
  }
  .navbar-toggle {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
  }
  .navbar-brand {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
  }
}

/* --- Reverse Navbar: Logo Right, Menu Left --- */
.navbar-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 992px) {
  .navbar-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    min-height: 56px;
    padding: 0.5rem 0.5rem;
  }
}

@media (min-width: 993px) {
  /* Navbar: Logo left, menu right on large screens */
  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

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

/* === Modified Section Styles Without Image === */
.about-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 5rem 0;
  position: relative;
}

.text-content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.text-content {
  width: 100%;
}

.equal-subtitle {
  color: #bfa046;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
}

.equal-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: #bfa046;
}

.equal-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.equal-highlight {
  color: #bfa046;
  position: relative;
  display: inline-block;
}

.equal-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(191, 160, 70, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.equal-quote {
  margin: 1.5rem 0;
  padding: 0;
  border-left: none;
  background: transparent;
  position: relative;
}

.equal-quote p {
  font-style: italic;
  font-size: 1.25rem;
  color: #334155;
  line-height: 1.5;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.equal-main-content {
  margin-bottom: 2rem;
}

.equal-intro {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.equal-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.equal-values-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.equal-value-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.equal-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  padding: 0.875rem 2.5rem;
  border-radius: 2.5rem;
  background: linear-gradient(90deg, #bfa046 0%, #d4b95e 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(191, 160, 70, 0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .equal-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .text-content-container {
    padding: 0 1.5rem;
  }
  
  .equal-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .equal-title {
    font-size: 1.75rem;
  }
  
  .equal-quote p {
    font-size: 1.1rem;
    padding: 1.25rem;
  }
  
  .equal-values-cards {
    grid-template-columns: 1fr;
  }
  
  .equal-cta-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
}

/* === Enhanced Timeline Section === */
.enhanced-timeline {
  background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.timeline-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.timeline-subtitle {
  display: block;
  color: #bfa046;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
}

.timeline-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.timeline-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #bfa046 0%, #d4b95e 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.timeline-track {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
}

.timeline-progress {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(191, 160, 70, 0.2);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 2px;
}

.timeline-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #bfa046 0%, #d4b95e 100%);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 1s ease;
  border-radius: 2px;
}

.timeline-event {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 25%;
}

.timeline-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #bfa046;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.year {
  font-size: 1.1rem;
  font-weight: 700;
  color: #bfa046;
  margin-bottom: 0.25rem;
}

.badge-icon {
  width: 24px;
  height: 24px;
  color: #bfa046;
}

.badge-icon svg {
  width: 100%;
  height: 100%;
}

.timeline-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  width: 100%;
  max-width: 260px;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background: #fff;
  z-index: -1;
}

.timeline-event:hover .timeline-card {
  transform: translateY(5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.timeline-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.timeline-footer {
  text-align: center;
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
}

.future-text {
  font-size: 1.25rem;
  color: #334155;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.btn-timeline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 2.5rem;
  background: linear-gradient(90deg, #bfa046 0%, #d4b95e 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(191, 160, 70, 0.2);
  transition: all 0.3s ease;
}

.btn-timeline:hover {
  background: linear-gradient(90deg, #a78b3a 0%, #bfa046 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(191, 160, 70, 0.3);
}

.btn-timeline svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.btn-timeline:hover svg {
  transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .timeline-title {
    font-size: 2rem;
  }
  
  .timeline-card {
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .enhanced-timeline {
    padding: 3rem 0;
  }
  
  .timeline-track {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
  }
  
  .timeline-progress {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
  }
  
  .timeline-event {
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    margin-bottom: 2rem;
    align-items: flex-start;
  }
  
  .timeline-badge {
    margin-bottom: 0;
    margin-right: 1.5rem;
    flex-shrink: 0;
  }
  
  .timeline-card {
    max-width: 100%;
    text-align: left;
  }
  
  .timeline-card::before {
    top: 50%;
    left: -10px;
    transform: translateY(-50%) rotate(45deg);
  }
}

@media (max-width: 480px) {
  .timeline-title {
    font-size: 1.75rem;
  }
  
  .timeline-subtitle {
    font-size: 0.875rem;
  }
  
  .timeline-badge {
    width: 60px;
    height: 60px;
  }
  
  .year {
    font-size: 0.95rem;
  }
  
  .badge-icon {
    width: 18px;
    height: 18px;
  }
  
  .timeline-description {
    font-size: 0.95rem;
  }
  
  .future-text {
    font-size: 1.1rem;
  }
}

/* === Enhanced Core Values Styles === */
.enhanced-core-values {
  background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.values-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.core-values-subtitle {
  display: block;
  color: #bfa046;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
}

.core-values-subtitle::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 2rem;
  height: 2px;
  background: #bfa046;
}

.core-values-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.values-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #bfa046 0%, #d4b95e 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.core-value-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  z-index: 1;
}

.core-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(191, 160, 70, 0.1) 0%, rgba(191, 160, 70, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.core-value-card:hover, 
.core-value-card:focus {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.core-value-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 160, 70, 0.1);
  border-radius: 50%;
  color: #bfa046;
  transition: all 0.3s ease;
}

.core-value-card:hover .card-icon {
  transform: rotateY(180deg);
  background: #bfa046;
  color: #fff;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.card-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #bfa046;
  transition: width 0.3s ease;
}

.core-value-card:hover .card-title::after {
  width: 60px;
}

.card-text {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #bfa046 0%, #d4b95e 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.core-value-card:hover .card-accent {
  transform: scaleX(1);
}

.values-footer {
  text-align: center;
  margin-top: 4rem;
}

.values-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #bfa046;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.values-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #bfa046;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.values-cta:hover {
  color: #a78b3a;
}

.values-cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.values-cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.values-cta:hover svg {
  transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .core-values-title {
    font-size: 2.25rem;
  }
  
  .core-values-grid {
    gap: 2rem;
  }
  
  .core-value-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .enhanced-core-values {
    padding: 4rem 0;
  }
  
  .core-values-title {
    font-size: 1.75rem;
  }
  
  .core-values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 1.5rem;
  }
  
  .values-header {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  .core-values-title {
    font-size: 1.5rem;
  }
  
  .core-values-subtitle {
    font-size: 0.875rem;
  }
  
  .card-title {
    font-size: 1.25rem;
  }
  
  .card-text {
    font-size: 1rem;
  }
  
  .values-cta {
    font-size: 1rem;
  }
}

/* Team Section - 4 Columns */
.four-column-team {
  background: linear-gradient(135deg, #f9fafc 0%, #f0f4f8 100%);
  padding: 5rem 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

.section-intro {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}

.section-subtitle {
  display: block;
  color: #bfa046;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #bfa046 0%, #d4b95e 100%);
  margin: 0 auto;
  border-radius: 3px;
}

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

.team-member {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-photo-container {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-photo {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  justify-content: center;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: #bfa046;
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 14px;
  height: 14px;
}

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.member-position {
  color: #bfa046;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.member-bio {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
  padding: 0 1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  background: transparent;
  color: #bfa046;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #bfa046;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #bfa046;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(191, 160, 70, 0.3);
}

.cta-button svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .team-grid-4col {
    gap: 1.25rem;
    padding: 0 1.5rem;
  }
  
  .member-photo-container {
    height: 240px;
  }
}

@media (max-width: 992px) {
  .team-grid-4col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .member-photo-container {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .four-column-team {
    padding: 4rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .team-grid-4col {
    padding: 0 1rem;
  }
}

@media (max-width: 576px) {
  .team-grid-4col {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .member-photo-container {
    height: 320px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

/* Premium Quality Assurance Styles */
.quality-assurance-section {
  background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
  padding: 5rem 1rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.section-subtitle {
  display: block;
  color: #bfa046;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-intro {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #bfa046 0%, #d4b95e 100%);
  margin: 1.5rem auto 0;
  border-radius: 3px;
}

.quality-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.quality-gallery, .quality-content {
  flex: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-img-container {
  position: relative;
  width: 100%;
  height: 100%;
}

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

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

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .img-overlay {
  transform: translateY(0);
}

.overlay-text {
  font-weight: 600;
  font-size: 1.1rem;
}

.overlay-icon {
  font-size: 1.25rem;
}

.quality-content {
  background: white;
  padding: 3rem;
}

.profile-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  position: relative;
}

.profile-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 3px;
  background: #bfa046;
}

.profile-content {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.profile-content p {
  margin-bottom: 1rem;
}

.quality-checklist {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.quality-checklist li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.quality-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: #bfa046;
  border-radius: 50%;
}

.expertise-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.expertise-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 3px solid #bfa046;
}

.expertise-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.expertise-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.expertise-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
}

.engineer-quote {
  background: #fff9e6;
  border-left: 4px solid #bfa046;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-top: 2rem;
  position: relative;
}

.engineer-quote::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 3rem;
  color: rgba(191, 160, 70, 0.1);
  font-family: serif;
  line-height: 1;
}

.engineer-quote p {
  font-style: italic;
  color: #334155;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.engineer-quote footer {
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.9rem;
  color: #64748b;
  text-align: right;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .quality-container {
    flex-direction: column;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    height: 200px;
  }
  
  .quality-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
  }
  
  .expertise-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-intro {
    font-size: 1.1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  
  .quality-content {
    padding: 1.5rem;
  }
}

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

/* Enhanced Services Page Styles */
.emp-services-page {
  padding: 6rem 0;
  background-color: var(--color-white);
  position: relative;
}

.emp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.emp-services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.emp-section-badge {
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.emp-section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-black);
  margin-top: 1rem;
  line-height: 1.2;
}

.emp-section-subtitle {
  color: var(--color-gray-600);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.6;
}

.emp-divider {
  width: 8rem;
  height: 0.3rem;
  background-color: var(--color-primary);
  margin: 2rem auto 0;
  border-radius: 2px;
}

.emp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.emp-service-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
}

.emp-service-card:hover {
  transform: translateY(-0.75rem);
  box-shadow: var(--shadow-xl);
}

.emp-card-header {
  height: 16rem;
  background-size: cover;
  background-position: center;
  position: relative;
}

.emp-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
  transition: opacity 0.3s ease;
}

.emp-service-card:hover .emp-img-overlay {
  opacity: 0.9;
}

.emp-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem;
  color: var(--text-white);
  font-size: 1.75rem;
  font-weight: 800;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin: 0;
  line-height: 1.3;
}

.emp-card-body {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.emp-service-desc {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.emp-features-title {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.emp-features-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 0.2rem;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.emp-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.emp-feature-item {
  margin-bottom: 0.9rem;
  display: flex;
  align-items: flex-start;
}

.emp-feature-icon {
  color: var(--color-primary);
  margin-right: 0.9rem;
  margin-top: 0.15rem;
  font-size: 1.2rem;
}

.emp-feature-name {
  font-weight: 700;
  color: var(--color-black);
}

.emp-feature-desc {
  display: inline;
  color: var(--color-gray-700);
}

.emp-service-sublist {
  background: rgba(0,0,0,0.03);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}

.emp-service-sublist h4 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.emp-service-sublist ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 1.5rem;
}

.emp-service-sublist li {
  font-size: 0.95rem;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
  line-height: 1.5;
}

.emp-service-sublist li::before {
  content: '•';
  color: var(--color-primary);
  position: absolute;
  left: 0;
}

.emp-service-cta {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--text-white);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
  align-self: flex-start;
  text-align: center;
  width: 100%;
  border: 2px solid var(--color-primary);
}

.emp-service-cta:hover {
  background-color: transparent;
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Process Section */
.emp-process-section {
  background-color: var(--bg-light);
  padding: 4rem;
  border-radius: var(--radius-lg);
  margin-bottom: 6rem;
  text-align: center;
}

.emp-process-title {
  font-size: 2rem;
  color: var(--color-black);
  margin-bottom: 3rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.emp-process-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.25rem;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.emp-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.emp-process-step {
  position: relative;
  padding: 0 1rem;
}

.emp-step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0,0,0,0.05);
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.emp-step-title {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 1.5rem 0 0.75rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.emp-step-desc {
  color: var(--color-gray-700);
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

/* Why Choose Us */
.emp-why-choose {
  background-color: var(--bg-dark);
  color: var(--text-white);
  border-radius: var(--radius-xl);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
  background-image: url('images/texture-bg.png');
  background-blend-mode: overlay;
}

.emp-accent-circle {
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  background-color: var(--color-primary);
  opacity: 0.15;
  border-radius: 50%;
}

.emp-why-title {
  color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
}

.emp-why-intro {
  color: var(--color-gray-400);
  font-size: 1.15rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.emp-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.emp-reasons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.emp-reason-item {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}

.emp-reason-icon-container {
  background-color: var(--color-primary);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.emp-reason-item:hover .emp-reason-icon-container {
  transform: rotate(15deg) scale(1.1);
}

.emp-reason-icon {
  color: var(--text-white);
  font-size: 1rem;
}

.emp-reason-name {
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.emp-reason-desc {
  color: var(--color-gray-400);
  line-height: 1.6;
  font-size: 0.95rem;
}

.emp-stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  text-align: center;
}

.emp-stat-item {
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
}

.emp-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.emp-stat-label {
  color: var(--color-gray-400);
  font-size: 0.9rem;
  font-weight: 600;
}

.emp-why-cta {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.emp-about-link {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--text-white);
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--color-primary);
}

.emp-about-link:hover {
  background-color: transparent;
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.emp-contact-link {
  display: inline-block;
  background-color: transparent;
  color: var(--color-primary);
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--color-primary);
}

.emp-contact-link:hover {
  background-color: var(--color-primary);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .emp-section-title {
    font-size: 2.5rem;
  }
  
  .emp-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 992px) {
  .emp-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .emp-services-page {
    padding: 4rem 0;
  }
  
  .emp-section-title {
    font-size: 2.25rem;
  }
  
  .emp-section-subtitle {
    font-size: 1.1rem;
  }
  
  .emp-card-header {
    height: 14rem;
  }
  
  .emp-card-body {
    padding: 2rem;
  }
  
  .emp-process-section {
    padding: 3rem 2rem;
  }
  
  .emp-why-choose {
    padding: 4rem 2rem;
  }
  
  .emp-why-title {
    font-size: 2rem;
  }
  
  .emp-reasons-grid {
    grid-template-columns: 1fr;
  }
  
  .emp-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .emp-container {
    padding: 0 1.5rem;
  }
  
  .emp-section-title {
    font-size: 2rem;
  }
  
  .emp-services-grid {
    grid-template-columns: 1fr;
  }
  
  .emp-process-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .emp-process-step {
    padding: 0;
  }
  
  .emp-why-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .emp-about-link,
  .emp-contact-link {
    width: 100%;
  }
  
  .emp-service-sublist ul {
    columns: 1;
  }
  
  .emp-stats-container {
    grid-template-columns: 1fr;
  }
}

/* Our Projects Page */

/* Projects Section Styles */
.emp-projects-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
  position: relative;
}

.emp-projects-header {
  text-align: center;
  margin-bottom: 4rem;
}

.emp-projects-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--color-gray-200);
  flex-wrap: wrap;
}

.emp-projects-tab {
  background: transparent;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gray-600);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  margin: 0 0.5rem;
}

.emp-projects-tab:hover {
  color: var(--color-primary);
}

.emp-projects-tab.active {
  color: var(--color-primary);
  font-weight: 700;
}

.emp-projects-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px 3px 0 0;
}

.emp-projects-content {
  display: none;
}

.emp-projects-content.active {
  display: block;
}

.emp-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.emp-project-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.emp-project-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.emp-project-image {
  height: 250px !important;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (max-width: 768px) {
  .emp-project-image {
    height: 160px !important;
  }
}

@media (max-width: 576px) {
  .emp-project-image {
    height: 100px !important;
  }
}

.emp-project-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--color-primary);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

.emp-project-badge.completed {
  background-color: var(--color-success);
}

.emp-project-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.emp-project-card:hover .emp-project-overlay {
  opacity: 1;
}

.emp-project-view {
  color: var(--text-white);
  background-color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.emp-project-view:hover {
  background-color: var(--color-black);
  transform: translateY(-2px);
}

.emp-project-info {
  padding: 2rem;
}

.emp-project-title {
  font-size: 1.5rem;
  color: var(--color-black);
  margin-bottom: 1rem;
  font-weight: 700;
}

.emp-project-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

.emp-project-meta i {
  color: var(--color-primary);
  margin-right: 0.5rem;
}

.emp-project-progress {
  margin-bottom: 1.5rem;
}

.emp-progress-bar {
  height: 8px;
  background-color: var(--color-gray-200);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.emp-progress-fill {
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 4px;
}

.emp-progress-text {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  font-weight: 600;
}

.emp-project-desc {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.emp-project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.emp-project-stat {
  text-align: center;
  padding: 0.75rem;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
}

.emp-stat-value {
  display: block;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.emp-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-gray-600);
}

.emp-project-completion {
  margin-bottom: 1.5rem;
}

.emp-completion-date {
  font-size: 0.9rem;
  color: var(--color-success);
  font-weight: 600;
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(40, 167, 69, 0.1);
  border-radius: var(--radius-sm);
}

.emp-project-case-study {
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.emp-project-case-study:hover {
  background-color: var(--color-primary);
  color: var(--text-white);
}

.emp-projects-more {
  text-align: center;
  margin-top: 4rem;
}

/* Clients Section */
.emp-clients-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.emp-clients-title {
  font-size: 2rem;
  color: var(--color-black);
  margin-bottom: 1rem;
  font-weight: 700;
}

.emp-clients-subtitle {
  color: var(--color-gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.emp-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.emp-client-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

.emp-client-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.emp-client-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.emp-client-logo {
  width: 60px;
  height: 60px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.emp-client-info {
  flex-grow: 1;
}

.emp-client-name {
  font-size: 1.25rem;
  color: var(--color-black);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.emp-client-type {
  font-size: 0.85rem;
  color: var(--color-gray-600);
}

.emp-client-body {
  padding: 1.5rem;
}

.emp-client-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.emp-client-stat {
  text-align: center;
  padding: 0.75rem;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
}

.emp-stat-number {
  display: block;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.emp-client-testimonial {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  position: relative;
}

.emp-client-testimonial::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  font-size: 3rem;
  color: var(--color-primary);
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

.emp-client-testimonial p {
  position: relative;
  z-index: 1;
  color: var(--color-gray-800);
  font-style: italic;
  line-height: 1.6;
}

.emp-client-rating {
  margin-top: 1rem;
  color: var(--color-warning);
}

.emp-client-rating span {
  color: var(--color-gray-600);
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.emp-client-contact {
  text-align: center;
}

.emp-contact-name {
  display: block;
  font-weight: 600;
  color: var(--color-black);
}

.emp-contact-title {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gray-600);
}

.emp-clients-more {
  text-align: center;
  margin-top: 4rem;
}

.emp-view-all {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--text-white);
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.emp-view-all:hover {
  background-color: var(--color-black);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .emp-projects-grid,
  .emp-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .emp-projects-section {
    padding: 4rem 0;
  }
  
  .emp-project-stats,
  .emp-client-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .emp-project-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .emp-projects-grid,
  .emp-clients-grid {
    grid-template-columns: 1fr;
  }
  
  .emp-project-stats,
  .emp-client-stats {
    grid-template-columns: 1fr;
  }
  
  .emp-projects-tab {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    margin: 0 0.25rem;
  }
  
  .emp-project-info {
    padding: 1.5rem;
  }
}

/* --- Responsive Enhancements for All Pages --- */

/* Make project and client grids single column on small screens */
@media (max-width: 768px) {
  .emp-projects-grid,
  .emp-clients-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .emp-project-info,
  .emp-client-card {
    padding: 1rem !important;
  }
  .emp-project-title,
  .emp-clients-title {
    font-size: 1.2rem;
  }
  .emp-project-image {
    height: 160px;
  }
  .emp-client-header {
    padding: 1rem;
  }
  .emp-client-card {
    font-size: 0.95rem;
  }
  .emp-projects-section,
  .footer-container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .footer-section {
    margin-bottom: 1.5rem;
  }
  .footer-section.company-info {
    text-align: center;
  }
  .footer-section.quick-links ul,
  .footer-section.contact-info ul {
    padding-left: 0;
  }
  .footer-section.quick-links li,
  .footer-section.contact-info li {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .emp-project-title,
  .emp-clients-title {
    font-size: 1rem;
  }
  .emp-project-info,
  .emp-client-card {
    padding: 0.5rem !important;
  }
  .emp-project-image {
    height: 100px;
  }
  .emp-projects-section,
  .footer-container {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .footer-section {
    margin-bottom: 1rem;
  }
}

/* Make all images responsive */
img, .emp-project-image, .emp-client-logo {
  max-width: 100%;
  height: auto;
}

/* Navbar and footer stack vertically on mobile */
@media (max-width: 768px) {
  .navbar-desktop, .footer-container {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .navbar-desktop ul.nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-section {
    width: 100%;
  }
}

/* Buttons scale down on mobile */
@media (max-width: 576px) {
  .btn, .btn-primary, .btn-subscribe {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}

/* =========================
   We Deal In Section Styles
   ========================= */
.we-deal-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.we-deal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.we-deal-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.we-deal-container .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.we-deal-container .section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(244, 163, 0, 0.3);
}

.we-deal-container .section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.we-deal-container .section-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.sector-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(244, 163, 0, 0.1);
}

.sector-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--color-gold);
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  z-index: 1;
}

.sector-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.sector-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
}

.sector-status {
  background: rgba(244, 163, 0, 0.9);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.sector-content {
  padding: 2rem;
}

.sector-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.sector-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sector-location i {
  color: var(--color-gold);
  font-size: 1rem;
}

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

.detail-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.detail-item h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
}

.detail-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-item li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-item li i {
  color: var(--color-gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.sector-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.feature-tag {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(244, 163, 0, 0.3);
}

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

.we-deal-cta .btn {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(244, 163, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.we-deal-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(244, 163, 0, 0.4);
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-800) 100%);
}

.we-deal-cta .btn svg {
  transition: transform 0.3s ease;
}

.we-deal-cta .btn:hover svg {
  transform: translateX(5px);
}

/* Responsive Design for We Deal In Section */
@media (max-width: 1200px) {
  .sectors-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .we-deal-container .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .we-deal-section {
    padding: 4rem 0;
  }
  
  .sectors-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .we-deal-container .section-title {
    font-size: 2.5rem;
  }
  
  .we-deal-container .section-description {
    font-size: 1.1rem;
  }
  
  .sector-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .we-deal-container {
    padding: 0 1.5rem;
  }
  
  .we-deal-container .section-title {
    font-size: 2rem;
  }
  
  .we-deal-container .section-description {
    font-size: 1rem;
  }
  
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .sector-card {
    border-radius: 15px;
  }
  
  .sector-content {
    padding: 1.5rem;
  }
  
  .sector-name {
    font-size: 1.5rem;
  }
  
  .sector-image {
    height: 200px;
  }
  
  .we-deal-cta .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .we-deal-section {
    padding: 3rem 0;
  }
  
  .we-deal-container {
    padding: 0 1rem;
  }
  
  .we-deal-container .section-title {
    font-size: 1.75rem;
  }
  
  .we-deal-container .section-subtitle {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }
  
  .sector-content {
    padding: 1.25rem;
  }
  
  .sector-name {
    font-size: 1.25rem;
  }
  
  .sector-image {
    height: 180px;
  }
  
  .detail-item h4 {
    font-size: 1rem;
  }
  
  .detail-item li {
    font-size: 0.85rem;
  }
  
  .feature-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
  
  .we-deal-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 375px) {
  .we-deal-container .section-title {
    font-size: 1.5rem;
  }
  
  .sector-content {
    padding: 1rem;
  }
  
  .sector-name {
    font-size: 1.1rem;
  }
  
  .sector-image {
    height: 160px;
  }
  
  .we-deal-cta .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* =========================
   Contact Page Styles
   ========================= */
.contact-hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.contact-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-hero-content {
  max-width: 600px;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(244, 163, 0, 0.3);
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Contact Info Section */
.contact-info-section {
  padding: 6rem 0;
  background: var(--color-white);
}

.contact-info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(244, 163, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--color-gold);
}

.contact-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.contact-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-gold);
}

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

.office-avatar {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
}

.contact-badge {
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.contact-title {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info a,
.contact-info span {
  color: var(--text-heading);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* Contact Form Section */
.contact-form-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
}

.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-content {
  background: var(--color-white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(244, 163, 0, 0.3);
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.form-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.95rem;
}

.form-group label i {
  color: var(--color-gold);
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--color-gray-300);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(244, 163, 0, 0.1);
}

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

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-gray-300);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: bold;
}

.submit-btn {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  color: var(--color-white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(244, 163, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(244, 163, 0, 0.4);
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-800) 100%);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

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

.sidebar-card {
  background: var(--color-white);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(244, 163, 0, 0.1);
}

.sidebar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--color-gold);
}

.sidebar-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-white);
  font-size: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.sidebar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.map-content {
  max-width: 500px;
}

.map-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.map-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.map-detail i {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.map-detail h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.map-detail p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.map-embed {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-embed iframe {
  border-radius: 15px;
}

/* Contact FAQ Section */
.contact-faq-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
}

.contact-faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(244, 163, 0, 0.05);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0;
}

.faq-toggle {
  color: var(--color-gold);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 1200px) {
  .contact-hero-container {
    gap: 3rem;
  }
  
  .contact-form-container {
    gap: 3rem;
  }
  
  .map-container {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .contact-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-hero-title {
    font-size: 3rem;
  }
  
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 6rem 0 4rem;
  }
  
  .contact-hero-title {
    font-size: 2.5rem;
  }
  
  .contact-hero-description {
    font-size: 1.1rem;
  }
  
  .contact-hero-actions {
    justify-content: center;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-content {
    padding: 2rem;
  }
  
  .form-header h2 {
    font-size: 2rem;
  }
  
  .map-header h2 {
    font-size: 2rem;
  }
  
  .contact-info-section,
  .contact-form-section,
  .map-section,
  .contact-faq-section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .contact-hero-container,
  .contact-info-container,
  .contact-form-container,
  .map-container,
  .contact-faq-container {
    padding: 0 1rem;
  }
  
  .contact-hero-title {
    font-size: 2rem;
  }
  
  .contact-hero-description {
    font-size: 1rem;
  }
  
  .contact-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-form-content {
    padding: 1.5rem;
  }
  
  .form-header h2 {
    font-size: 1.75rem;
  }
  
  .map-header h2 {
    font-size: 1.75rem;
  }
  
  .contact-info-section,
  .contact-form-section,
  .map-section,
  .contact-faq-section {
    padding: 3rem 0;
  }
}

/* =========================
   Enhanced Privacy Page Styles
   ========================= */

/* Privacy Hero Section */
.privacy-hero-section {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-800) 100%);
  color: var(--color-white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.privacy-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(244,163,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.privacy-hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.privacy-hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease;
}

.privacy-hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--color-gray-300);
  animation: fadeInUp 1s ease 0.2s both;
}

.privacy-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244, 163, 0, 0.1);
  color: var(--color-gold);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(244, 163, 0, 0.3);
  animation: fadeInUp 1s ease 0.1s both;
}

.privacy-hero-label i {
  font-size: 1.1rem;
}

.privacy-hero-details {
  display: flex;
  gap: 2rem;
  animation: fadeInUp 1s ease 0.3s both;
}

.privacy-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray-400);
  font-size: 0.9rem;
}

.privacy-detail-item i {
  color: var(--color-gold);
}

.privacy-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease 0.4s both;
}

.privacy-icon-wrapper {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(244, 163, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.privacy-icon-wrapper i {
  font-size: 4rem;
  color: var(--color-white);
}

/* Privacy Content Section */
.privacy-content-section {
  background: var(--bg-light);
  padding: 4rem 0;
  min-height: 100vh;
}

.privacy-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
}

/* Privacy Sidebar */
.privacy-sidebar-nav {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.privacy-nav-menu {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.privacy-nav-menu h3 {
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-gold);
}

.privacy-nav-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-nav-items li {
  margin-bottom: 0.5rem;
}

.privacy-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-body);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.privacy-nav-link:hover,
.privacy-nav-link.active {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateX(5px);
}

.privacy-nav-link i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* Privacy Main Content */
.privacy-main-wrapper {
  background: var(--color-white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  min-height: 600px;
}

.privacy-content-block {
  margin-bottom: 4rem;
  scroll-margin-top: 100px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.privacy-content-block:last-child {
  margin-bottom: 0;
}

.privacy-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-light);
}

.privacy-block-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
}

.privacy-block-header h2 {
  color: var(--color-black);
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.privacy-block-body {
  margin-top: 1.5rem;
}

.privacy-block-body p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

/* Privacy Info Box */
.privacy-info-box {
  background: linear-gradient(135deg, rgba(244, 163, 0, 0.1) 0%, rgba(255, 211, 102, 0.1) 100%);
  border: 1px solid rgba(244, 163, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
}

.privacy-info-box i {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.privacy-info-box p {
  margin: 0;
  font-weight: 500;
}

/* Privacy Info Grid */
.privacy-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.privacy-info-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.privacy-info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-gold);
}

.privacy-item-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-white);
  font-size: 1.5rem;
}

.privacy-info-item h4 {
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-info-item p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Privacy Usage List */
.privacy-usage-list {
  margin: 2rem 0;
}

.privacy-usage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.privacy-usage-item:last-child {
  border-bottom: none;
}

.privacy-usage-item i {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.privacy-usage-item span {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.6;
}

/* Privacy Security Grid */
.privacy-security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.privacy-security-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.privacy-security-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.privacy-security-item i {
  color: var(--color-gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.privacy-security-item h4 {
  color: var(--color-black);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.privacy-security-item p {
  color: var(--text-body);
  font-size: 0.9rem;
  margin: 0;
}

/* Privacy Warning Box */
.privacy-warning-box {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
}

.privacy-warning-box i {
  color: #ff9800;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.privacy-warning-box p {
  margin: 0;
  font-weight: 500;
  color: var(--text-body);
}

/* Privacy Rights Grid */
.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.privacy-right-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.privacy-right-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-gold);
}

.privacy-right-item i {
  color: var(--color-gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.privacy-right-item h4 {
  color: var(--color-black);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.privacy-right-item p {
  color: var(--text-body);
  font-size: 0.9rem;
  margin: 0;
}

/* Privacy Notification Box */
.privacy-notification-box {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
}

.privacy-notification-box i {
  color: #4caf50;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.privacy-notification-box p {
  margin: 0;
  font-weight: 500;
  color: var(--text-body);
}

/* Privacy Contact Card */
.privacy-contact-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid var(--border-light);
}

.privacy-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.privacy-contact-item:last-child {
  border-bottom: none;
}

.privacy-contact-item i {
  color: var(--color-gold);
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
}

.privacy-contact-item h4 {
  color: var(--color-black);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.privacy-contact-item p,
.privacy-contact-item a {
  color: var(--text-body);
  margin: 0;
  text-decoration: none;
}

.privacy-contact-item a:hover {
  color: var(--color-gold);
}

/* Privacy Actions */
.privacy-actions-wrapper {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-light);
}

.privacy-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--color-black);
  color: var(--color-gold);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.privacy-back-btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.privacy-back-btn i {
  font-size: 1.1rem;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .privacy-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .privacy-sidebar-nav {
    position: static;
    order: 2;
  }
  
  .privacy-nav-menu {
    position: sticky;
    top: 100px;
  }
}

@media (max-width: 768px) {
  .privacy-hero-section {
    padding: 100px 0 60px;
  }
  
  .privacy-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .privacy-hero-text h1 {
    font-size: 2.5rem;
  }
  
  .privacy-hero-text p {
    font-size: 1.1rem;
  }
  
  .privacy-hero-details {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .privacy-icon-wrapper {
    width: 150px;
    height: 150px;
  }
  
  .privacy-icon-wrapper i {
    font-size: 3rem;
  }
  
  .privacy-main-wrapper {
    padding: 2rem;
  }
  
  .privacy-block-header h2 {
    font-size: 1.75rem;
  }
  
  .privacy-info-grid,
  .privacy-security-grid,
  .privacy-rights-grid {
    grid-template-columns: 1fr;
  }
  
  .privacy-nav-menu {
    position: static;
  }
}

@media (max-width: 480px) {
  .privacy-hero-wrapper {
    padding: 0 1rem;
  }
  
  .privacy-hero-text h1 {
    font-size: 2rem;
  }
  
  .privacy-hero-text p {
    font-size: 1rem;
  }
  
  .privacy-hero-details {
    flex-direction: column;
    gap: 1rem;
  }
  
  .privacy-content-wrapper {
    padding: 0 1rem;
  }
  
  .privacy-main-wrapper {
    padding: 1.5rem;
  }
  
  .privacy-block-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .privacy-block-header h2 {
    font-size: 1.5rem;
  }
  
  .privacy-info-item,
  .privacy-security-item,
  .privacy-right-item {
    padding: 1.5rem 1rem;
  }
  
  .privacy-back-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Smooth scrolling for navigation links */
html {
  scroll-behavior: smooth;
}

/* Active state for navigation */
.privacy-nav-link.active {
  background: var(--color-gold);
  color: var(--color-white);
}

/* Hover effects for interactive elements */
.privacy-content-block:hover .privacy-block-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.privacy-info-item:hover .privacy-item-icon,
.privacy-security-item:hover i,
.privacy-right-item:hover i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}