/* ============================================================
   BORDERLESS OIL & GAS LTD — Main Stylesheet
   Primary Colors:
     Navy  #0B1F3A
     Gold  #D4A017
     Grey  #5F6B7A
     White #FFFFFF
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:      #0B1F3A;
  --navy-dark: #071428;
  --gold:      #D4A017;
  --gold-dark: #b88a0e;
  --grey:      #5F6B7A;
  --grey-light:#f4f6f9;
  --white:     #ffffff;
  --text:      #2c3e50;
  --text-light:#6c757d;
  --border:    #e0e6ed;
  --shadow:    0 4px 24px rgba(11,31,58,.12);
  --shadow-lg: 0 12px 48px rgba(11,31,58,.18);
  --radius:    8px;
  --radius-lg: 14px;
  --transition:0.3s ease;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul  { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }

/* ── Section Helpers ───────────────────────────────────────── */
.section { padding: 90px 0; }
.section-alt { background: var(--grey-light); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: .97rem;
}
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ── Top Bar ───────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212,160,23,.2);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar span { display: flex; align-items: center; gap: 6px; }
.topbar a { color: rgba(255,255,255,.8); }
.topbar a:hover { color: var(--gold); }
.topbar i { color: var(--gold); }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  transition: all var(--transition);
}
.social-icons a:hover { background: var(--gold); color: #fff; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  transition: all var(--transition);
}
.navbar.scrolled { background: rgba(11,31,58,.97); backdrop-filter: blur(8px); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

/* Logo */
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo-img { height: 54px; width: auto; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-oil {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
}
.logo-sub {
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-list  { display: flex; align-items: center; gap: 0; }

.nav-list > li { position: relative; }
.nav-list a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,.88);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .3px;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-list a:hover, .nav-list a.active { color: var(--gold); }
.nav-list a.active { font-weight: 700; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 230px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
  z-index: 999;
  padding: 8px 0;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  color: var(--navy) !important;
  font-size: .85rem;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.dropdown li a:hover { background: var(--grey-light); color: var(--gold) !important; }
.dropdown li a i { color: var(--gold); width: 16px; }

.nav-cta { margin-left: 16px; padding: 9px 22px; font-size: .83rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11,31,58,.92) 0%, rgba(11,31,58,.70) 60%, rgba(11,31,58,.50) 100%),
    url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?w=1400&q=80') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 38px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}
.hero-scroll .scroll-dot {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll .scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%      { opacity: .4; transform: translateX(-50%) translateY(6px); }
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.25);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0,0,0,.06); }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .85;
}

