/* ============================================================
   NATRAJA ENTERPRISES — MASTER STYLESHEET
   Brand: Deep Teal Green #0F4C3A | Gold Accent #C9A227
   Author: Growbiz Innovations | www.growbizinnovations.com
   ============================================================ */

/* ─── GOOGLE FONTS IMPORT ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* Brand Colors */
  --primary:        #0F4C3A;
  --primary-dark:   #0a3429;
  --primary-light:  #1a6b52;
  --secondary:      #1D6E5C;
  --accent:         #C9A227;
  --accent-dark:    #a8871e;
  --accent-light:   #d9b84a;

  /* Neutrals */
  --bg-offwhite:    #F7F9F8;
  --bg-white:       #FFFFFF;
  --text-dark:      #1A1A1A;
  --text-muted:     #5C6B68;
  --text-light:     #8a9e9a;
  --border-color:   #e2eae7;

  /* Typography */
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad:    90px;
  --section-pad-sm: 60px;
  --container-max:  1240px;

  /* Effects */
  --shadow-sm:      0 2px 8px rgba(15,76,58,0.08);
  --shadow-md:      0 6px 24px rgba(15,76,58,0.12);
  --shadow-lg:      0 16px 48px rgba(15,76,58,0.16);
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --radius-xl:      24px;

  /* Transitions */
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul { list-style: none; }

button, input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ─── UTILITY CLASSES ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.section-pad-sm {
  padding: var(--section-pad-sm) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title .accent-word {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.75;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* Backgrounds */
.bg-offwhite { background: var(--bg-offwhite); }
.bg-primary  { background: var(--primary); }
.bg-dark     { background: #0a1f1a; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}

.btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.35);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.35);
}

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

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

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1.05rem;
}

