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

:root {
  --primary-blue: #0A3C91;
  --primary-light-blue: #1E60D5;
  --accent-red: #D8232A;
  --accent-red-hover: #B21B21;
  --bg-dark: #0A1428;
  --text-dark: #1A2438;
  --text-light: #F4F6FA;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --shadow-sm: 0 2px 4px rgba(10, 60, 145, 0.05);
  --shadow-md: 0 10px 20px rgba(10, 60, 145, 0.08);
  --shadow-lg: 0 20px 40px rgba(10, 60, 145, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Outfit', sans-serif;
  --nav-height: 80px;
  --gradient-blue: linear-gradient(135deg, #0A3C91 0%, #1E60D5 100%);
  --gradient-red: linear-gradient(135deg, #D8232A 0%, #FF4D52 100%);
}

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

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

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

/* Typography Scale with Fluid clamp() for Mobile Scaling */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-blue);
  margin-bottom: 0.5em;
}

h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 800;
  word-break: keep-all;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 2rem;
}

.hero-highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.area-tag {
  cursor: pointer;
}
.area-tag.active-area {
  background-color: var(--primary-blue) !important;
  color: var(--bg-white) !important;
  border-color: var(--primary-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(10, 60, 145, 0.2);
}
.area-tag.highlight.active-area {
  background-color: var(--accent-red) !important;
  color: var(--bg-white) !important;
  border-color: var(--accent-red) !important;
  box-shadow: 0 4px 10px rgba(216, 35, 42, 0.2);
}

/* Beautiful dynamic underline for headings */
h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--gradient-blue);
  border-radius: 2px;
  transition: var(--transition);
}

h2:hover::after {
  width: 120px;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

p {
  color: #4A5568;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 1rem;
}

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

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

/* Utility Layouts */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

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

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

/* Buttons Design System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 8px;
}

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

.btn-primary:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(216, 35, 42, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--primary-light-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(10, 60, 145, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

/* Gradients and Accent Backgrounds */
.gradient-bg {
  background: linear-gradient(135deg, #0A1E46 0%, #060D1E 100%);
  color: var(--text-light);
}

.gradient-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header & Navbar */
.top-bar {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-links {
  display: flex;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item i {
  color: var(--accent-red);
}

.navbar {
  height: var(--nav-height);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.navbar.scrolled .logo img {
  height: 42px;
}

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

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
}

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

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

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

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

/* Burger Menu */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1010;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  padding: 130px 0 100px 0;
  display: flex;
  align-items: center;
  color: var(--bg-white);
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url('../images/hero-fallback.jpg') no-repeat center center / cover;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 20, 40, 0.65) 0%, rgba(10, 60, 145, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.hero-text {
  max-width: 680px;
}

.hero-tagline {
  display: inline-block;
  background-color: var(--accent-red);
  color: var(--bg-white);
  padding: 6px 16px;
  font-weight: 700;
  border-radius: 30px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.hero-text h1 {
  color: var(--bg-white);
  margin-bottom: 20px;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 35px;
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
}

.hero-features-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 500;
}

.hero-features-item i {
  color: #38A169; /* green check */
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Quick Quote Form Container */
.hero-form-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
  border-top: 5px solid var(--accent-red);
}

.hero-form-container h3 {
  color: var(--primary-blue);
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.hero-form-container p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(10, 60, 145, 0.15);
}

.form-group i {
  position: absolute;
  left: 14px;
  top: 15px;
  color: #718096;
  font-size: 1rem;
}

.form-group textarea {
  padding-left: 16px;
  height: 80px;
  resize: none;
}

.hero-form-container .btn-submit {
  width: 100%;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border: none;
  padding: 14px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.hero-form-container .btn-submit:hover {
  background-color: var(--primary-light-blue);
  box-shadow: 0 5px 15px rgba(10, 60, 145, 0.2);
}

/* Why Choose Us Section */
.why-us-grid {
  margin-top: 40px;
}

.why-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

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

.why-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(10, 60, 145, 0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary-blue);
  font-size: 1.8rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  transform: rotateY(180deg);
}

.why-card h3 {
  margin-bottom: 12px;
}

.why-card p {
  margin-bottom: 0;
}

/* Services Section */
.services-section {
  position: relative;
}

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

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

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

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

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-red);
  color: var(--bg-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-info h3 {
  margin-bottom: 12px;
}

.service-info p {
  margin-bottom: 8px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-blue);
}

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

/* Process Timeline Section */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0 auto;
  padding: 20px 0;
}

/* The vertical line */
.timeline-container::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: rgba(10, 60, 145, 0.1);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 3px;
}

.timeline-step {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Positioning left & right steps */
.timeline-step.left {
  left: 0;
}

.timeline-step.right {
  left: 50%;
}

/* The circles on the timeline */
.timeline-step::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  right: -12px;
  background-color: var(--bg-white);
  border: 4px solid var(--primary-blue);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition);
}