/* ── About Section ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
}
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  display: block;
}
.about-img-badge .badge-text {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-content .label {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.about-content h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 20px; }
.about-content p  { color: var(--text-light); margin-bottom: 16px; font-size: .97rem; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}
.value-item i { color: var(--gold); font-size: 1rem; }

/* ── Services Cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(11,31,58,.07);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), #1a3a5c);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.service-icon i { font-size: 1.5rem; color: var(--white); }
.service-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 12px; }
.service-card p  { color: var(--text-light); font-size: .88rem; line-height: 1.65; }
.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .83rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--gold);
  text-decoration: none;
  transition: gap var(--transition);
}
.service-card .read-more:hover { gap: 10px; }

/* ── Projects Grid ─────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(11,31,58,.08);
  background: var(--white);
  transition: all var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.project-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover .project-img-wrap img { transform: scale(1.06); }
.project-category {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}
.project-body { padding: 22px 24px; }
.project-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.project-body p  { font-size: .85rem; color: var(--text-light); margin-bottom: 14px; }
.project-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--text-light);
}
.project-meta span { display: flex; align-items: center; gap: 5px; }
.project-meta i { color: var(--gold); }

/* ── Why Choose Us ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon i { font-size: 1.2rem; color: var(--white); }
.why-item h4 { font-size: .95rem; margin-bottom: 5px; }
.why-item p  { font-size: .85rem; color: var(--text-light); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(212,160,23,.08);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(212,160,23,.06);
  border-radius: 50%;
}
.cta-section h2 {
  font-size: clamp(1.7rem,3vw,2.4rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-section p {
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: .97rem;
  position: relative; z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── Certifications ────────────────────────────────────────── */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(11,31,58,.07);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.cert-card img {
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
}
.cert-icon-placeholder {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--navy), #1a3a5c);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.cert-icon-placeholder i { font-size: 1.8rem; color: var(--gold); }
.cert-card h4 { font-size: .88rem; color: var(--navy); margin-bottom: 6px; }
.cert-card p  { font-size: .78rem; color: var(--text-light); }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials { background: var(--navy); padding: 90px 0; }
.testimonials .section-header h2,
.testimonials .section-header .label { color: var(--white); }
.testimonials .divider { background: var(--gold); }
.testimonials .section-header p { color: rgba(255,255,255,.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,.1); }
.quote-icon { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.testimonial-card p {
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.author-name {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}
.author-role { font-size: .78rem; color: var(--gold); }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1400&q=60') center/cover no-repeat;
  opacity: .1;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb i  { font-size: .6rem; }

/* ── Contact Form ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon i { font-size: 1.1rem; color: var(--white); }
.contact-info-item h4 { font-size: .88rem; color: var(--navy); margin-bottom: 4px; }
.contact-info-item p  { font-size: .85rem; color: var(--text-light); }
.contact-info-item a  { color: var(--text-light); }
.contact-info-item a:hover { color: var(--gold); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-form h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: .83rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-family: var(--font-head); }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: #fafbfd;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,.12);
  background: var(--white);
}
textarea { resize: vertical; min-height: 130px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235F6B7A' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-success {
  display: none;
  background: #eafaf1;
  border: 1px solid #27ae60;
  color: #1e8449;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: .9rem;
}
.form-error {
  display: none;
  background: #fdecea;
  border: 1px solid #c0392b;
  color: #922b21;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: .9rem;
}
.map-wrap { margin-top: 60px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

/* ── Page Content Sections ─────────────────────────────────── */
.content-block { max-width: 820px; }
.content-block p { color: var(--text-light); margin-bottom: 18px; font-size: .97rem; }
.content-block h3 { font-size: 1.2rem; color: var(--navy); margin: 28px 0 12px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.page-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--navy-dark); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 18px;
  display: block;
}
.footer-logo-text span { color: var(--gold); }
.footer-about {
  color: rgba(255,255,255,.6);
  font-size: .87rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-heading {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .87rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links i { color: var(--gold); font-size: .7rem; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.6);
  font-size: .87rem;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  color: rgba(255,255,255,.45);
  font-size: .8rem;
}

/* ── Back to Top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(212,160,23,.4);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ── Alert messages ────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: .9rem;
  display: flex; align-items: center; gap: 10px;
}
.alert-success { background: #eafaf1; color: #1e8449; border-left: 4px solid #27ae60; }
.alert-danger   { background: #fdecea; color: #922b21; border-left: 4px solid #c0392b; }
.alert-info     { background: #eaf4fb; color: #1a5276; border-left: 4px solid #2e86c1; }

/* ── Reveal animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .projects-grid  { grid-template-columns: repeat(2, 1fr); }
  .certs-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-img-badge{ right: 0; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar-inner { height: 64px; }
  .nav-toggle  { display: flex; }
  .nav-menu {
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--transition);
    gap: 0;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-list  { flex-direction: column; width: 100%; }
  .nav-list > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-list a { padding: 14px 0; font-size: .95rem; }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,.05);
    border-radius: 0;
    padding: 0;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { color: rgba(255,255,255,.7) !important; padding: 10px 20px; }
  .nav-cta { margin: 20px 0 0; width: 100%; justify-content: center; }

  .hero { min-height: 80vh; }
  .hero h1 { font-size: 1.9rem; }
  .about-grid, .why-grid, .contact-grid, .two-col { grid-template-columns: 1fr; }
  .about-img-badge { position: static; margin-top: 20px; display: inline-block; }
  .about-img-main { height: 300px; }
  .services-grid, .projects-grid, .certs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .hero-btns { flex-direction: column; }
  .cta-btns  { flex-direction: column; align-items: center; }
}
