:root {
  --primary: #00305b;
  --secondary: #c9a227;
  --light-bg: #f2f5f9;
  --text-dark: #111827;
  --text-light: #4b5563;
  --section-spacing: 100px;
  --section-spacing-tablet: 80px;
  --section-spacing-mobile: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1.7;
  color: var(--text-dark);
}

section {
  padding: var(--section-spacing) 0;
}

h1,
h2,
h3 {
  font-weight: 600;
}

/* HEADER */
header {
  background: var(--primary);
  padding: 15px 8%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px;
}

/* NAV DESKTOP */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

nav ul li a:hover {
  color: var(--secondary);
}

nav ul li a.active {
  color: var(--secondary);
  font-weight: 600;
  position: relative;
}

/* ================================
   GLOBAL BUTTON BASE
================================ */
.btn-primary {
  position: relative;
  display: inline-block;
  padding: 13px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
  letter-spacing: 0.3px;
}

/* GOLD GRADIENT */
.btn-primary {
  background: linear-gradient(
    135deg,
    #d4b43c 0%,
    #c9a227 40%,
    #e0c35a 60%,
    #c9a227 100%
  );
  background-size: 200% 200%;
  color: #000;
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.25);
}

/* SUBTLE ANIMATION */
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.35);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.btn-primary:hover::before {
  left: 130%;
}
/* Buttons inside dark sections */
.hero .btn-primary,
.cta .btn-primary {
  padding: 9px 22px; /* reduced height */
  font-size: 14px; /* slightly smaller text */
  border-radius: 999px; /* fully rounded pill */
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

/* Hover */
.hero .btn-primary:hover,
.cta .btn-primary:hover {
  transform: translateY(-2px);
}
/* ================================
   HEADER BUTTON FIX
================================ */

header .btn-primary {
  color: #000; /* ensure solid text */
}

header .btn-primary:hover {
  color: #000; /* prevent text fade */
  background-position: right center; /* keep gradient animation */
  transform: translateY(-2px);
}
header .btn-primary {
  padding: 8px 20px;
  font-size: 13.5px;
  border-radius: 999px;
}

/* ========================== HAMBURGER ========================== */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Animate */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE NAV */
@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 80px;
    right: 8%;
    background: var(--primary);
    flex-direction: column;
    width: 220px;
    padding: 25px;
    border-radius: 10px;
    display: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  nav ul.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* HERO */
.hero {
  background:
    linear-gradient(rgba(11, 29, 58, 0.85), rgba(11, 29, 58, 0.85)),
    url("images/hero-image.avif") center/cover;
  height: 93vh;
  display: flex;
  align-items: center;
  color: white;
  margin-top: 85px;
  padding: 0 8%;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 30px;
  color: #ddd;
}

/* Tablets */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }
}

/* SECTION TITLES */
.container,
.section-title,
.services,
.about-preview,
.why-content,
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .why-us-modern .container,
  .faq-section .container,
  .why-content {
    padding-left: 0;
    padding-right: 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: auto;
}

/* ABOUT PREVIEW (HOME) */
.about-section {
  background: linear-gradient(to bottom, #f9fafb, #f3f6f9);
  width: 100%;
}
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview img {
  width: 100%;
  border-radius: 12px;
}

/* SERVICES (HOME) */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--secondary);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

/* WHY CHOOSE US (HOME) */
.why-us-modern {
  background: var(--light-bg);
}

.container {
  max-width: 1300px;
  margin: auto;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
@media (min-width: 992px) {
  .why-image img {
    height: 600px;
    object-fit: cover;
  }
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card .icon {
  background: var(--primary);
  color: white;
  padding: 12px;
  border-radius: 8px;
  min-width: 50px;
  text-align: center;
  font-size: 20px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--primary);
}

.feature-card p {
  font-size: 16px;
  color: var(--text-light);
}

/* =========================================
   FAQ SECTION (SLIM VERSION)
========================================= */

.faq-section {
  background: #f8f9fc;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* Question Bar (Reduced Height) */

.faq-question {
  width: 100%;
  padding: 16px 20px; /* reduced from ~22-25px */
  background: white;
  border: none;
  text-align: left;
  font-size: 15px; /* slightly smaller */
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f4f6fb;
}

.faq-icon {
  font-size: 18px;
  color: #d4af37;
  transition: transform 0.3s ease;
}

/* Answer Animation (Keep Smooth JS Version) */

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 0 0 16px 0; /* reduced bottom spacing */
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Rotate icon when active */

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Mobile Fine-Tune */

@media (max-width: 600px) {
  .faq-question {
    padding: 14px 16px;
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13.5px;
  }
}

/* CONTACT FORM (HOME) */
.contact-form {
  max-width: 800px; /* Increased from 600px to make it wider */
  margin: 40px auto 0;
}

/* Flex container for the side-by-side inputs */
.form-row {
  display: flex;
  gap: 15px; /* Space between the two inputs */
  width: 100%;
}

.form-row input {
  flex: 1; /* Makes both inputs take up equal space */
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical; /* Only allows vertical stretching, not sideways */
  min-height: 100px;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: #d4af37;
  border: none;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

/* Responsive fix: Stack the row on small screens */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* ================= PAGES ================= */

/* ========================== HERO (PAGES) ========================== */

.hero-pages {
  background:
    linear-gradient(rgba(11, 29, 58, 0.85), rgba(11, 29, 58, 0.85)),
    url("images/hero-image.avif") center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 85px;
  padding: 0 8%;
}

.hero-pages h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-pages p {
  color: #ddd;
  max-width: 600px;
  margin: auto;
}

.content-wrapper {
  max-width: 1300px; /* Keeps your preferred width */
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 COLUMNS */
  gap: 40px;
}
/* ========================== ABOUT PAGE ========================== */

/* =========================================
   GLOBAL SECTION STRUCTURE (CONSISTENT)
========================================= */

.about-section,
.mission-vision,
.business-segments,
.why-us-modern,
.cta {
  padding: 100px 20px;
}

.about-container,
.mv-container,
.segments-container,
.why-container,
.cta-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* =========================================
   ABOUT TWO COLUMN
========================================= */

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-column img {
  width: 100%;
  border-radius: 12px;
}

/* =========================================
   MISSION & VISION
========================================= */

.mission-vision {
  background: linear-gradient(to bottom, #f9fafb, #f3f6f9);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.mv-card {
  position: relative;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 14px;
  transition: 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--secondary);
}

.mv-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.mv-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--primary);
}

.mv-card p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
}