.timeline-step.right::after {
  left: -12px;
}

.timeline-step:hover::after {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
  transform: scale(1.2);
}

.timeline-content {
  padding: 25px;
  background-color: var(--bg-white);
  position: relative;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.timeline-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 15px;
}

.timeline-step:hover .timeline-number {
  background-color: var(--accent-red);
}

.timeline-content h3 {
  margin-bottom: 8px;
}

.timeline-content p {
  margin-bottom: 0;
}

/* About Section */
.about-grid {
  align-items: center;
  gap: 50px;
}

.about-img-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 10px solid var(--accent-red);
  border-radius: 12px;
  top: 15px;
  left: -15px;
  z-index: -1;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.about-badge .years {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  color: var(--accent-red);
}

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

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 25px 0 35px 0;
}

.about-point-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.about-point-item i {
  color: var(--accent-red);
  font-size: 1.2rem;
}

/* Coverage Areas Section */
.coverage-box {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}

.area-tag {
  background-color: rgba(10, 60, 145, 0.06);
  color: var(--primary-blue);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.area-tag:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.area-tag.highlight {
  background-color: rgba(216, 35, 42, 0.08);
  color: var(--accent-red);
  border: 1px dashed var(--accent-red);
}

.area-tag.highlight:hover {
  background-color: var(--accent-red);
  color: var(--bg-white);
}

/* Testimonial / Reviews Section */
.reviews-container {
  max-width: 900px;
  margin: 40px auto 0 auto;
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%;
}

.review-slide {
  width: 33.333%;
  padding: 0 15px;
  box-sizing: border-box;
}

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

.review-card::before {
  content: '\201C';
  font-family: serif;
  font-size: 5rem;
  color: rgba(10, 60, 145, 0.1);
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: 1;
}

.review-stars {
  color: #F6E05E; /* yellow-star */
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #4A5568;
  margin-bottom: 25px;
}

.reviewer-meta h4 {
  color: var(--primary-blue);
  margin-bottom: 2px;
}

.reviewer-meta p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #718096;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-blue);
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(10, 60, 145, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

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

/* FAQ Accordion Section */
.faq-container {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

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

.faq-question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-white);
  border: none;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(10, 60, 145, 0.02);
  color: var(--accent-red);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--bg-light);
  border-top: 0 solid var(--border-color);
}

.faq-answer-content {
  padding: 20px 25px;
  color: #4D5765;
  font-size: 0.95rem;
}

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

.faq-item.active .faq-question {
  background-color: rgba(10, 60, 145, 0.04);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent-red);
}

.faq-item.active .faq-answer {
  border-top-width: 1px;
}

/* Contact Us Grid */
.contact-grid {
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: auto;
}

.contact-left-col,
.contact-right-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(10, 60, 145, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-text h4 {
  margin-bottom: 4px;
}

.contact-text a, .contact-text p {
  color: #4A5568;
}

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

.map-wrapper {
  margin-top: auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 200px;
}

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

.form-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  margin-bottom: 25px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-card textarea {
  height: 100px;
}

/* Footer styling */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 70px 0 30px 0;
  border-top: 4px solid var(--accent-red);
}

