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

/* CSS Variables for Core Design System */
:root {
  --primary-color: #0c2340;       /* Deep Navy Blue */
  --primary-light: #15305b;      /* Cobalt Blue */
  --primary-rgb: 12, 35, 64;
  --accent-color: #ff6f3c;        /* Logistic Orange */
  --accent-hover: #e04f1a;
  --text-dark: #1e293b;          /* Charcoal text */
  --text-muted: #64748b;         /* Muted gray text */
  --bg-light: #f8fafc;           /* Light gray bg */
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-premium: 0 20px 25px -5px rgba(12, 35, 64, 0.08), 0 10px 10px -5px rgba(12, 35, 64, 0.04);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
}

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

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

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

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

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; position: relative; margin-bottom: 2.5rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1.25rem; font-weight: 400; color: var(--text-muted); }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }

/* Heading Accent Line */
h2.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.75rem;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

h2.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

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

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

.grid {
  display: grid;
  gap: 2rem;
}

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

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-dark {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.section-dark h2, .section-dark h3 {
  color: var(--bg-white);
}

/* Button & CTA System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.95rem;
}

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

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 111, 60, 0.2);
}

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

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

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

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

/* Top bar details */
.top-bar {
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

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

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

/* Sticky Header & Navbar styling */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: var(--bg-white);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo img {
  height: 50px;
  display: block;
}

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

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--primary-color);
  padding: 0.5rem 0;
  position: relative;
}

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

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

.nav-link:hover {
  color: var(--accent-color);
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  list-style: none;
  min-width: 260px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-normal);
  z-index: 999;
}

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

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.dropdown-menu li a:hover {
  background-color: var(--bg-light);
  color: var(--accent-color);
  padding-left: 1.75rem;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.burger span {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

/* Hero Slider Section */
.hero-slider-section {
  position: relative;
  height: 620px;
  overflow: hidden;
  background-color: var(--primary-color);
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  z-index: 1;
}

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

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(12, 35, 64, 0.9) 30%, rgba(12, 35, 64, 0.4) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  color: var(--bg-white);
  max-width: 650px;
  padding: 0 1.5rem;
  transform: translateY(30px);
  transition: transform var(--transition-slow);
}

.slide.active .slide-content {
  transform: translateY(0);
}

.slide-content h1 {
  color: var(--bg-white);
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.slide-content h1 span {
  color: var(--accent-color);
}

.slide-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.slide-actions {
  display: flex;
  gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-normal);
}

.slider-arrow:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-normal);
}

.dot.active {
  background-color: var(--accent-color);
  width: 25px;
  border-radius: 5px;
}

/* Premium Floating Quote Box / Enquiry Form */
.floating-quote-section {
  margin-top: -60px;
  position: relative;
  z-index: 50;
}

.quote-box {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(12, 35, 64, 0.05);
}