/* =========================================
   BUSINESS SEGMENTS
========================================= */

.business-section {
  background: #f4f6fb;
}
.segments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card Base */
.segment-card {
  position: relative;
  background: linear-gradient(145deg, #0b1d3a, #132b52);
  color: white;
  padding: 60px 45px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Gold Vertical Accent */
.segment-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  height: 60px;
  width: 4px;
  background: #d4af37;
  border-radius: 4px;
}

/* Soft radial glow */
.segment-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Hover Effect */
.segment-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

/* Title */
.segment-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Description */
.segment-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e6f5;
  position: relative;
  z-index: 1;
}

/* =========================================
   WHY US SECTION
========================================= */

.why-us-modern {
  background: #f8f9fc;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 15px;
}

.why-card p {
  font-size: 16px;
  color: var(--text-dark);
}

/* =========================================
   CTA SECTION
========================================= */

.cta {
  background: var(--primary);
  color: white;
  text-align: center;
}

.cta a {
  background: var(--secondary);
  color: black;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  display: inline-block;
  margin-top: 25px;
  transition: 0.3s ease;
}

.cta a:hover {
  transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .segments {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .two-column,
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .segments {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================== SERVICES PAGE ========================== */

/* ===============================
   SERVICES GRID
================================ */
.content-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns desktop */
  gap: 40px;
  margin: auto;
}

/* ===============================
   SERVICE BLOCK (Cards)
================================ */
.service-block {
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  padding: 40px;
  border-radius: 16px;
  border-top: 5px solid var(--secondary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-block:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-block h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 24px;
  letter-spacing: 0.3px;
}

.service-intro {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.7;
}

.service-block ul {
  padding-left: 20px;
  color: var(--text-dark);
  list-style: none; /* remove default bullets for modern look */
}

.service-block ul li {
  position: relative;
  margin-bottom: 12px;
  font-size: 15px;
  padding-left: 20px;
}

/* Add custom bullet */
.service-block ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* ===============================
   RESPONSIVE STRUCTURE
================================ */

/* Large tablets */
@media (max-width: 1200px) {
  .content-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets */
@media (max-width: 768px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .service-block {
    padding: 35px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .service-block h3 {
    font-size: 22px;
  }

  .service-intro,
  .service-block ul li {
    font-size: 16px;
  }
}

/* ========================== BLOG PAGE ========================== */
/* BLOG HERO */

.blog-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.blog-hero p {
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}

/* BLOG SECTION */
.blog-section {
  padding: 80px 20px;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* BLOG CARD */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-category {
  font-size: 13px;
  color: #f4c430;
  font-weight: 600;
}

.blog-content h3 {
  margin: 10px 0;
  font-size: 22px;
}

.blog-content p {
  font-size: 15px;
  color: #555;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: #0d1b3d;
  font-weight: 600;
  text-decoration: none;
}

/* SIDEBAR */
.blog-sidebar .sidebar-box {
  background: #f8f9fb;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.blog-sidebar h4 {
  margin-bottom: 15px;
}

.blog-sidebar ul {
  list-style: none;
  padding: 0;
}

.blog-sidebar li {
  margin-bottom: 10px;
  cursor: pointer;
}

/* LOAD MORE */
.load-more {
  text-align: center;
  margin-top: 40px;
}

.load-more button {
  padding: 12px 30px;
  border: none;
  background: #0d1b3d;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.load-more button:hover {
  background: #f4c430;
  color: #0d1b3d;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-container {
    grid-template-columns: 1fr;
  }
}

/* ========================== FIRST BLOG PAGE ========================== */
/* HERO SECTION */
.blog-hero-single {
  height: 60vh;
  background: url("images/blog-hero.jpg") center/cover no-repeat;
  position: relative;
}

.blog-hero-overlay {
  background: linear-gradient(rgba(13, 27, 61, 0.75), rgba(13, 27, 61, 0.85));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.blog-hero-content {
  max-width: 800px;
  color: #fff;
}

.blog-hero-content h1 {
  font-size: 42px;
  margin: 15px 0;
  line-height: 1.3;
}

.blog-category {
  display: inline-block;
  background: #f4c430;
  color: #0d1b3d;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
}

.post-meta {
  font-size: 14px;
  opacity: 0.85;
}

/* BLOG CONTENT AREA */
.blog-content-wrapper {
  background: #f5f7fa;
  padding: 80px 20px;
}

.single-blog {
  max-width: 750px;
  margin: auto;
  font-size: 17px;
  line-height: 1.9;
  color: #333;
}

/* Lead paragraph */
.lead {
  font-size: 20px;
  font-weight: 500;
  color: #444;
  margin-bottom: 30px;
}

/* Headings */
.single-blog h2 {
  font-size: 26px;
  margin-top: 50px;
  margin-bottom: 15px;
  color: #0d1b3d;
}

/* Paragraph spacing */
.single-blog p {
  margin-bottom: 20px;
}

/* Blockquote */
blockquote {
  border-left: 4px solid #f4c430;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #555;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

/* Share Section */
.share-section {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid #ddd;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.share-section a {
  text-decoration: none;
  color: #0d1b3d;
  font-weight: 600;
  transition: 0.3s;
}

.share-section a:hover {
  color: #f4c430;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero-content h1 {
    font-size: 28px;
  }

  .single-blog {
    font-size: 16px;
  }

  .lead {
    font-size: 18px;
  }
}
/* ========================== CONTACT PAGE ========================== */

/* =========================================
   CONTACT SECTION (Fresh Clean Layout)
========================================= */

.contact-section {
  padding: 80px 20px;
}

.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch; /* FORCE PERFECT ALIGNMENT */
}

/* =========================================
   CONTACT CARD (FORM)
========================================= */
.contact-info-section {
  padding: 80px 5%;
}

.contact-info-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.contact-info-card {
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--primary);
}

.contact-info-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--primary);
}

.contact-info-card p {
  margin: 6px 0;
  font-size: 16px;
}

.contact-info-card a {
  text-decoration: none;
  color: #555;
  transition: 0.3s;
}

.contact-info-card a:hover {
  color: var(--secondary);
}

.contact-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--secondary);
  color: #fff !important;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-info-container {
    grid-template-columns: 1fr;
  }
}