.footer-grid {
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-col p {
  color: #A0AEC0;
  font-size: 0.95rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #A0AEC0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  color: #A0AEC0;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--accent-red);
  margin-top: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #A0AEC0;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-light-blue);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: #718096;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* Scroll Fade Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse animation for CTA tags */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 35, 42, 0.4);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 8px rgba(216, 35, 42, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 35, 42, 0);
  }
}

/* Mobile Sticky Bottom CTA Footer */
.mobile-sticky-cta {
  display: none; /* Hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.12);
  z-index: 999;
  padding: 10px 16px;
  border-top: 1px solid var(--border-color);
}

.sticky-cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.sticky-btn-call {
  background-color: var(--primary-blue);
}

.sticky-btn-call:hover {
  background-color: var(--primary-light-blue);
}

.sticky-btn-whatsapp {
  background-color: #25D366; /* WhatsApp Green */
}

.sticky-btn-whatsapp:hover {
  background-color: #128C7E;
}

/* Success Alert Styles */
.success-alert {
  padding: 15px;
  background-color: #C6F6D5;
  color: #22543D;
  border: 1px solid #9AE6B4;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

/* RWD - Responsive Design Adjustments */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
  
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-features-list {
    align-items: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-form-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coverage-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .section {
    padding: 60px 0;
  }

  .hero-form-container {
    display: none; /* Hide floating form in hero on mobile to reduce clutter */
  }

  /* Sticky contact footer on mobile */
  body {
    padding-bottom: 68px; /* Leave space for bottom sticky header */
  }

  .mobile-sticky-cta {
    display: block; /* Show on mobile */
  }

  .container {
    padding: 0 16px;
  }

  .top-bar {
    display: block !important;
    padding: 8px 0;
    text-align: center;
  }
  .top-bar .container > .top-bar-item {
    display: none !important; /* Hide address on mobile top bar */
  }
  .top-bar-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
  }
  .top-bar-links a[href^="mailto:"] {
    display: none !important; /* Hide email on mobile top bar */
  }
  .top-bar-links .top-bar-item {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-white) !important;
  }
  .top-bar-links .top-bar-item i {
    color: #FFD700 !important; /* Bright gold phone icon for maximum contrast */
    margin-right: 4px;
  }

  .coverage-box {
    padding: 24px 20px !important;
  }

  .contact-info-card, .form-card {
    padding: 24px 20px !important;
    width: 100%;
    margin: 0 auto;
  }

  .hero-wa-btn {
    display: none !important;
  }

  /* Nav Menu Drawer */
  .burger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    height: calc(100vh - var(--nav-height));
    width: 280px;
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 25px;
    box-shadow: -10px 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    z-index: 1005;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
  }

  .nav-cta {
    display: none; /* Hide top CTA in navbar on mobile, sticky CTA handles it */
  }

  /* Timeline adjustment for single column */
  .timeline-container::after {
    left: 31px;
  }

  .timeline-step {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-step.right {
    left: 0%;
  }

  .timeline-step::after {
    left: 19px !important;
    right: auto !important;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem !important;
  }
  
  h2 {
    font-size: 1.35rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }

  .reviews-container {
    padding: 0;
  }

  .review-card {
    padding: 25px 15px;
  }

  .faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .contact-info-card, .form-card {
    padding: 20px 15px !important;
  }
}

/* Service Card Call/WhatsApp & Modal Details Layout */
.card-contact-row {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  width: 100%;
}

.card-contact-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.card-contact-btn.call {
  background-color: rgba(10, 60, 145, 0.08);
  color: var(--primary-blue);
}

.card-contact-btn.call:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.card-contact-btn.wa {
  background-color: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.2);
}

.card-contact-btn.wa:hover {
  background-color: #25D366;
  color: var(--bg-white);
}

.card-list {
  list-style: none;
  margin: 8px 0 15px 0;
  font-size: 0.92rem;
  padding-left: 0;
}

.card-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #4A5568;
  text-align: left;
}

