/* ============================================
   GRANDSKY FACILITY & MANAGEMENT SERVICES LLP
   Main Stylesheet
   ============================================ */

/* ---------- CSS Variables (Logo Colors) ---------- */
:root {
  --navy:        #1a2d5a;   /* deep navy — logo text */
  --navy-dark:   #111e3d;   /* darker navy for hover/footer */
  --navy-light:  #233672;   /* slightly lighter navy */
  --sky:         #2e7fc1;   /* sky blue — left logo circle */
  --sky-light:   #4a9fd4;   /* lighter sky */
  --teal:        #3aaa8f;   /* teal-green — logo center overlap */
  --teal-light:  #5dc4a8;   /* lighter teal */
  --green:       #7ab648;   /* sage green — right logo circle */
  --green-light: #94cc61;   /* lighter sage */

  --white:       #ffffff;
  --off-white:   #f4f7fb;   /* slightly blue-tinted page bg */
  --light-gray:  #e8eef6;
  --mid-gray:    #9aaac0;
  --text-dark:   #1a2d5a;   /* reuse navy for body text */
  --text-body:   #3d4f6e;
  --text-muted:  #6b7fa0;

  --shadow-sm:   0 2px 8px rgba(26,45,90,0.08);
  --shadow-md:   0 4px 20px rgba(26,45,90,0.12);
  --shadow-lg:   0 8px 40px rgba(26,45,90,0.16);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --transition:  0.25s ease;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, 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);
  background: var(--off-white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout Utilities ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(26,45,90,0.15);
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}
.badge-teal  { background: rgba(58,170,143,0.12); color: #0d7a60; }
.badge-navy  { background: rgba(26,45,90,0.1);   color: var(--navy); }
.badge-sky   { background: rgba(46,127,193,0.12); color: #1a5f99; }
.badge-green { background: rgba(122,182,72,0.15); color: #4d8010; }

/* ---------- Icon Box ---------- */
.icon-box {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 26px; height: 26px; }
.icon-box-navy  { background: rgba(26,45,90,0.1);   color: var(--navy); }
.icon-box-teal  { background: rgba(58,170,143,0.12); color: var(--teal); }
.icon-box-sky   { background: rgba(46,127,193,0.12); color: var(--sky); }
.icon-box-green { background: rgba(122,182,72,0.15); color: var(--green); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-menu a:hover { background: var(--off-white); color: var(--navy); }
.mobile-menu .btn { margin-top: 1rem; justify-content: center; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 130px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f4f7fb 0%, #e8f0f8 50%, #edf7f4 100%);
}

/* Decorative background circles */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,127,193,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,170,143,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(58,170,143,0.1);
  border: 1px solid rgba(58,170,143,0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #0d7a60;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero-title { margin-bottom: 1.5rem; color: var(--navy); }
.hero-title span { color: var(--teal); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.stat-item {}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Hero visual card */
.hero-visual {
  position: relative;
}
.float-badge-1 {
  top: -1.5rem; left: -1.5rem;
}
.float-badge-1 .val { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); font-weight: 700; }
.float-badge-1 .lbl { font-size: 0.72rem; color: var(--text-muted); }

.float-badge-2 {
  bottom: -1rem; right: -1.5rem;
  display: flex; align-items: center; gap: 0.5rem; color: var(--teal);
}
.float-badge-2 svg { width: 20px; height: 20px; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-card-logo { width: 140px; margin-bottom: 1.25rem; }
.hero-card h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 0.25rem; }
.hero-card p { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }

.hero-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
}
.hero-service-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dark);
}
.hero-service-chip svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }

/* Floating badges on hero card */
.float-badge {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.float-badge-1 {
  top: -1.5rem; left: -1.5rem;
}
.float-badge-1 .val { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); font-weight: 700; }
.float-badge-1 .lbl { font-size: 0.72rem; color: var(--text-muted); }

.float-badge-2 {
  bottom: -1rem; right: -1.5rem;
  display: flex; align-items: center; gap: 0.5rem; color: var(--teal);
}
.float-badge-2 svg { width: 20px; height: 20px; }

/* ============================================
   SERVICES SECTION (home preview)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card .icon-box { margin-bottom: 1.25rem; }
.service-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--navy); }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-card .link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.service-card .link:hover { gap: 0.6rem; }
.service-card .link svg { width: 14px; height: 14px; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-img-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 60%, var(--teal) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.about-img-wrap::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.04'%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-img-wrap img { width: 160px; position: relative; z-index: 1; filter: brightness(0) invert(1); }

.about-stat-cards {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mini-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  text-align: right;
}
.mini-stat .num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.mini-stat .lbl { font-size: 0.72rem; color: var(--text-muted); }

.about-content .section-label { display: block; }
.about-list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
}
.about-list li svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }

/* Values row */
.values-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-card .icon-box { margin: 0 auto 1rem; }
.value-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.4rem; }
.value-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,170,143,0.15) 0%, transparent 70%);
}
.why-section .section-label { color: var(--teal-light); }
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(58,170,143,0.4);
  transform: translateY(-3px);
}
.why-card .icon-box { background: rgba(58,170,143,0.15); color: var(--teal-light); margin-bottom: 1.25rem; }
.why-card h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.contact-info-card > p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 2rem; }