.contact-intro {
  margin-bottom: 25px;
}

.contact-intro h5 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.contact-intro p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.contact-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.contact-card h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 18px;
}

.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.contact-card input,
.contact-card textarea {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.contact-card textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.contact-card button {
  margin-top: 10px;
  padding: 15px;
  border-radius: 8px;
  border: none;
  background: var(--secondary);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-card button:hover {
  transform: translateY(-2px);
}

/* =========================================
   MAPS CARD (TREATED AS ONE UNIT)
========================================= */

.maps-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}

.map-item {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.map-item h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 10px;
}

.map-item iframe {
  flex: 1;
  width: 100%;
  border: 0;
  border-radius: 10px;
  min-height: 220px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-card,
  .maps-card {
    padding: 35px;
  }

  .map-item iframe {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .contact-card h2 {
    font-size: 22px;
  }
}

/* ========================== FOOTER ========================== */

footer {
  background: #061126;
  color: #ccc;
  padding: 50px 8%;
}

/* Adjusted column control */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  column-gap: 20px;
}

/* Add more breathing room after first column */
.footer-grid > div:first-child {
  padding-right: 40px;
}

footer h4 {
  margin-bottom: 15px;
  color: white;
}

footer a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

footer a:hover {
  color: var(--secondary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-top: 1px solid #1e2c4f;
  padding: 15px 20px;
  font-size: 13px;
  color: #ccc;
}

/* Socials aligned left */
.footer-social {
  position: absolute;
  left: 20px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #ccc;
  font-size: 16px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #c9a227;
  transform: translateY(-3px);
}

.footer-copy {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .footer-social {
    position: static;
    transform: none;
    justify-content: center;
  }
}

/* RESPONSIVE */
/* Tablet */
@media (max-width: 992px) {
  section {
    padding: var(--section-spacing-tablet) 0;
  }
}

/* Mobile */
@media (max-width: 600px) {
  section {
    padding: var(--section-spacing-mobile) 0;
  }
}
@media (max-width: 992px) {
  .about-preview,
  .why-content {
    grid-template-columns: 1fr;
  }

  .about-preview img {
    width: 100%;
  }

  /* Restore stacking for footer */
  .footer-grid {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }

  .footer-grid > div:first-child {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
}