.card-list li i {
  color: #38A169; /* green check */
  margin-top: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

/* Modal Popup Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(10, 20, 40, 0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: var(--transition);
  opacity: 0;
}

.modal.open {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--bg-white);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--accent-red);
  animation: modalSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

@keyframes modalSlide {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.modal-header h3 {
  margin-bottom: 0;
  color: var(--primary-blue);
  font-size: 1.35rem;
}

.modal-close {
  background: none;
  border: none;
  color: #A0AEC0;
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.modal-close:hover {
  color: var(--accent-red);
  transform: scale(1.1);
}

.modal-body {
  padding: 25px;
  overflow-y: auto;
  flex-grow: 1;
}

.modal-body p {
  font-size: 1rem;
  color: #4A5568;
  margin-bottom: 20px;
}

.modal-body h4 {
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.modal-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.modal-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #4A5568;
}

.modal-list li i {
  color: var(--accent-red);
  margin-top: 4px;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.modal-footer {
  padding: 15px 25px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background-color: var(--bg-light);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  flex-shrink: 0;
}

.modal-footer .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

@media (max-width: 580px) {
  .modal-content {
    max-height: 95vh;
  }
  .modal-body {
    padding: 15px;
  }
  .modal-footer {
    padding: 12px 15px;
    flex-direction: column-reverse;
  }
  .modal-footer .btn {
    width: 100%;
  }
}

/* Infinite Scrolling Marquee Ticker Styles */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: var(--accent-red);
  color: var(--bg-white);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.ticker {
  display: flex;
  white-space: nowrap;
}
.ticker__move {
  display: flex;
  animation: ticker-animation 30s linear infinite;
}
.ticker__item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@keyframes ticker-animation {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Coloured "Why Choose Us" Cards */
.why-card-blue {
  background: var(--gradient-blue);
  color: var(--bg-white);
  border-color: transparent;
}
.why-card-blue h3 {
  color: var(--bg-white);
}
.why-card-blue p {
  color: rgba(255, 255, 255, 0.9);
}
.why-card-blue .why-icon {
  background-color: var(--bg-white);
  color: var(--primary-blue);
}

.why-card-red {
  background: var(--gradient-red);
  color: var(--bg-white);
  border-color: transparent;
}
.why-card-red h3 {
  color: var(--bg-white);
}
.why-card-red p {
  color: rgba(255, 255, 255, 0.9);
}
.why-card-red .why-icon {
  background-color: var(--bg-white);
  color: var(--accent-red);
}

/* Dark Timeline Section Styles */
.timeline-dark-bg {
  background-color: var(--bg-dark) !important;
  color: var(--bg-white);
}
.timeline-dark-bg h2 {
  color: var(--bg-white) !important;
}
.timeline-dark-bg h2::after {
  background: var(--gradient-red) !important;
}
.timeline-dark-bg p {
  color: rgba(255, 255, 255, 0.7);
}
.timeline-dark-bg .timeline-container::after {
  background-color: rgba(255, 255, 255, 0.15);
}
.timeline-dark-bg .timeline-step::after {
  border-color: var(--accent-red);
  background-color: var(--bg-dark);
}
.timeline-dark-bg .timeline-content {
  background-color: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--bg-white) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.timeline-dark-bg .timeline-content h3 {
  color: var(--bg-white) !important;
}
.timeline-dark-bg .timeline-content p {
  color: #A0AEC0 !important;
}
.timeline-dark-bg .timeline-number {
  background-color: var(--accent-red) !important;
  color: var(--bg-white) !important;
}

/* Homepage Work Gallery Carousel */
.carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 30px;
}
.carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 20px;
}
.carousel-slide {
  flex-shrink: 0;
  width: calc((100% - 40px) / 3);
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  background-color: var(--bg-light);
}
.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light-blue);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.carousel-slide:hover img {
  transform: scale(1.08);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 10;
}
.carousel-btn:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border-color: var(--primary-blue);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev {
  left: -23px;
}
.carousel-next {
  right: -23px;
}

@media (max-width: 991px) {
  .carousel-slide {
    width: calc((100% - 20px) / 2);
  }
  .carousel-prev {
    left: -10px;
  }
  .carousel-next {
    right: -10px;
  }
}
@media (max-width: 580px) {
  .carousel-slide {
    width: 100%;
  }
  .carousel-prev {
    left: 5px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .carousel-next {
    right: 5px;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

