@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --navy: #0d1b2a;
  --navy2: #1a2d45;
  --teal: #00c8e0;
  --teal2: #00a8bc;
  --white: #ffffff;
  --light: #f0f6ff;
  --gray: #6b7a8d;
  --gold: #f0b429;
  --dark-bar: #0a1628;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* TOP CONTACT BAR */
.top-bar {
  background: var(--dark-bar);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 2px solid var(--teal);
}
.top-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar .left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar .right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  font-weight: 500;
}
.top-bar a:hover { color: var(--teal); }
.top-bar .badge {
  background: var(--teal);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.top-bar svg { width: 14px; height: 14px; flex-shrink: 0; }
.top-phone {
  color: var(--teal) !important;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.top-phone:hover { color: var(--white) !important; }


/* NAVIGATION */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-wrap img { height: 52px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .brand {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-text .sub {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); background: rgba(0,200,224,0.08); }
.nav-cta {
  background: var(--teal);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--teal2) !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, #0d2940 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1581092921461-eab62e97a780?w=1600&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(0,200,224,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,200,224,0.05) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left { color: var(--white); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,224,0.15);
  border: 1px solid rgba(0,200,224,0.3);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-left h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-left h1 span { color: var(--teal); }
.hero-left p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,200,224,0.3);
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,200,224,0.4); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

/* UNIFORM HERO BUTTONS */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,200,224,0.3);
  min-width: 200px;
  text-align: center;
  white-space: normal;
}
.btn-hero:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,200,224,0.4); }
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: none;
}
.btn-hero-outline:hover { border-color: var(--teal); color: var(--teal); background: transparent; }

/* CARD BUTTONS */
.card-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  width: 100%;
  text-align: center;
  white-space: normal;
}
.btn-card-primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,200,224,0.3);
}
.btn-card-primary:hover { background: var(--white); transform: translateY(-2px); }
.btn-card-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-card-outline:hover { border-color: var(--teal); color: var(--teal); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* HERO FORM CARD */
.hero-right {}
.contact-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px;
  color: var(--white);
}
.contact-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-card .sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); background: rgba(255,255,255,0.12); }
.form-group select option { background: var(--navy2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,224,0.3); }

/* NADCA STRIP */
.nadca-strip {
  background: var(--teal);
  padding: 16px 20px;
  text-align: center;
}
.nadca-strip .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nadca-strip span { font-weight: 700; color: var(--navy); font-size: 14px; display: flex; align-items: center; gap: 6px; }

/* SECTION STYLES */
.section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(0,200,224,0.1);
  color: var(--teal2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(0,200,224,0.25);
}
.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header h2 span { color: var(--teal2); }
.section-header p { font-size: 16px; color: var(--gray); max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* SERVICES GRID */
.services-section { background: var(--navy); padding: 80px 0; overflow: hidden; }
.services-section .section-header h2 { color: var(--white); }
.services-section .section-header p { color: rgba(255,255,255,0.6); }
.services-grid { 
  display: flex; 
  flex-direction: column; 
  gap: 32px; 
  padding: 0 20px; 
  max-width: 800px; 
  margin: 0 auto; 
}
.service-slide {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  color: var(--white);
  transition: all 0.3s;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.service-content { flex: 1; }
.service-art {
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(0,200,224,0.3);
}
@media (max-width: 800px) {
  .service-slide { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 22px; }
  .service-art { width: 100%; height: 200px; border-radius: 10px; }
}
@media (max-width: 480px) {
  .service-art { height: 160px; }
}
.service-slide:hover {
  background: rgba(0,200,224,0.08);
  border-color: rgba(0,200,224,0.3);
  transform: translateY(-4px);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(0,200,224,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0,200,224,0.2);
}
.service-icon svg { width: 30px; height: 30px; color: var(--teal); }
.service-slide h3 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-slide p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; }
.service-tag {
  display: inline-block;
  background: rgba(0,200,224,0.2);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 16px;
  letter-spacing: 0.5px;
}

/* WHY US */
.why-section { background: var(--light); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: rgba(0,200,224,0.3); }
.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-icon svg { width: 26px; height: 26px; color: white; }
.why-card h4 { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.why-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* AREAS */
.areas-section {}
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.area-tag {
  background: var(--light);
  border: 1px solid rgba(0,200,224,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy2);
  text-align: center;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.area-tag:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.area-tag svg { width: 12px; height: 12px; }

/* CONTACT SECTION */
.contact-section { background: var(--navy); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-family: 'Outfit', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.contact-info h2 span { color: var(--teal); }
.contact-info > p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,200,224,0.12);
  border: 1px solid rgba(0,200,224,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--teal); }
.contact-detail-text { color: var(--white); }
.contact-detail-text .label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-detail-text a { color: var(--white); text-decoration: none; font-size: 15px; font-weight: 600; display: block; transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--teal); }
.contact-detail-text span { font-size: 14px; color: rgba(255,255,255,0.75); }
.text-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.text-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,200,224,0.12);
  border: 1px solid rgba(0,200,224,0.25);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.text-btn:hover { background: var(--teal); color: var(--navy); }
.text-btn svg { width: 14px; height: 14px; }
.contact-form-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px;
}
.contact-form-box h3 { font-family: 'Outfit', sans-serif; font-size: 22px; color: var(--white); font-weight: 700; margin-bottom: 24px; }

/* FOOTER */
footer {
  background: var(--dark-bar);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 20px 20px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 12px; max-width: 300px; }
.footer-col h4 { color: var(--teal); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; }
.footer-bottom a:hover { color: var(--teal); }

/* MOBILE */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-slide { min-width: calc(50% - 12px); }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 16px 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .service-slide { min-width: calc(100% - 0px); }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar .left { gap: 8px; font-size: 11px; }
  .top-bar .right { gap: 8px; font-size: 11px; }
  .top-bar .container { flex-direction: column; align-items: flex-start; gap: 6px; }
  .top-phone { font-size: 12px; }
  .hero-left h1 { font-size: clamp(26px, 7vw, 40px); }
  .hero-left p { font-size: 14px; }
  .hero-btns { flex-direction: column; }
  .btn-hero { min-width: unset; width: 100%; font-size: 13px; padding: 12px 16px; }
  .contact-card h3 { font-size: 18px; }
  .btn-card { font-size: 13px; padding: 12px 16px; }
  .nadca-strip span { font-size: 12px; }
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.success-msg {
  background: rgba(0,200,224,0.15);
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
  display: none;
}
