/* ==========================================================================
   PT. ANDALAN BERJAYA NUSANTARA (ICON Facility Services)
   Company Profile Design System & Stylesheet
   ========================================================================== */

/* 1. CSS Custom Properties / Design Tokens */
:root {
  /* Brand Colors */
  --color-primary: #00569E;
  --color-primary-dark: #003666;
  --color-primary-light: #1A7BCC;
  --color-secondary: #00A859;
  --color-secondary-dark: #007A3E;
  --color-accent: #FFC700;
  --color-accent-dark: #D4A300;
  
  /* Neutral Dark / Light Themes */
  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-surface: #F1F5F9;
  --bg-dark: #0B132B;
  --bg-dark-card: #1C2541;

  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-inverse: #FFFFFF;

  /* Accent Gradients */
  --grad-primary: linear-gradient(135deg, #00569E 0%, #002D5A 100%);
  --grad-secondary: linear-gradient(135deg, #00A859 0%, #006B36 100%);
  --grad-gold: linear-gradient(135deg, #FFD000 0%, #FF9100 100%);
  --grad-dark: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);

  /* UI Tokens */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 86, 158, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 86, 158, 0.12);
  --shadow-glow: 0 0 25px rgba(0, 168, 89, 0.3);

  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Global Resets & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

/* Typography Helpers */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 86, 158, 0.08);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.text-center { text-align: center; }

/* 3. Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
  padding: 0.8rem 0;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--grad-primary);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0, 86, 158, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.5px;
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--grad-secondary);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 168, 89, 0.3);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 89, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* 4. Hero Section */
.hero {
  padding-top: 8.5rem;
  padding-bottom: 5rem;
  background: radial-gradient(circle at top right, rgba(0, 168, 89, 0.08) 0%, transparent 50%),
              radial-gradient(circle at top left, rgba(0, 86, 158, 0.08) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  border: 1px solid rgba(0, 86, 158, 0.15);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.hero-pill span {
  background: var(--color-accent);
  color: var(--bg-dark);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 86, 158, 0.3);
}

.btn-outline {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: rgba(0, 86, 158, 0.05);
  transform: translateY(-3px);
}

.hero-iso-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.iso-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.iso-badge-item i {
  color: var(--color-secondary);
  font-size: 1.2rem;
}

/* Hero Visual / Cards Stack */
.hero-visual {
  position: relative;
}

.hero-card-main {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  z-index: 2;
}

.main-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bg-surface);
}

.company-avatar {
  width: 56px;
  height: 56px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 800;
}

.card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.stat-box {
  background: var(--bg-surface);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.badge-left {
  top: -20px;
  left: -20px;
}

.badge-right {
  bottom: -20px;
  right: -20px;
  animation-delay: 2s;
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-left .badge-icon {
  background: rgba(0, 168, 89, 0.15);
  color: var(--color-secondary);
}

.badge-right .badge-icon {
  background: rgba(255, 199, 0, 0.2);
  color: var(--color-accent-dark);
}

.badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}

.badge-text small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* 5. About & Legality Section */
.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  background: var(--bg-surface);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: white;
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Vision Mission Cards */
.vison-mission-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vm-card {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
}

.vm-card.visi::before { background: var(--grad-primary); }
.vm-card.misi::before { background: var(--grad-secondary); }

.vm-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vm-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.visi .vm-icon { background: var(--grad-primary); }
.misi .vm-icon { background: var(--grad-secondary); }

.vm-title {
  font-size: 1.4rem;
  font-weight: 800;
}

.vm-content {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 6. Organogram Section */
.organogram-section {
  background: var(--bg-surface);
}

.organogram-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.org-card {
  background: white;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.9);
  text-align: center;
  min-width: 220px;
  transition: var(--transition);
  position: relative;
}

.org-card:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.org-card.top-exec {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.org-card.sec-exec {
  background: var(--grad-secondary);
  color: white;
}

.org-role {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.org-card.top-exec .org-role, .org-card.sec-exec .org-role {
  color: white;
}

.org-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.org-connector-v {
  width: 2px;
  height: 20px;
  background: var(--color-primary-light);
  opacity: 0.4;
}

/* 7. Services Section (8 Services) */
.services {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: white;
  border-color: var(--color-primary-light);
}

.service-badge-num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  background: rgba(0, 86, 158, 0.08);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 86, 158, 0.2);
}

.service-card:nth-child(even) .service-icon {
  background: var(--grad-secondary);
  box-shadow: 0 6px 16px rgba(0, 168, 89, 0.2);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.svc-tag {
  background: rgba(226, 232, 240, 0.6);
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
}

.service-link i {
  transition: var(--transition);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* 8. Certifications Section */
.certifications {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.certifications .section-title {
  color: white;
}

.certifications .section-subtitle {
  color: var(--text-light);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.cert-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cert-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-secondary);
  box-shadow: 0 12px 30px rgba(0, 168, 89, 0.2);
}

.cert-badge {
  display: inline-block;
  background: var(--grad-secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.cert-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: white;
}

.cert-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* 9. Clients & Portfolio Section */
.clients {
  background: var(--bg-surface);
}

.client-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.client-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.client-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.client-logo-placeholder {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.client-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.client-category {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 10. Branch Locations Section */
.branches {
  background: white;
}

.branches-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
}

.branch-highlight-card {
  background: var(--grad-primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.branch-hl-badge {
  background: var(--color-accent);
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 1rem;
}

.branch-hl-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.branch-hl-address {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.branch-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
}

.branch-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Custom Scrollbar */
.branch-grid::-webkit-scrollbar {
  width: 6px;
}
.branch-grid::-webkit-scrollbar-track {
  background: var(--bg-surface);
  border-radius: 10px;
}
.branch-grid::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: 10px;
}

.branch-item-card {
  background: var(--bg-surface);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition);
  cursor: pointer;
}

.branch-item-card:hover, .branch-item-card.active {
  background: white;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.branch-city {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.branch-detail {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 11. Contact Section */
.contact {
  background: var(--bg-surface);
}

.contact-card-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-info-side {
  background: var(--grad-dark);
  color: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-info-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.info-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.info-text p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.contact-form-side {
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  transition: var(--transition);
  font-size: 0.95rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 86, 158, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 110px;
}

/* 12. Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* 13. Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .branches-layout, .contact-card-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    clip-path: circle(0% at top right);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-menu.active {
    clip-path: circle(150% at top right);
  }

  .mobile-toggle {
    display: block;
  }

  .services-grid, .certs-grid, .clients-grid, .branch-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-grid, .about-features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    display: none;
  }
}