.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; }
.contact-info-item .icon-box {
  background: rgba(255,255,255,0.1);
  color: var(--teal-light);
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.contact-info-item .icon-box svg { width: 20px; height: 20px; }
.contact-info-item .info-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.contact-info-item .info-value { font-size: 0.92rem; color: var(--white); line-height: 1.5; }

.contact-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 2rem 0; }

.response-times { }
.response-times h4 { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 1rem; }
.response-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.response-item:last-child { border: none; }
.response-item .ri-label { color: rgba(255,255,255,0.55); }
.response-item .ri-time { color: var(--teal-light); font-weight: 500; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}
.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(58,170,143,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7fa0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--teal);
  cursor: pointer;
}
.form-check label { font-size: 0.82rem; color: var(--text-muted); cursor: pointer; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .checkmark {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(58,170,143,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--teal);
}
.form-success .checkmark svg { width: 28px; height: 28px; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .nav-logo-name { color: var(--white); }
.footer-brand .nav-logo-sub { color: rgba(255,255,255,0.45); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 300px; }

.footer-col h4 { color: var(--white); font-size: 0.85rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--teal-light); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e4a78 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .section-label { color: var(--teal-light); }
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.service-full-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(58,170,143,0.3);
}
.service-full-card .icon-box { margin-bottom: 1.25rem; }
.service-full-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-full-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.service-features { display: flex; flex-direction: column; gap: 0.5rem; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-body);
}
.service-features li svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }

/* Services CTA */
.services-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--sky) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.services-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.services-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.services-cta p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.services-cta .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
  height: 130px;
  display: flex; align-items: center; justify-content: center;
}
.team-initials {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.team-info { padding: 1.25rem; }
.team-info h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.team-info span { font-size: 0.8rem; color: var(--text-muted); }

/* Timeline */
.timeline { position: relative; margin-top: 3rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--sky));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline-year {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.timeline-item h4 { color: var(--navy); margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.map-placeholder {
  background: linear-gradient(135deg, var(--light-gray) 0%, #dce7f5 100%);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--light-gray);
  margin-top: 2rem;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--navy); margin-bottom: 1rem; opacity: 0.4; }
.map-placeholder p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.map-placeholder a { color: var(--sky); font-weight: 500; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: 110px; }
  .hero-stats { gap: 1.5rem; }

  .section  { padding: 60px 0; }
  .values-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .float-badge-1, .float-badge-2 { display: none; }
  .about-stat-cards { position: static; flex-direction: row; margin-top: 1rem; }
  .services-full-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-services-grid { grid-template-columns: 1fr; }
  .contact-form-wrap, .contact-info-card { padding: 1.5rem; }
  .services-cta { padding: 2.5rem 1.5rem; }
}