/* ─── TOP MINI BAR ─── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: #0F4C3A;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  font-size: 0.8rem;
}

/* Colored icon badges for each contact item */
.topbar-left a:nth-child(1) i {        /* Office Phone — sky blue */
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1E88E5;
  color: #fff;
  border-radius: 5px;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.topbar-left a:nth-child(3) i {        /* Mobile — WhatsApp green */
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 5px;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.topbar-left a:nth-child(5) i {        /* Email — warm gold */
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F59E0B;
  color: #fff;
  border-radius: 5px;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.topbar a:hover {
  color: #fff;
  letter-spacing: 0.01em;
}

.topbar .social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar .social-icons a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.72rem;
  transition: var(--transition);
  color: #fff;
}

/* Facebook */
.topbar .social-icons a:nth-child(1) { background: #1877F2; }
/* Instagram */
.topbar .social-icons a:nth-child(2) { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
/* Twitter/X */
.topbar .social-icons a:nth-child(3) { background: #000; }

.topbar .social-icons a:hover {
  filter: brightness(1.2);
  transform: scale(1.15);
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

.growbiz-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.growbiz-credit a {
  color: var(--accent-light);
  font-weight: 500;
}

/* ─── HEADER / NAVIGATION ─── */
.site-header {
  position: sticky;
  top: 36px;
  z-index: 1000;
  background: var(--bg-white);
  box-shadow: none;
  transition: box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 20px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  transition: transform var(--transition);
}

.header-logo:hover img {
  transform: scale(1.05);
  border: none;
  box-shadow: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
  border-radius: 1px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0F4C3A 0%, #1D6E5C 100%);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 76, 58, 0.22);
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.hamburger:hover, .hamburger:active {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(15, 76, 58, 0.35);
  border-color: var(--accent);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: #FFFFFF;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.hamburger.open {
  background: linear-gradient(135deg, #C9A227 0%, #E5C158 100%);
  border-color: #ffffff;
}

.hamburger.open span {
  background: #0F4C3A;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--primary);
  z-index: 1001;
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent-light);
  background: rgba(255,255,255,0.08);
  padding-left: 24px;
}

.mobile-nav .btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.mobile-nav-close:hover {
  background: rgba(255,255,255,0.2);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav-overlay.open {
  opacity: 1;
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: calc(100vh - 36px - 84px);
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
  padding: 16px 0;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 28, 23, 0.72) 0%,
    rgba(8, 28, 23, 0.45) 45%,
    rgba(8, 28, 23, 0.15) 100%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  background: transparent;
  padding: 0;
  position: relative;
}

.hero-content::before {
  display: none;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #C9A227 0%, #E5C158 100%);
  color: #0F4C3A;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.45);
  width: fit-content;
}

.hero-label i {
  color: #0F4C3A;
  font-size: 0.85rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.16;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-headline .highlight {
  color: var(--accent-light);
  display: block;
}

.hero-tagline {
  font-size: 0.95rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-style: italic;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-description {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 540px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Fallback hero image */
.hero-img-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--primary);
  padding: 22px 0;
  overflow: hidden;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-badge i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ─── ABOUT SNAPSHOT (HOME) ─── */
.about-snapshot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-img-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-img-badge .badge-txt {
  font-size: 0.78rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about-content .section-subtitle {
  margin-bottom: 24px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.about-highlight-item i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: rgba(15,76,58,0.2);
}

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

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-icon.icon-blue {
  background: rgba(30, 136, 229, 0.12);
  color: #1E88E5;
}

.service-icon.icon-teal {
  background: rgba(15, 118, 110, 0.12);
  color: #0F766E;
}

.service-icon.icon-indigo {
  background: rgba(79, 70, 229, 0.12);
  color: #4F46E5;
}

.service-icon.icon-rose {
  background: rgba(225, 29, 72, 0.12);
  color: #E11D48;
}

.service-icon.icon-orange {
  background: rgba(234, 88, 12, 0.12);
  color: #EA580C;
}

.service-icon.icon-purple {
  background: rgba(147, 51, 234, 0.12);
  color: #9333EA;
}

.service-icon i {
  font-size: 1.5rem;
  color: inherit;
}

.service-card:hover .service-icon {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
}

/* Card Button: Explore */
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(15, 76, 58, 0.08);
  border: 1px solid rgba(15, 76, 58, 0.15);
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
}

.card-btn i {
  font-size: 0.78rem;
  transition: transform var(--transition);
}

.card-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 76, 58, 0.25);
}

.card-btn:hover i {
  transform: translateX(4px);
  color: var(--accent-light);
}

/* ─── WHY CHOOSE US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15,76,58,0.15);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.why-icon i {
  font-size: 1.4rem;
  color: #fff;
}

.why-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

/* ─── INDUSTRIES ─── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.industry-card:hover {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-card:hover::after {
  transform: scaleX(1);
}

.industry-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  transition: var(--transition);
}

.industry-card:hover .industry-icon {
  color: var(--accent-light);
}

.industry-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.industry-card:hover h4 {
  color: #fff;
}

.industry-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
  transition: var(--transition);
}

.industry-card:hover p {
  color: rgba(255,255,255,0.75);
}

/* ─── PORTS STRIP ─── */
.ports-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.ports-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ports-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ports-content .section-title {
  color: #fff;
  margin-bottom: 8px;
}

.ports-content .section-label {
  color: var(--accent-light);
}

.ports-content .section-label::before {
  background: var(--accent-light);
}

.ports-subtitle {
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  font-size: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.ports-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.port-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.port-tag i {
  color: var(--accent-light);
}

.port-tag:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

/* ─── TESTIMONIAL / QUOTE ─── */
.quote-section {
  background: var(--bg-offwhite);
  padding: 80px 0;
  text-align: center;
}

.quote-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: -20px;
  display: block;
}

blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.55;
  margin: 0;
  padding: 0;
}

.quote-author {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quote-author span {
  color: var(--accent);
  font-weight: 600;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-banner h2 span {
  color: var(--accent-light);
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── STATS COUNTERS ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .suffix {
  font-size: 1.6rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ─── PAGE BANNER (Inner pages) ─── */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-banner-inner {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a {
  color: var(--accent-light);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb i {
  font-size: 0.7rem;
  opacity: 0.6;
}

/* ─── SERVICES PAGE ─── */
.service-detail-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-detail-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: rgba(15,76,58,0.25);
  transform: translateY(-4px);
}

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.service-detail-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.service-detail-icon.icon-bg-blue { background: rgba(30, 136, 229, 0.14); color: #1E88E5; }
.service-detail-icon.icon-bg-teal { background: rgba(15, 118, 110, 0.14); color: #0F766E; }
.service-detail-icon.icon-bg-indigo { background: rgba(79, 70, 229, 0.14); color: #4F46E5; }
.service-detail-icon.icon-bg-rose { background: rgba(225, 29, 72, 0.14); color: #E11D48; }
.service-detail-icon.icon-bg-orange { background: rgba(234, 88, 12, 0.14); color: #EA580C; }
.service-detail-icon.icon-bg-amber { background: rgba(217, 119, 6, 0.14); color: #D97706; }
.service-detail-icon.icon-bg-purple { background: rgba(147, 51, 234, 0.14); color: #9333EA; }

.service-detail-icon i {
  font-size: 2rem;
  color: inherit;
}

.service-detail-card:hover .service-detail-icon {
  transform: scale(1.08);
}

.service-detail-header h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-detail-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-sublist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.service-sublist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 10px 14px;
  background: var(--bg-offwhite);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
  font-weight: 500;
}

.service-sublist li i {
  color: #0F766E;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.service-detail-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
}

.service-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(15, 76, 58, 0.08);
  border: 1px solid rgba(15, 76, 58, 0.18);
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
}

.service-action-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(15, 76, 58, 0.25);
}

/* Our Advantage Grid */
.advantage-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-color: rgba(15,76,58,0.25);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--transition);
}

.advantage-icon.icon-bg-amber { background: rgba(217, 119, 6, 0.14); color: #D97706; }
.advantage-icon.icon-bg-blue { background: rgba(30, 136, 229, 0.14); color: #1E88E5; }
.advantage-icon.icon-bg-teal { background: rgba(15, 118, 110, 0.14); color: #0F766E; }
.advantage-icon.icon-bg-rose { background: rgba(225, 29, 72, 0.14); color: #E11D48; }

.advantage-icon i {
  font-size: 1.6rem;
  color: inherit;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1);
}

.advantage-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Registration Services */
.reg-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.reg-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.reg-service-item:hover {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  transform: translateX(4px);
}

.reg-service-item i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.reg-service-item:hover i {
  color: var(--accent-light);
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--bg-white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── ABOUT PAGE ─── */
.mission-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
  padding: 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,162,39,0.2) 0%, transparent 70%);
}

.mission-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.mission-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.mission-icon {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0.9;
}

/* Certifications */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cert-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: rgba(15,76,58,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.cert-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.cert-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.cert-card .cert-num {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: monospace;
  background: var(--bg-offwhite);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 8px;
}

/* Why choose (detailed) */
.why-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.why-detail-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.why-detail-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-detail-icon i {
  color: #fff;
  font-size: 1.2rem;
}

.why-detail-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-detail-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Proprietor card */
.proprietor-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.proprietor-avatar {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 4rem;
  color: rgba(255,255,255,0.6);
  border: 6px solid var(--bg-offwhite);
  box-shadow: var(--shadow-md);
}

.proprietor-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.proprietor-title {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.proprietor-info p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: #fff;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-card .tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon i {
  color: var(--accent-light);
  font-size: 1.1rem;
}

.contact-item-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

.contact-item-value {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-item-value a {
  color: inherit;
  transition: var(--transition);
}

.contact-item-value a:hover {
  color: var(--accent-light);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

/* Facebook */
.contact-social a:nth-child(1) { background: #1877F2; }
/* Instagram */
.contact-social a:nth-child(2) { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
/* Twitter/X */
.contact-social a:nth-child(3) { background: #000; }
/* WhatsApp */
.contact-social a:nth-child(4) { background: #25d366; }

.contact-social a:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-offwhite);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(15,76,58,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--bg-offwhite);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 400px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(15,76,58,0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-question h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: rgba(15,76,58,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--primary);
}

.faq-item.open .faq-toggle {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #0a1f1a;
  color: rgba(255,255,255,0.8);
}

.footer-main {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 4px;
  border: 2.5px solid rgba(201, 162, 39, 0.7);   /* gold ring */
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08),
              0 4px 16px rgba(0,0,0,0.3);
  transition: transform var(--transition), border-color var(--transition);
}

.footer-logo:hover img {
  transform: scale(1.06);
  border-color: var(--accent);
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition);
}

/* Facebook — brand blue */
.footer-social a:nth-child(1) {
  background: #1877F2;
}

/* Instagram — brand gradient */
.footer-social a:nth-child(2) {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Twitter / X — brand black */
.footer-social a:nth-child(3) {
  background: #000000;
}

.footer-social a:hover {
  transform: translateY(-4px);
  filter: brightness(1.18);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  padding: 3px 0;
}

.footer-links a i {
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 6px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--accent-light);
}

/* Trust section in footer */
.footer-trust {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-reg-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-reg-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-reg-value {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-family: monospace;
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-inner a {
  color: var(--accent-light);
  font-weight: 500;
  transition: var(--transition);
}

.footer-bottom-inner a:hover {
  color: var(--accent);
}

/* ─── FLOATING ELEMENTS ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.whatsapp-float i {
  color: #fff;
  font-size: 1.6rem;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

.back-to-top {
  position: fixed;
  bottom: 94px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* Gold rule divider */
.gold-rule {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 32px;
  border-radius: 2px;
}

/* ─── RESPONSIVE: TABLET (≤1024px) ─── */
@media (max-width: 1024px) {
  :root {
    --section-pad: 64px;
    --section-pad-sm: 44px;
  }

  .site-header {
    top: 0;
  }

  .hero {
    height: auto;
    min-height: 520px;
    padding: 56px 0;
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .about-snapshot {
    gap: 40px;
  }

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

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  .cert-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-sublist {
    grid-template-columns: 1fr;
  }

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

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

  .proprietor-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }
}

/* ─── RESPONSIVE: MOBILE (≤768px) ─── */
@media (max-width: 768px) {
  :root {
    --section-pad: 48px;
    --section-pad-sm: 36px;
  }

  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Hide topbar on mobile so site header sits cleanly at top of phone screen */
  .topbar {
    display: none !important;
  }

  .site-header {
    position: sticky;
    top: 0 !important;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 76, 58, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .header-inner {
    padding: 10px 14px;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }

  .header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    margin-right: 6px;
  }

  .header-logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
  }

  .logo-name {
    font-family: var(--font-heading);
    font-size: clamp(0.78rem, 3.6vw, 0.92rem);
    font-weight: 800;
    color: #0F4C3A;
    letter-spacing: 0.01em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-tagline {
    font-size: clamp(0.5rem, 2.3vw, 0.58rem);
    font-weight: 600;
    color: #1D6E5C;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Hide top CTA button on mobile so hamburger menu button has 100% space and visibility */
  .header-cta .btn {
    display: none !important;
  }

  .header-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
  }

  .hamburger {
    display: flex !important;
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0 !important;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 48px;
  }

  .hero-video-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 28, 23, 0.90) 0%,
      rgba(15, 76, 58, 0.86) 100%
    );
  }

  .hero-label {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .hero-headline {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    line-height: 1.25;
  }

  .hero-description {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    margin-top: 24px;
  }

  .hero-stat {
    padding: 10px 4px;
    text-align: center;
  }

  .hero-stat-number {
    font-size: 1.3rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }

  .trust-strip-inner {
    gap: 16px;
    justify-content: center;
  }

  .trust-divider {
    display: none;
  }

  .about-snapshot {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-img-badge {
    right: 16px;
    bottom: -16px;
    padding: 12px 18px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .advantage-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

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

  .service-sublist {
    grid-template-columns: 1fr;
  }

  .reg-services-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .why-detailed-grid {
    grid-template-columns: 1fr;
  }

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

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

  .mission-section {
    padding: 32px 20px;
  }

  .service-detail-card {
    padding: 24px 20px;
  }

  .service-detail-header {
    flex-direction: column;
    gap: 16px;
  }

  .industry-detail-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }

  .section-header {
    margin-bottom: 32px;
  }
}

/* ─── RESPONSIVE: SMALL MOBILE (≤480px) ─── */
@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .advantage-cards-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .header-cta .btn:not(.btn-sm) {
    display: none;
  }

  .proprietor-card {
    padding: 24px 16px;
  }

  .footer-trust {
    flex-direction: column;
    gap: 16px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float i {
    font-size: 1.4rem;
  }

  .back-to-top {
    bottom: 78px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ─── ACCESSIBILITY ─── */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Print */
@media print {
  .site-header,
  .topbar,
  .whatsapp-float,
  .back-to-top,
  .mobile-nav,
  .mobile-nav-overlay {
    display: none !important;
  }
}
