
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background-color: #FFFFFF;
  color: #39424E;
  line-height: 1.5;
  overflow-x: hidden;
}

:root {
  --navy: #12356F;
  --teal: #0B92B8;
  --green: #7AC943;
  --orange: #F68B1F;
  --dark-text: #39424E;
  --white: #FFFFFF;
  --light-bg: #F8F9FC;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.08);
  --transition: all 0.25s ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- TOP UTILITY BAR --- */
.top-bar {
  background-color: var(--navy);
  width: 100%;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 102;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.utility-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.utility-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.utility-links a:hover {
  color: var(--green);
}

.separator {
  color: rgba(255,255,255,0.35);
}

.status-area {
  display: flex;
  align-items: center;
  gap: 18px;
}

.open-status {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
}

.open-status i {
  margin-right: 6px;
  color: var(--green);
}

.book-online-btn {
  background: var(--green);
  color: var(--navy);
  padding: 6px 22px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.book-online-btn:hover {
  background: #6bb03a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- MAIN HEADER (Sticky) --- */
.main-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-area h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-area span {
  color: var(--teal);
}

.desktop-nav .nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.nav-menu li a i {
  font-size: 0.7rem;
  color: var(--teal);
}

.nav-menu li a:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-cta {
  background: #f0f4fa;
  padding: 8px 18px;
  border-radius: 40px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.phone-cta i {
  color: var(--green);
  font-size: 0.9rem;
}

.phone-cta:hover {
  background: #e6ecf5;
  transform: scale(1.02);
  color: var(--navy);
}

.phone-cta:active {
  transform: scale(0.98);
}

/* Hide on Mobile & Tablet (responsive) */
@media (max-width: 880px) {
  .phone-cta {
    display: none;
  }
}

/* Desktop only - ensure visible */
@media (min-width: 881px) {
  .phone-cta {
    display: flex;
  }
}

.search-icon {
  color: var(--dark-text);
  font-size: 1.2rem;
  transition: var(--transition);
}

.search-icon:hover {
  color: var(--teal);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger .bar {
  width: 26px;
  height: 2.5px;
  background-color: var(--navy);
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Mobile Menu (initially hidden) */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}

.mobile-menu.open {
  max-height: 500px;
}

.mobile-nav-list {
  list-style: none;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-list li a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-nav-list .mobile-phone a {
  color: var(--navy);
  background: #eef3fc;
  padding: 10px;
  border-radius: 30px;
  justify-content: center;
}

/* --- SERVICE BADGE BAR (teal) --- */
.service-badge-bar {
  background: var(--teal);
  padding: 12px 0;
  text-align: center;
}

.trust-message {
  color: white;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 0.9rem;
}

.trust-message i {
  margin-right: 8px;
}

/* --- HERO SPLIT SCREEN (exact proportions) --- */
.hero {
  width: 100%;
  background: var(--white);
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  min-height: 580px;
}

.hero-content {
  flex: 1;
  padding: 70px 48px 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breadcrumb {
  font-size: 0.8rem;
  margin-bottom: 24px;
  color: #6c7a8e;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--teal);
}

.breadcrumb span {
  margin: 0 4px;
}

.hero-headline {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.service-icon {
  font-size: 1.6rem;
  color: var(--teal);
  margin: 16px 0 12px 0;
  display: flex;
  gap: 12px;
}

.hero-description {
  font-size: 1rem;
  color: #4a5562;
  max-width: 90%;
  margin: 12px 0 28px 0;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 2px 6px rgba(246,139,31,0.3);
}

.btn-primary:hover {
  background: #e07a12;
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--green);
  color: #1a3e2c;
}

.btn-secondary:hover {
  background: #6bb53b;
  transform: translateY(-3px);
}

/* Hero Right Image (55-60% width visual) */
.hero-image {
  flex: 1.2;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

/* ============================================
   CONTACT HEADING SECTION - Dark Background
   ============================================ */
.contact-heading-section {
  background: linear-gradient(135deg, #0a2540 0%, #0f2e46 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  margin-top: 5%;
}

/* Optional: subtle background pattern */
.contact-heading-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(122,201,67,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Optional: decorative accent line */
.contact-heading-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--orange), var(--green));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.contact-heading-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-heading-wrapper h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-heading-wrapper p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-weight: 500;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: #0a2a3b;
  padding: 16px 36px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
}

.contact-action-btn i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.contact-action-btn:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.contact-action-btn:hover i {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-heading-section {
    padding: 50px 0;
  }
  
  .contact-heading-wrapper h2 {
    font-size: 2rem;
  }
  
  .contact-heading-wrapper p {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .contact-action-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact-heading-wrapper h2 {
    font-size: 1.6rem;
  }
  
  .contact-heading-wrapper p {
    font-size: 0.9rem;
  }
  
  .contact-action-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* ============================================
   ABOUT SECTION - Fresh, distinct but cohesive
   ============================================ */
.about-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,146,184,0.2), transparent);
}

.about-wrapper {
  display: flex;
  gap: 70px;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Left side - Image area with distinct style */
.about-image-side {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.image-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 45px -12px rgba(0,0,0,0.2);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.image-frame:hover img {
  transform: scale(1.04);
}

.experience-chip {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(4px);
  background: rgba(18,53,111,0.92);
  letter-spacing: 0.3px;
}

.experience-chip i {
  color: var(--orange);
}

/* Stats grid - unique element not in hero */
.image-stats-grid {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.stat-item {
  flex: 1;
  background: #f8fafd;
  padding: 18px 12px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(11,146,184,0.08);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  border-color: rgba(11,146,184,0.2);
}

.stat-item i {
  font-size: 1.8rem;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}

.stat-item span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}

.stat-item p {
  font-size: 0.75rem;
  color: #6b7a8c;
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Right side - Content area */
.about-content-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.marker-line {
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.marker-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
}

.about-content-side h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.lead-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c3e4e;
  margin-bottom: 16px;
  line-height: 1.5;
}

.body-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a6a7a;
  margin-bottom: 28px;
}

/* Info rows - clean card style */
.info-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.row-icon {
  width: 44px;
  height: 44px;
  background: rgba(11,146,184,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.row-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.row-content p {
  font-size: 0.9rem;
  color: #6a7a8c;
}

/* Link button - different from hero CTA */
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.about-link i {
  transition: transform 0.2s ease;
}

.about-link:hover {
  gap: 16px;
  color: var(--teal);
}

.about-link:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-section {
    padding: 70px 0;
  }
  .about-wrapper {
    gap: 50px;
  }
  .about-content-side h2 {
    font-size: 2.2rem;
  }
  .image-stats-grid {
    flex-wrap: wrap;
  }
}

@media (max-width: 880px) {
  .about-wrapper {
    flex-direction: column;
  }
  .about-content-side {
    order: -1;
  }
  .about-image-side {
    order: 2;
  }
  .about-content-side h2 {
    font-size: 2rem;
  }
  .lead-text {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 50px 0;
  }
  .image-stats-grid {
    flex-direction: column;
  }
  .stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 16px 20px;
  }
  .stat-item i {
    margin-bottom: 0;
    font-size: 1.5rem;
  }
  .stat-item span {
    font-size: 1.2rem;
  }
  .stat-item p {
    margin-top: 0;
  }
  .about-content-side h2 {
    font-size: 1.7rem;
  }
  .experience-chip {
    font-size: 0.7rem;
    padding: 6px 14px;
    bottom: 16px;
    left: 16px;
  }
}

/* ============================================
   NEW SERVICES SECTION - Fresh Design
   Different layout, pattern, and styling
   ============================================ */

.new-services-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
  position: relative;
}

/* Decorative top border */
.new-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 146, 184, 0.2), rgba(246, 139, 31, 0.2), rgba(122, 201, 67, 0.2), transparent);
}

/* Intro / Header Area */
.new-services-intro {
  text-align: center;
  margin-bottom: 60px;
}

.new-services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 146, 184, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.new-services-badge i {
  font-size: 0.8rem;
}

.new-services-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.new-services-title span {
  color: var(--teal);
  position: relative;
  display: inline-block;
}

.new-services-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(11, 146, 184, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.new-services-subtitle {
  font-size: 1.05rem;
  color: #5a6a7a;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Services Grid - 3x2 layout (different from old 1x3) */
.new-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Service Card - Horizontal layout (different from old vertical) */
.new-service-item {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

/* Hover effect with left accent border */
.new-service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--teal), var(--orange));
  transition: height 0.35s ease;
}

.new-service-item:hover::before {
  height: 100%;
}

.new-service-item:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(11, 146, 184, 0.15);
}

/* Icon Wrapper - Circular different style */
.service-icon-wrapper {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(11, 146, 184, 0.1) 0%, rgba(246, 139, 31, 0.08) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.new-service-item:hover .service-icon-wrapper {
  background: linear-gradient(135deg, var(--teal) 0%, var(--orange) 100%);
  transform: scale(1.05);
  border-radius: 14px;
}

.service-icon-wrapper i {
  font-size: 1.8rem;
  color: var(--teal);
  transition: all 0.3s ease;
}

.new-service-item:hover .service-icon-wrapper i {
  color: white;
}

/* Service Content Area */
.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.new-service-item:hover .service-content h3 {
  color: var(--teal);
}

.service-content p {
  font-size: 0.85rem;
  color: #6b7a8c;
  line-height: 1.45;
  margin-bottom: 12px;
}

/* Service Link - Underline style (different from old button style) */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: all 0.2s ease;
}

.service-link i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.service-link:hover {
  color: var(--teal);
  gap: 10px;
}

.service-link:hover i {
  transform: translateX(3px);
}

/* Footer CTA Area */
.new-services-footer {
  text-align: center;
  margin-top: 20px;
}

.new-services-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.new-services-cta i {
  transition: transform 0.2s ease;
}

.new-services-cta:hover {
  background: var(--teal);
  color: white;
  gap: 16px;
}

.new-services-cta:hover i {
  transform: translateX(5px);
}

/* ============================================
   NEW SERVICES - RESPONSIVE
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .new-services-section {
    padding: 70px 0;
  }
  
  .new-services-title {
    font-size: 2.2rem;
  }
  
  .new-services-grid {
    gap: 24px;
  }
  
  .new-service-item {
    padding: 22px;
  }
  
  .service-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .service-icon-wrapper i {
    font-size: 1.6rem;
  }
}

/* Mobile Landscape (768px down to 640px) */
@media (max-width: 768px) {
  .new-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .new-services-title {
    font-size: 2rem;
  }
  
  .new-services-subtitle {
    font-size: 0.95rem;
    padding: 0 20px;
  }
}

/* Mobile Portrait (up to 640px) */
@media (max-width: 640px) {
  .new-services-section {
    padding: 55px 0;
  }
  
  .new-services-intro {
    margin-bottom: 40px;
  }
  
  .new-services-title {
    font-size: 1.8rem;
  }
  
  .new-services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .new-service-item {
    padding: 20px;
  }
  
  .service-content h3 {
    font-size: 1.1rem;
  }
  
  .service-content p {
    font-size: 0.8rem;
  }
  
  .new-services-cta {
    padding: 10px 28px;
    font-size: 0.85rem;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .new-services-section {
    padding: 45px 0;
  }
  
  .new-services-title {
    font-size: 1.6rem;
  }
  
  .new-services-badge {
    font-size: 0.7rem;
    padding: 5px 14px;
  }
  
  .new-service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  
  .service-link {
    justify-content: center;
  }
}

/* CONTACT SECTION (no form) */
.contact-simple {
  background: var(--navy);
  color: white;
  padding: 60px 0;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.contact-info-box {
  flex: 1;
}

.contact-info-box i.fa-phone-circle {
  font-size: 2rem;
  margin-bottom: 16px;
}

.phone-big {
  display: inline-block;
  background: var(--green);
  padding: 12px 28px;
  border-radius: 50px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.3rem;
  text-decoration: none;
  margin: 20px 0;
  transition: var(--transition);
}

.phone-big:hover {
  background: #68bc3a;
  transform: scale(1.02);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.contact-map-placeholder {
  flex: 0.8;
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 28px;
  text-align: center;
  backdrop-filter: blur(2px);
}

.contact-map-placeholder i {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* FOOTER */
/* ============================================
   FOOTER SECTION - UPDATED WITH CONTACT DETAILS
   ============================================ */

/* ============================================
   FOOTER SECTION - UPDATED RESPONSIVE
   Desktop mode unchanged, mobile/tablet fixed
   ============================================ */

.footer {
  background: #0C1E2F;
  color: #ccc;
  padding: 60px 0 0;
  position: relative;
}

/* Top decorative line */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--orange), var(--teal));
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand Column */
.footer-brand {
  flex: 1.2;
  min-width: 240px;
}

.footer-brand h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-brand span {
  color: var(--teal);
}

.footer-brand p {
  color: #b0b8c5;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 280px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

/* Links Columns */
.footer-links {
  flex: 1;
  min-width: 160px;
}

.footer-links h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links h4 i {
  color: var(--teal);
  font-size: 0.9rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b8c5;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--teal);
  transform: translateX(4px);
}

/* Contact Details Column */
.footer-contact {
  flex: 1.3;
  min-width: 260px;
}

.footer-contact h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact h4 i {
  color: var(--teal);
}

.contact-details-list {
  list-style: none;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-details-list li i {
  width: 32px;
  height: 32px;
  background: rgba(11, 146, 184, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.contact-details-list li:hover i {
  background: var(--teal);
  color: white;
}

.contact-details-list li div {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7a8798;
  margin-bottom: 4px;
}

.contact-details-list li a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  word-break: break-word;
}

.contact-details-list li a:hover {
  color: var(--teal);
}

.contact-details-list li span {
  color: #d0d5dd;
  font-size: 0.85rem;
  line-height: 1.4;
}

.availability {
  color: var(--green) !important;
  font-weight: 600;
  font-size: 0.8rem !important;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 25px 0 35px;
}

.footer-bottom-left p {
  font-size: 0.75rem;
  color: #7a8798;
}

.footer-bottom-right {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-right a {
  color: #7a8798;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.footer-bottom-right a:hover {
  color: var(--teal);
}

.footer-separator {
  color: #3a4a5c;
  font-size: 0.7rem;
}

/* ============================================
   FOOTER RESPONSIVE - UPDATED & FIXED
   Desktop unchanged, mobile/tablet optimized
   ============================================ */

/* Tablet Landscape (1024px down to 881px) */
@media (max-width: 1024px) and (min-width: 881px) {
  .footer-grid {
    gap: 35px;
  }
  
  .footer-brand {
    flex: 1;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
  
  .footer-links {
    min-width: 140px;
  }
  
  .footer-contact {
    min-width: 240px;
  }
}

/* Tablet Portrait (880px down to 769px) */
@media (max-width: 880px) {
  .footer {
    padding: 50px 0 0;
  }
  
  .footer-grid {
    gap: 35px;
    justify-content: flex-start;
  }
  
  .footer-brand {
    flex: 1 1 100%;
    min-width: 100%;
    text-align: center;
  }
  
  .footer-brand p {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-links {
    flex: 1 1 calc(50% - 35px);
    min-width: auto;
    text-align: center;
  }
  
  .footer-links h4 {
    justify-content: center;
  }
  
  .footer-links ul li {
    text-align: center;
  }
  
  .footer-links a:hover {
    transform: translateX(0);
  }
  
  .footer-contact {
    flex: 1 1 100%;
    min-width: 100%;
    text-align: center;
  }
  
  .footer-contact h4 {
    justify-content: center;
  }
  
  .contact-details-list li {
    justify-content: center;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile Large (768px down to 641px) */
@media (max-width: 768px) {
  .footer {
    padding: 45px 0 0;
  }
  
  .footer-grid {
    gap: 30px;
    padding-bottom: 30px;
  }
  
  .footer-brand h3 {
    font-size: 1.5rem;
  }
  
  .footer-brand p {
    font-size: 0.8rem;
    padding: 0 15px;
  }
  
  .footer-links {
    flex: 1 1 calc(50% - 30px);
  }
  
  .footer-links h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  .footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .contact-details-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .contact-details-list li i {
    width: 36px;
    height: 36px;
  }
  
  .contact-label {
    font-size: 0.65rem;
  }
  
  .contact-details-list li a {
    font-size: 0.85rem;
  }
  
  .contact-details-list li span {
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 0 30px;
    gap: 15px;
  }
  
  .footer-bottom-right {
    justify-content: center;
    gap: 12px;
  }
}

/* Mobile Medium (640px down to 481px) */
@media (max-width: 640px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-grid {
    gap: 25px;
    padding-bottom: 25px;
  }
  
  .footer-brand h3 {
    font-size: 1.4rem;
  }
  
  .footer-brand p {
    font-size: 0.75rem;
  }
  
  .social-icons {
    gap: 10px;
  }
  
  .social-icons a {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
  
  .footer-links {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .footer-links h4 {
    justify-content: center;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .contact-details-list li {
    max-width: 100%;
  }
  
  .footer-bottom-left p {
    font-size: 0.7rem;
  }
  
  .footer-bottom-right a {
    font-size: 0.7rem;
  }
}

/* Mobile Small (480px down to 361px) */
@media (max-width: 480px) {
  .footer {
    padding: 35px 0 0;
  }
  
  .footer-grid {
    gap: 25px;
  }
  
  .footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .footer-brand p {
    font-size: 0.7rem;
    padding: 0 10px;
  }
  
  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  
  .footer-links h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    font-size: 0.75rem;
  }
  
  .footer-contact h4 {
    font-size: 0.95rem;
  }
  
  .contact-details-list li {
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .contact-details-list li i {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
  
  .contact-label {
    font-size: 0.6rem;
  }
  
  .contact-details-list li a {
    font-size: 0.8rem;
  }
  
  .availability {
    font-size: 0.7rem !important;
  }
  
  .footer-bottom {
    padding: 15px 0 25px;
    gap: 12px;
  }
  
  .footer-bottom-left p {
    font-size: 0.65rem;
  }
  
  .footer-bottom-right {
    gap: 10px;
  }
  
  .footer-bottom-right a {
    font-size: 0.65rem;
  }
  
  .footer-separator {
    font-size: 0.6rem;
  }
}

/* Mobile Extra Small (360px and below) */
@media (max-width: 360px) {
  .footer {
    padding: 30px 0 0;
  }
  
  .footer-brand h3 {
    font-size: 1.2rem;
  }
  
  .footer-brand p {
    font-size: 0.65rem;
  }
  
  .social-icons a {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  .footer-links h4 {
    font-size: 0.85rem;
  }
  
  .footer-links a {
    font-size: 0.7rem;
  }
  
  .contact-details-list li a {
    font-size: 0.75rem;
  }
  
  .footer-bottom-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 2.5rem;
  }
  .hero-content {
    padding: 50px 32px;
  }
}

@media (max-width: 880px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-inner {
    flex-direction: column;
  }
  .hero-image {
    min-height: 280px;
    flex: auto;
  }
  .hero-content {
    text-align: center;
    align-items: center;
    padding: 48px 24px;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-buttons .btn {
    width: auto;
    min-width: 200px;
  }
  .about-grid {
    flex-direction: column;
  }
  .contact-flex {
    flex-direction: column;
    text-align: center;
  }
  .btn {
    padding: 12px 20px;
  }
}

@media (max-width: 640px) {
  .hero-headline {
    font-size: 2rem;
  }
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  .utility-links {
    justify-content: center;
  }
  .status-area {
    justify-content: center;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .services-grid {
    flex-direction: column;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}

/* Hamburger open animation */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
body.menu-open {
  overflow: hidden;
}