.quote-box h3 {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-box h3 i {
  color: var(--accent-color);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1.25rem;
  align-items: flex-end;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-control {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-normal);
  width: 100%;
}

.form-control:focus {
  border-color: var(--accent-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(255, 111, 60, 0.1);
}

/* About Intro Section */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-content {
  position: relative;
}

.about-intro-images {
  position: relative;
  height: 450px;
}

.about-img-main {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
}

.experience-badge {
  position: absolute;
  left: -20px;
  bottom: 40px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.experience-badge .num {
  font-size: 2.5rem;
  font-family: var(--font-headings);
  font-weight: 800;
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Service Card Design */
.services-section {
  background-color: var(--bg-white);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(255, 111, 60, 0.3);
}

.service-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.service-icon-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 5;
}

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

.service-body h3 {
  margin-bottom: 0.75rem;
}

.service-body p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  color: var(--primary-color);
}

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

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

/* Stats/Counter Area */
.stats-section {
  background-image: linear-gradient(rgba(12, 35, 64, 0.9), rgba(12, 35, 64, 0.95)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--bg-white);
  padding: 5rem 0;
}

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

.stat-item .icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.stat-item .count {
  font-size: 3.5rem;
  font-family: var(--font-headings);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

/* Detailed Inquiry Section Split Layout */
.detailed-inquiry-section {
  background-color: var(--bg-light);
}

.split-inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.inquiry-info-box {
  padding-right: 2rem;
}

.info-bullet {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-bullet i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.info-bullet h4 {
  margin-bottom: 0.25rem;
}

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

.detailed-form-wrapper h3 {
  margin-bottom: 2rem;
}

.detailed-form-wrapper .grid-2 {
  gap: 1.25rem;
}

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

/* Testimonials section */
.testimonials-section {
  background-color: var(--bg-white);
}

.testimonial-card {
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(255, 111, 60, 0.15);
  line-height: 1;
}

.stars {
  color: #fb8c00;
  margin-bottom: 1rem;
}

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

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

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-headings);
}

.user-details h5 {
  margin-bottom: 0.15rem;
}

.user-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer Section */
footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem;
  font-size: 0.9rem;
  border-top: 5px solid var(--accent-color);
}

footer h3, footer h4 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

footer h4 {
  position: relative;
  padding-bottom: 0.75rem;
}

footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 1.5px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

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

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-contact-info i {
  color: var(--accent-color);
  font-size: 1.15rem;
  margin-top: 0.25rem;
}

.footer-contact-info p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.footer-contact-info strong {
  color: var(--bg-white);
  display: block;
  margin-bottom: 0.25rem;
}

.sub-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* Page Banner/Hero component for sub-pages */
.page-banner {
  background-image: linear-gradient(rgba(12, 35, 64, 0.85), rgba(12, 35, 64, 0.95)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  padding: 6rem 0;
  text-align: center;
}

.page-banner h1 {
  color: var(--bg-white);
  margin-bottom: 1rem;
  font-size: 3rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
}

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

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

/* Sub-page Specific Layout (Sidebar + Content) */
.page-layout-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 3.5rem;
}

.main-content-area img.featured-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.main-content-area h3 {
  margin: 2rem 0 1rem;
}

.main-content-area ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.main-content-area ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.main-content-area ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Sidebar Styling */
.sidebar-widget {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.sidebar-widget h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

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

.services-list-widget {
  list-style: none;
}

.services-list-widget li {
  margin-bottom: 0.5rem;
}

.services-list-widget a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: var(--bg-light);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.services-list-widget a:hover,
.services-list-widget li.active a {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.sidebar-cta-widget {
  background-color: var(--primary-color);
  color: var(--bg-white);
  text-align: center;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sidebar-cta-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 111, 60, 0.1);
  z-index: -1;
}

.sidebar-cta-widget h4 {
  color: var(--bg-white);
  border: none;
}

.sidebar-cta-widget p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.sidebar-cta-widget .phone-num {
  font-size: 1.5rem;
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin: 1rem 0;
}

/* Contact Page Grid Layout */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.office-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.office-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
}

.office-card.ho::after {
  background-color: var(--accent-color);
}

.office-card .icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.office-card h3 {
  margin-bottom: 1rem;
}

.office-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* FAQ Accordion Styling */
.faq-accordion {
  margin-top: 3rem;
}

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

.faq-item:hover {
  border-color: rgba(12, 35, 64, 0.2);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-headings);
  color: var(--primary-color);
  user-select: none;
}

.faq-question .icon {
  transition: transform var(--transition-normal);
  font-size: 0.9rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  padding: 0 1.5rem;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  margin: 0;
  font-size: 0.92rem;
}

.faq-item.active {
  border-color: var(--accent-color);
}

.faq-item.active .faq-question {
  color: var(--accent-color);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Form success message */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 35, 64, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-modal {
  background-color: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px);
  transition: transform var(--transition-slow);
}

.modal-overlay.active .success-modal {
  transform: translateY(0);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #e6f7ed;
  color: #2e7d32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.success-modal h3 {
  margin-bottom: 0.75rem;
}

.success-modal p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Responsive CSS for Header, Slider and General Styles */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.85rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid .btn {
    grid-column: span 2;
  }
  .floating-quote-section {
    margin-top: -30px;
  }
  .about-intro-grid {
    gap: 2.5rem;
  }
  .split-inquiry-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .inquiry-info-box {
    padding-right: 0;
  }
  .page-layout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .burger { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    transition: left var(--transition-normal);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    width: 100%;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background-color: var(--bg-light);
    transform: none;
    min-width: 100%;
    margin-top: 0.5rem;
    display: none;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .hero-slider-section {
    height: 520px;
  }
  
  .slide-content h1 {
    font-size: 2.25rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  
  .about-intro-images {
    height: 350px;
    order: 2;
  }
  
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .sub-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
