html {
  background-color: #07162b;
}

body {
  margin: 0;
  padding: 0;
  background-color: #07162b;
  overflow-x: hidden;
}


@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}
/* =========================================
   GLOBAL RESET
========================================= */
html, body {
  overflow-x: hidden;
  width: 100%;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  background:#07162b;
  color:white;
}

/* Container */

.container{
  width:90%;
  max-width:1250px;
  margin:auto;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
  width:100%;

  /* Emerald → Blue dark gradient */
  background:linear-gradient(
  90deg,
  #061526 0%,
  #081b30 50%,
  #0a213a 100%
 );

  padding:20px 0;

  position:sticky;
  top:0;
  z-index:1000;

  /* Bottom divider line */
  border-bottom:1px solid rgba(255,255,255,0.06);
}


/* Flex layout */

.nav-container{
  width:90%;
  max-width:1250px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* =========================================
   LOGO
========================================= */

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{
  height: 44px;
  width:auto;
  object-fit:contain;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.logo-text h2{
  font-size:20px;
  font-weight:700;
  letter-spacing:0.3px;
}

.logo-text span{
  color:#1ec8a5;   /* Emerald */
}

.logo-text p{
  font-size:12px;
  color:#8fa6bf;
  margin-top:2px;
}

/* =========================================
   NAV LINKS
========================================= */

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  margin-left: -90px;

  /* Reduced spacing */
  gap:4px;
}


.nav-links a{
  text-decoration:none;
  color:#b8c7d9;

  font-size:15px;
  font-weight:500;

  padding:7px 14px;
  border-radius:10px;
  

  transition:0.25s ease;
}

/* Hover */

.nav-links a:hover{
  color:white;
  background:rgba(255,255,255,0.06);
  
}

/* Active tab pill */

.nav-links .active{
  background:#132b46;
  color:#1ec8a5;
  font-weight:600;
}

/* =========================================
   RIGHT NAV SECTION
========================================= */

.nav-right{
  display:flex;
  align-items:center;
  margin-left: 140px;
  /* Space between phone & button */
  gap:22px;
}

/* Phone */

.phone{
  color:#b8c7d9;
  font-size:14px;

  display:flex;
  align-items:center;
  gap:6px;
}

/* CTA Button */

.quote-btn{
  text-decoration:none;

  padding:10px 22px;
  border-radius:10px;

  font-size:14px;
  font-weight:600;

  color:white;

  /* Emerald → Blue gradient */
  background:linear-gradient(
    90deg,
    #1ec8a5 0%,
    #2fb4ff 100%
  );

  transition:0.25s ease;
}

.quote-btn:hover{
  opacity:0.9;
}

/* =========================================
   PAGE BANNER (Placeholder Sections)
========================================= */

.page-banner{
  padding:120px 0;
  text-align:center;

  /* Darker than navbar */
  background:linear-gradient(
    180deg,
    #040c16 0%,
    #020814 60%,
    #01060f 100%
  );
}

.page-banner h1{
  font-size:42px;
  font-weight:600;
}

/* =========================================
   FOOTER
========================================= */

.footer{
  width:100%;
  max-width:1250px;
  margin:auto;

  padding:22px 0;

  font-size:14px;
  color:#8fa6bf;
}
/* =========================================
   HERO SECTION
========================================= */

.hero{
  min-height:calc(100vh - 90px); /* navbar height compensation */
  padding:70px 20px 60px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;

  /* Darker than navbar */
  background:
    radial-gradient(
      circle at center,
      rgba(30,200,165,0.08),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #040c16 0%,
      #020814 60%,
      #01060f 100%
    );
}

/* ===== Badge ===== */

.hero-badge{
  display:inline-block;
  margin-bottom:24px;

  padding:6px 14px;
  font-size:13px;
  font-weight:500;

  color:#1ec8a5;
  background:rgba(30,200,165,0.12);
  border:1px solid rgba(30,200,165,0.25);
  border-radius:999px;
}

/* ===== Main Heading ===== */

.hero-title{
  font-size:56px;
  font-weight:700;
  line-height:1.15;
  margin-bottom:22px;
}

/* Gradient text for second line */

.hero-title span{
  background:linear-gradient(
    90deg,
    #1ec8a5,
    #2fb4ff
  );
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}

/* ===== Services Line ===== */

.hero-services{
  font-size:18px;
  color:#c6d4e3;
  margin-bottom:18px;
}

/* ===== Description ===== */

.hero-desc{
  max-width:780px;
  font-size:16px;
  line-height:1.7;
  color:#9fb2c8;
  margin-bottom:40px;
}

/* ===== CTA Buttons ===== */

.hero-actions{
  display:flex;
  gap:20px;
}

/* Primary button */

.btn-primary{
  padding:14px 28px;
  border-radius:8px;   /* reduced curve */

  font-size:15px;
  font-weight:600;
  color:white;
  text-decoration:none;

  background:linear-gradient(
    90deg,
    #1ec8a5,
    #2fb4ff
  );

  box-shadow:
    0 10px 26px rgba(30,200,165,0.25);

  transition:0.25s ease;
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:
    0 14px 32px rgba(30,200,165,0.35);
}

/* Secondary button */

.btn-secondary{
  padding:14px 26px;
  border-radius:8px;   /* reduced curve */

  font-size:15px;
  font-weight:500;
  text-decoration:none;

  color:#1ec8a5;       /* emerald text */
  border:1px solid rgba(30,200,165,0.45);  /* emerald border */

  background:rgba(30,200,165,0.05);

  transition:0.25s ease;
}

.btn-secondary:hover{
  color:white;
  background:rgba(30,200,165,0.12);
  border-color:#1ec8a5;
}


/* ===========================
   HERO STATS
=========================== */
/* =========================================
   STATS GRID – Properly Centered
========================================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 48px;

  justify-content: center;   /* centers the whole grid */
  text-align: center;
}

/* Center each stat internally */
.stats-grid > * {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tablet / Mobile: 2 x 2 */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, max-content);
    gap: 32px;
  }
}


.hero-stats{
  margin-top:70px;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:60px;

  text-align:center;
}
.hero-stats {
  display: flex;
  justify-content: center;   /* 👈 THIS is the missing piece */
}

.stat-icon{
  font-size:26px;
  color:#1ec8a5;
  display:block;
  margin-bottom:12px;
}

.hero-stats h3{
  font-size:28px;
  font-weight:700;
  margin-bottom:6px;
}

.hero-stats p{
  font-size:14px;
  color:#9fb2c8;
}

.hero-stats{
  margin-bottom:80px;
}

/* ===========================
   SERVICES PREVIEW SECTION
=========================== */
.services-preview{
  width:100%;
  background:#071422;
  padding:120px 0;
}

.services-inner{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.services-header{
  text-align:center;
  margin-bottom:70px;
}

.section-tag{
  display:inline-block;
  padding:6px 14px;
  font-size:12px;
  border-radius:8px;
  background:#0f2a45;
  color:#3aa0ff;
  margin-bottom:14px;
}

.services-header h2{
  font-size:42px;
  margin:12px 0;
}

.services-header p{
  max-width:620px;
  margin:auto;
  color:#9bb0c7;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


.service-card{
  background:linear-gradient(180deg,#0b1b2d,#081626);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  overflow:hidden; /* DO NOT REMOVE */
  transition:all 0.3s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  border-color:rgba(30,200,165,0.5);
  box-shadow:0 20px 50px rgba(0,0,0,0.45);
}

.card-image{
  position:relative;
  height:190px;
  overflow:hidden;
}

.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.card-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.45) 100%
  );
}

.price-tag{
  position:absolute;
  top:12px;
  right:12px;
  background:#1ec8a5;
  color:#062016;
  padding:6px 12px;
  font-size:12px;
  font-weight:600;
  border-radius:8px;
  z-index:2;
}

.card-content{
  padding:22px 22px 26px;
}

.card-content h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:600;
}

.card-content p{
  font-size:14px;
  color:#b6c6da;
  line-height:1.6;
  margin-bottom:18px;
}

.learn-more{
  color:#1ec8a5;
  font-weight:500;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.learn-more:hover{
  color:#3aa0ff;
}

/* ===== OUTLINE BUTTON (SECONDARY CTA) ===== */

.btn-outline{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:14px 26px;
  border-radius:12px;

  font-size:15px;
  font-weight:500;
  color:white;
  text-decoration:none;

  border:1px solid rgba(255,255,255,0.25);
  background:transparent;

  transition:all 0.3s ease;
}

/* Hover effect */
.btn-outline:hover{
  border-color:#1ec8a5;
  color:#1ec8a5;

  box-shadow:
    0 0 0 1px rgba(30,200,165,0.4),
    0 10px 30px rgba(0,0,0,0.4);

  transform:translateY(-2px);
}

/* Arrow animation */
.btn-outline span{
  transition:transform 0.3s ease;
}

.btn-outline:hover span{
  transform:translateX(4px);
}

.services-cta{
  margin-top:60px;

  display:flex;
  justify-content:center;
}

.why-axion{
  width:100%;
  padding:120px 0;
  background:
    radial-gradient(
      800px 400px at 50% -10%,
      rgba(30,200,165,0.08),
      transparent 60%
    ),
    #081a2f;
}

.why-inner{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.why-header{
  text-align:center;
  margin-bottom:70px;
}

.why-header h2{
  font-size:42px;
  margin-top:14px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
/* =========================================
   WHY AXION GRID (Responsive)
========================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .why-grid > div {
    padding: 20px;
  }

  .why-grid h3 {
    font-size: 18px;
  }

  .why-grid p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.why-card{
  background:linear-gradient(180deg,#0b1b2d,#081626);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:28px;
  transition:all 0.3s ease;
}

.why-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,0.2);
}

.why-card:hover{
  transform:translateY(-4px);
  border-color:rgba(30,200,165,0.5);

  box-shadow:
    0 0 0 1px rgba(30,200,165,0.4),
    0 20px 50px rgba(0,0,0,0.45);
}

.why-icon{
  font-size:26px;
  display:inline-block;
  margin-bottom:14px;
}

.why-card h3{
  margin:0 0 10px;
  font-size:18px;
}

.why-card p{
  font-size:14px;
  color:#b6c6da;
  line-height:1.6;
}

/* ===============================
   FINAL CTA SECTION
================================ */

.cta-section{
  padding:120px 24px;
  background:
    radial-gradient(600px at 50% 30%, rgba(30,200,165,0.08), transparent 60%),
    linear-gradient(180deg,#071425,#050d18);

  border-top:1px solid rgba(255,255,255,0.06);
}

.cta-inner{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.cta-inner h2{
  font-size:44px;
  font-weight:700;
  color:#ffffff;
  margin-bottom:18px;
}

.cta-inner p{
  max-width:720px;
  margin:0 auto 42px;
  font-size:18px;
  line-height:1.7;
  color:#b6c6d9;
}

/* Buttons */
.cta-actions{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.allservices-cta{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top: 40px;
  margin-bottom: -70px;
  flex-wrap:wrap;
}
/* Reuse your existing button system */
.btn-primary{
  padding:14px 30px;
  border-radius:10px;
  background:linear-gradient(90deg,#19c79e,#2b6ff6);
  color:#ffffff;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:10px;
  box-shadow:0 10px 30px rgba(30,200,165,0.25);
  transition:all 0.25s ease;
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 40px rgba(30,200,165,0.35);
}

.btn-outline{
  padding:14px 30px;
  border-radius:10px;
  border:1px solid rgba(30,200,165,0.45);
  color:#eaf5ff;
  font-weight:600;
  transition:all 0.25s ease;
}

.btn-outline:hover{
  background:rgba(30,200,165,0.12);
  border-color:#1ec8a5;
}


/* ===== SERVICE CONTENT WRAPPER ===== */
/* ===== SERVICE SECTION (outer spacing) ===== */
.service-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #071422 0%, #081a2f 100%);
}

/* ===== SERVICE WRAPPER (FULL BORDER) ===== */
.service-wrapper {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;

  padding: 40px;
  border-radius: 20px;

  background: linear-gradient(
    180deg,
    rgba(12, 30, 52, 0.95),
    rgba(7, 20, 34, 0.95)
  );

  border: 1px solid rgba(30, 200, 165, 0.25);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);

  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover glow ONLY on hover (not permanent) */
.service-wrapper:hover {
  border-color: rgba(30, 200, 165, 0.6);
  box-shadow: 0 45px 120px rgba(30, 200, 165, 0.12);
}

/* ===== IMAGE SIDE ===== */
.service-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== PRICE BADGE ===== */
.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;

  background: linear-gradient(135deg, #19c37d, #0fa958);
  color: #ffffff;

  padding: 8px 14px;
  border-radius: 8px;

  font-size: 13px;
  font-weight: 600;

  box-shadow: 0 8px 24px rgba(25, 195, 125, 0.45);
  z-index: 5;
  white-space: nowrap;
}

/* ===== CONTENT SIDE ===== */
.service-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Service label */
.service-tag {
  align-self: flex-start;
  background: rgba(58, 160, 255, 0.12);
  color: #3aa0ff;

  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

/* Title */
.service-content h2 {
  font-size: 38px;
  line-height: 1.25;
  margin: 0;
}

/* Description */
.service-content p {
  color: #b8c7d9;
  line-height: 1.7;
  max-width: 520px;
}

/* Headings */
.service-content h4 {
  margin: 12px 0 6px;
  font-size: 16px;
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  padding: 0;
  list-style: none;
}

.benefits li {
  color: #1ec8a5;
  font-size: 14px;
}

/* Applications chips */
.applications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.applications span {
  padding: 6px 10px;
  font-size: 13px;

  border-radius: 999px;
  color: #d9e6f2;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* CTA */
/* ===== PRIMARY BUTTON ===== */
.btn-primary {
  width: auto !important;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;

  padding: 14px 15px;
  border-radius: 8px;

  background: linear-gradient(135deg, #1cc8a0, #2f7df4);
  color: #ffffff;

  font-size: 15px;
  font-weight: 600;

  border: none;
  outline: none;

  text-decoration: none !important; /* KILLS underline */
  cursor: pointer;

  transition: all 0.3s ease;
  box-shadow: 0 10px 28px rgba(46, 201, 162, 0.35);
}

/* Hover */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(46, 201, 162, 0.55);
  color: #ffffff;
}

/* Safety net */
.btn-primary *,
.btn-primary:hover * {
  text-decoration: none !important;
  color: inherit;
}


/* Hover */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(46, 201, 162, 0.55);
}

/* Arrow spacing fix */
.btn-primary span,
.btn-primary i {
  text-decoration: none;
}


a,
a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none;
}

/* ============================= */
/* SERVICES HERO */
/* ============================= */

.services-hero {
  background: radial-gradient(
      circle at top,
      rgba(46, 201, 162, 0.15),
      transparent 55%
    ),
    linear-gradient(180deg, #020617 0%, #050b1c 100%);
  padding: 120px 20px 90px;
  text-align: center;
}

.services-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.services-pill {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #2ec9a2;
  background: rgba(46, 201, 162, 0.15);
  border: 1px solid rgba(46, 201, 162, 0.35);
  border-radius: 999px;
}

.services-hero h1 {
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
}

.services-hero h1 span {
  background: linear-gradient(135deg, #2ec9a2, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.services-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: #b6c2d9;
}

/* ============================= */
/* SERVICES CTA SECTION */
/* ============================= */

.services-cta {
  background: radial-gradient(
      circle at center,
      rgba(59, 130, 246, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #020617 0%, #050b1c 100%);
  padding: 100px 20px;
  text-align: center;
}

.services-cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.services-cta h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.services-cta p {
  max-width: 700px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.6;
  color: #b6c2d9;
}

/* CTA BUTTONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #2ec9a2, #3b82f6);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(46, 201, 162, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.45);
}

/* SECONDARY BUTTON */
.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #2ec9a2;
}

/* ===============================
   CONTACT PAGE – AXION FLOORS
   =============================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* PAGE BACKGROUND */
.contact-page {
  background:
    radial-gradient(
      1000px 500px at 50% -200px,
      rgba(16,185,129,0.10),
      transparent
    ),
    #020617;
  padding: 100px 0;
}

/* GRID */
.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
}

/* LEFT INFO CARDS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
}

.contact-info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg,#10b981,#3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-info-card h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.contact-info-card p {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* ===== SECTION BACKGROUND ===== */

.inspection-section {
  background: linear-gradient(135deg, #020617, #020617 60%, #020617);
  padding: 90px 20px;
  display: flex;
  justify-content: center;
}

/* ===== FORM CONTAINER ===== */

.inspection-container {
  width: 100%;
  max-width: 1100px;
}

/* ===== FORM BOX ===== */

#inspectionForm {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(18px);
  padding: 45px;
  border-radius: 18px;

  /* GREY BORDER */
  border: 1px solid #334155;

  /* BASE SHADOW */
  box-shadow:
    0 0 0 rgba(0,0,0,0),
    0 10px 40px rgba(0,0,0,0.6);

  transition: all 0.35s ease;
}

/* ===== HOVER GLOW ===== */

#inspectionForm:hover {
  border-color: #10b981;

  box-shadow:
    0 0 0 1px rgba(16,185,129,0.4),
    0 0 25px rgba(16,185,129,0.25),
    0 0 60px rgba(16,185,129,0.15),
    0 20px 60px rgba(0,0,0,0.7);
}

/* ===== HEADING ===== */

.inspection-container h2 {
  font-size: 40px;
  padding-bottom: 10px;
  margin-top: -14px;
  color: #f8fafc;
  display: flex;
  justify-content: center;
}

.cat h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #f8fafc;
}

.dog h2 {
  font-size: 14px;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #626262;
}

.inspection-container p {
  color: #94a3b8;
  margin-bottom: 35px;
}

/* ===== GRID ===== */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

/* ===== INPUTS ===== */

#inspectionForm input,
#inspectionForm select,
#inspectionForm textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 10px;
  border: 1px solid #334155;
  background: rgba(30, 41, 59, 0.6);
  color: #e2e8f0;
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
}

/* INPUT PLACEHOLDER */

#inspectionForm input::placeholder,
#inspectionForm textarea::placeholder {
  color: #94a3b8;
}

/* INPUT FOCUS GLOW */

#inspectionForm input:focus,
#inspectionForm select:focus,
#inspectionForm textarea:focus {
  border-color: #10b981;

  box-shadow:
    0 0 0 1px rgba(16,185,129,0.35),
    0 0 12px rgba(16,185,129,0.25);
}

/* ===== TEXTAREA ===== */

#inspectionForm textarea {
  min-height: 160px;
  resize: vertical;
  margin-bottom: 24px;
}

/* ===== BUTTON ===== */

#inspectionForm button {
  width: 100%;
  padding: 16px;
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;

  color: white;

  background: linear-gradient(
    90deg,
    #10b981,
    #14b8a6,
    #3b82f6
  );

  box-shadow:
    0 8px 25px rgba(16,185,129,0.35);

  transition: all 0.3s ease;
}

/* BUTTON HOVER */

#inspectionForm button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 35px rgba(16,185,129,0.55),
    0 0 25px rgba(16,185,129,0.45);
}

/* ===== MESSAGE ===== */

#formMessage {
  
  margin-top: -5px;
  font-weight: 500;
}

#formMessage.success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;   /* spacing between button & message */
  margin-top: 20px;
  color: #22c55e;
}

#formMessage.error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;   /* spacing between button & message */
  margin-top: 20px;
  color: #ef4444;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  #inspectionForm {
    padding: 30px 22px;
  }
}

/* ===== CONTACT HERO ===== */

.contact-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(16,185,129,0.15), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(59,130,246,0.15), transparent 40%),
    #020617;

  padding: 120px 20px 80px;
  text-align: center;
}

/* CONTENT WIDTH */

.contact-hero-content {
  max-width: 900px;
  margin: auto;
}

/* BADGE */

.contact-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(16,185,129,0.15);
  color: #34d399;
  font-size: 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(16,185,129,0.35);
}

/* HEADING */

.contact-hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
  color: #f8fafc;
}

/* GRADIENT TEXT */

.contact-hero h1 span {
  background: linear-gradient(
    90deg,
    #10b981,
    #14b8a6,
    #3b82f6
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */

.contact-hero p {
  font-size: 20px;
  color: #94a3b8;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 20px 60px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-hero p {
    font-size: 16px;
  }
}

/* ===== CONTACT CARDS SECTION ===== */

.contact-cards {
  background: #020617;
  padding: 70px 20px 100px;
}
.contact-cards {
  margin-top: -60px;   /* pulls cards upward */
  padding-top: 0;
}

/* CONTAINER */

.contact-cards-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */

.contact-card {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);

  padding: 30px;
  border-radius: 18px;

  border: 1px solid #1f2937;

  transition: all 0.3s ease;
}

/* HOVER GLOW */

.contact-card:hover {
  border-color: #10b981;

  box-shadow:
    0 0 0 1px rgba(16,185,129,0.4),
    0 0 25px rgba(16,185,129,0.25),
    0 0 50px rgba(16,185,129,0.15);
}

/* ICON BOX */

.contact-icon {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 18px;
}

/* ICON COLORS */

.contact-icon.phone {
  background: rgba(16,185,129,0.15);
  color: #34d399;
}

.contact-icon.email {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
}

.contact-icon.location {
  background: rgba(168,85,247,0.15);
  color: #c084fc;
}

/* TEXT */

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #f1f5f9;
}

.contact-card .primary {
  color: #e2e8f0;
  margin-bottom: 6px;
  line-height: 1.6;
}

.contact-card span {
  color: #94a3b8;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .contact-cards-container {
    grid-template-columns: 1fr;
  }
}

/* ===== SERVICE AREAS SECTION ===== */

.service-areas {
  background: rgba(27, 26, 26, 0) (
    
  );

  padding: 90px 20px 110px;
  text-align: center;
}

/* CONTAINER */

.service-areas-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */

.service-areas h2 {
  font-size: 38px;
  margin-bottom: 12px;
  color: #f8fafc;
}

/* SUBTEXT */

.service-areas p {
  color: #94a3b8;
  margin-bottom: 40px;
  font-size: 17px;
}

/* GRID */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
@media (max-width: 1400px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1100px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}


/* CITY CHIP */

.area {
  padding: 14px 10px;
  border-radius: 14px;

  background: rgba(33, 37, 68, 0.7);
  border: 1px solid #1f2937;

  color: #e2e8f0;
  font-weight: 500;

  transition: all 0.25s ease;
}

/* HOVER */

.area:hover {
  border-color: #10b981;

  box-shadow:
    0 0 0 1px rgba(16,185,129,0.4),
    0 0 18px rgba(16,185,129,0.25);

  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  
}


.nav-links {
  margin-left: 40px;
}
.nav-container {
  display: flex;
  align-items: center;
  
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}



.nav-menu {
  margin-left: auto;
}

/* =========================================
   MOBILE NAVBAR (STEP 3)
========================================= */

@media (max-width: 768px) {

  /* show hamburger */
  .menu-toggle {
    display: block;
  }

  /* hide menu by default */
  .nav-menu {
    display: none;
  }

  /* tighten top bar spacing */
  .navbar {
    padding: 14px 0;
  }

  .logo img {
    height: 40px;
  }

  .logo-text h2 {
    font-size: 18px;
  }

  .logo-text p {
    font-size: 11px;
  }

}
@media (max-width: 768px) {
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;

    background: linear-gradient(
      180deg,
      #061526 0%,
      #040c16 100%
    );

    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .nav-right {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}
@media (max-width: 768px) {

  .nav-menu {
    transform-origin: top;
    animation: slideDown 0.25s ease forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links a,
  .quote-btn {
    -webkit-tap-highlight-color: transparent;
  }

}

@media (max-width: 768px) {
  .nav-menu {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.hero,
.page-banner,
section {
  max-width: 100%;
  overflow-x: hidden;
}
/* ========================= */
/* BASE STRUCTURE */
/* ========================= */

.abouts-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.abouts-hero,
.abouts-intro,
.abouts-values,
.abouts-industries {
  padding: 110px 0;
}

.abouts-hero {
  background: var(--bg-primary);
  text-align: center;
}

.abouts-intro {
  background: #031022;
}

.abouts-values {
  background: #04182b;
}

.abouts-industries {
  background: #031022;
}

h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================= */
/* HERO */
/* ========================= */

.abouts-badge {
  display: inline-block;
  padding: 8px 18px;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;

  color: #10b981;

  background: rgba(16,185,129,0.08);

  border: 1px solid rgba(16,185,129,0.35);

  border-radius: 999px;

  backdrop-filter: blur(6px);
}
.abouts-badge_a {
  display: inline-block;
  padding: 8px 18px;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;

  color: #10b3b9;

  background: rgba(16,185,129,0.08);

  border: 1px solid rgba(16,185,129,0.35);

  border-radius: 999px;

  backdrop-filter: blur(6px);
}

.abouts-hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
}

.abouts-gradient {
  background: linear-gradient(135deg, #10b981, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========================= */
/* INTRO */
/* ========================= */

.abouts-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.abouts-intro-image img {
  width: 100%;
  border-radius: 18px;
}

.abouts-intro-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ========================= */
/* VALUES */
/* ========================= */

.abouts-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.abouts-section-header h2 {
  font-size: 38px;
  font-weight: 700;
}

.abouts-section-header p {
  color: var(--text-muted);
}

.abouts-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
/* ========================= */
/* CORE VALUES */
/* ========================= */

.abouts-values {
  background: #04182b;
  padding: 110px 0;
}

.abouts-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.abouts-section-header h2 {
  font-size: 38px;
  font-weight: 700;
}

.abouts-section-header p {
  color: var(--text-muted);
}

.abouts-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.abouts-card {
  padding: 45px;
  border-radius: 18px;

  background: linear-gradient(
    145deg,
    rgba(11,30,51,0.95),
    rgba(7,20,34,0.95)
  );

  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}

/* Emoji Styling */
.abouts-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: inline-block;
}

/* Title */
.abouts-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Hover */
.abouts-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16,185,129,0.5);
  box-shadow: 0 15px 40px rgba(16,185,129,0.25);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1024px) {
  .abouts-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .abouts-values-grid {
    grid-template-columns: 1fr;
  }

  .abouts-values {
    padding: 80px 0;
  }

  .abouts-section-header h2 {
    font-size: 28px;
  }
}

/* ========================= */
/* OUR APPROACH SECTION */
/* ========================= */

.abouts-approach {
  background: #051a2e;
  padding: 120px 0 160px 0; /* slightly lighter navy */
}


.abouts-approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Title */
.abouts-approach-title {
  font-size: 42px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.2;
}

/* Description */
.abouts-approach-desc {
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Checklist */
.abouts-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.abouts-check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Custom Green Check */
.abouts-check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 600;
  font-size: 18px;
}

/* Images Grid */
.abouts-approach-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.abouts-approach-images img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  transition: 0.3s ease;
}

/* Subtle hover */
.abouts-approach-images img:hover {
  transform: scale(1.03);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1024px) {

  .abouts-approach-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .abouts-approach-content {
    text-align: center;
  }

  .abouts-check-list li {
    text-align: left;
  }
}

@media (max-width: 600px) {

  .abouts-approach {
    padding: 80px 0;
  }

  .abouts-approach-title {
    font-size: 30px;
  }

  .abouts-approach-images {
    grid-template-columns: 1fr;
  }
}

.abouts-card {
  padding: 45px;
  border-radius: 18px;

  background: linear-gradient(
    145deg,
    rgba(11,30,51,0.9),
    rgba(7,20,34,0.9)
  );

  border: 1px solid rgba(16,185,129,0.18);

  transition: 0.3s ease;
}

.abouts-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.abouts-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16,185,129,0.4);
  box-shadow: 0 15px 40px rgba(16,185,129,0.2);
}

/* ========================= */
/* INDUSTRIES */
/* ========================= */

.abouts-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.abouts-industry {
  padding: 28px;
  text-align: center;
  border-radius: 16px;
  font-weight: 500;
  font-size: 16px;

  background: linear-gradient(
    145deg,
    rgba(8, 21, 37, 0.95),
    rgba(5, 13, 23, 0.95)
  );

  /* Visible grey border */
  border: 1px solid rgba(255,255,255,0.12);

  transition: all 0.3s ease;
}

/* Hover State */
.abouts-industry:hover {
  transform: translateY(-5px);

  /* Green border */
  border: 1px solid rgba(16,185,129,0.5);

  /* Emerald glow */
  box-shadow: 0 12px 35px rgba(16,185,129,0.25);
}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1024px) {

  .abouts-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .abouts-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abouts-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .abouts-hero,
  .abouts-intro,
  .abouts-values,
  .abouts-industries {
    padding: 80px 0;
  }

  .abouts-hero-title {
    font-size: 36px;
  }

  .abouts-section-header h2 {
    font-size: 28px;
  }

  .abouts-values-grid,
  .abouts-industries-grid {
    grid-template-columns: 1fr;
  }
}

/* PRICING */
/* ===============================
   PRICING SECTION
================================= */

.pricing-section {
  padding: 20px 20px 100px 20px;

  background: linear-gradient(
    180deg,
    #020617 0%,     /* almost black navy */
    #030b1a 40%,
    #010a14 100%
  );
}


.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* ===============================
   HIDE RADIO INPUTS
================================= */

.pricing-container input[type="radio"] {
  display: none;
}

/* ===============================
   TABS WRAPPER
================================= */

.pricing-tabs {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;

  overflow-x: auto;
  white-space: nowrap;

  padding: 20px 0 35px 0;
  scrollbar-width: none;
}

.pricing-tabs::-webkit-scrollbar {
  display: none;
}

/* ===============================
   TAB BUTTONS
================================= */

.tab-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 200, 0.25);

  background: transparent;
  color: #cbd5e1;

  font-size: 14px;
  font-weight: 500;
  cursor: pointer;

  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: rgba(0, 255, 200, 0.08);
  border-color: rgba(0, 255, 200, 0.6);
  color: #ffffff;
}

/* ACTIVE TAB */

#tab-epoxy:checked ~ .pricing-tabs label[for="tab-epoxy"],
#tab-pu:checked ~ .pricing-tabs label[for="tab-pu"],
#tab-parking:checked ~ .pricing-tabs label[for="tab-parking"],
#tab-roller:checked ~ .pricing-tabs label[for="tab-roller"],
#tab-esd:checked ~ .pricing-tabs label[for="tab-esd"],
#tab-addons:checked ~ .pricing-tabs label[for="tab-addons"] {
  background: linear-gradient(135deg, #00ffc3, #00bfa6);
  color: #0f172a;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.4);
}

/* ===============================
   CONTENT WRAPPER
================================= */

.pricing-content {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 255, 200, 0.15);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(12px);
  position: relative;
  min-height: 250px;
}

/* Hide all content by default */

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show active content */

#tab-epoxy:checked ~ .pricing-content .epoxy-content,
#tab-pu:checked ~ .pricing-content .pu-content,
#tab-parking:checked ~ .pricing-content .parking-content,
#tab-roller:checked ~ .pricing-content .roller-content,
#tab-esd:checked ~ .pricing-content .esd-content,
#tab-addons:checked ~ .pricing-content .addons-content {
  display: block;
}

/* ===============================
   CONTENT HEADINGS
================================= */

.tab-content h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #ffffff;
}

/* ===============================
   PRICING ROWS
================================= */

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  font-size: 15px;
  color: #cbd5e1;

  transition: background 0.3s ease;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:hover {
  background: rgba(0, 255, 200, 0.05);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 8px;
}

.pricing-row span:last-child {
  font-weight: 600;
  color: #00ffc3;
}

/* ===============================
   CTA BUTTON
================================= */

.pricing-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;

  background: linear-gradient(135deg, #00ffc3, #00bfa6);
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;

  border-radius: 999px;
  transition: all 0.3s ease;
}

.pricing-cta:hover {
  box-shadow: 0 0 18px rgba(0, 255, 200, 0.6);
  transform: translateY(-2px);
}

/* ===============================
   NOTES (ESD TAB)
================================= */

.pricing-note {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {

  .pricing-tabs {
    justify-content: flex-start;
    padding-left: 15px;
    padding-right: 15px;
  }

  .pricing-content {
    padding: 25px;
  }

  .tab-content h3 {
    font-size: 18px;
  }

  .pricing-row {
    font-size: 14px;
  }
}

/* ===============================
   PRICING HEADER
================================= */

/* ===============================
   PRICING HERO (Same as Services)
================================= */

.pricing-hero {
  text-align: center;
  margin-bottom: 40px;
}


/* Badge - Emerald Glass Style */

.hero-badge {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 500;

  color: #34d399; /* emerald text */

  background: rgba(34, 195, 109, 0.188);
  border: 1px solid rgba(16, 185, 129, 0.35);

  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.pricing-padding {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-header {
  background: linear-gradient(
    180deg,
    #00050d 0%,      /* very deep navy */
    #000814 45%,
    #000c18 100%
  );
}
.pricing-header {
  padding: 60px 20px 140px 20px;
}

/* Main Title */

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
}

/* Gradient Line (Blue to Emerald) */

.hero-title span {
  background: linear-gradient(
    90deg,
    #34d399,   /* emerald */
    #3b82f6    /* blue */
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtext */

.hero-subtext {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}


.pricing-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 255, 200, 0.1);
  color: #00ffc3;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.pricing-title span {
  background: linear-gradient(135deg, #00ffc3, #00bfa6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Notice Box */

.pricing-notice {
  max-width: 850px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 255, 200, 0.15);
  text-align: left;
}
.pricing-notice {
  margin: 20px auto 0 auto;
}



.pricing-notice strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
}

.pricing-notice p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================
   PRICING DETAILS SECTION
================================= */

.pricing-details-section {
  padding: 120px 20px;

}

.pricing-details-section {
  padding: 120px 20px;

  background:
    radial-gradient(
      circle at top center,
      rgba(16, 185, 129, 0.06),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #000a16 0%,
      #001428 100%
    );
}

.pricing-details-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Cards */

.pricing-card {
  background: #0b1728;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  padding: 40px;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Factor Items */

.factor-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.factor-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  background: rgba(16, 185, 129, 0.15);
  color: #34d399;

  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.factor-item h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 6px;
}

.factor-item p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
}

/* Check Items */

.check-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.check-item span {
  color: #34d399;
  font-size: 20px;
  margin-top: 2px;
}

.check-item h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 6px;
}

.check-item p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
}

/* Responsive */

@media (max-width: 900px) {
  .pricing-details-container {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: #0b1728;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
  transform: translateY(-4px);
}

/* ===============================
   PRICING CTA SECTION
================================= */

.pricing-cta-section {
  padding: 120px 20px;

  background: linear-gradient(
    90deg,
    #000814 0%,
    #001428 50%,
    #000814 100%
  );

  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.pricing-cta-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.pricing-cta-subtitle {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 40px;
}

/* Buttons */

.pricing-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-primary {
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #0f172a;

  background: linear-gradient(
    90deg,
    #34d399,
    #3b82f6
  );

  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.cta-secondary {
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;

  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);

  transition: all 0.3s ease;
}

.cta-secondary:hover {
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Responsive */

@media (max-width: 768px) {
  .pricing-cta-title {
    font-size: 32px;
  }

  .pricing-cta-subtitle {
    font-size: 16px;
  }
}

/* ================= FOOTER ================= */

/* ================= FOOTER ================= */

.footer {
  width: 100%;
  background: #07162b;
  color: #cbd5e1;
  padding-top: 70px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding-bottom: 50px;
}

/* Column Headings */
.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

/* Small underline accent */
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 2px;
  background: #00ff99;
}

/* About Text */
.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-logo {
  width: 130px;
  margin-bottom: 15px;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

/* Links */
.footer-col ul li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover Effect */
.footer-col ul li a:hover {
  color: #00ff99;
  padding-left: 6px;
}

/* Contact Info */
.contact-info li {
  line-height: 1.7;
  opacity: 0.85;
}

/* Bottom Bar */

.footer-bottom {
  width: 100%;
  
  margin: 0 auto;
  padding: 25px 0;
  margin-right: 300px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #94a3b8;
}

.footer-links a {
  text-decoration: none;
  color: #94a3b8;
  margin-left: 20px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #00ff99;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links a {
    margin: 0 10px;
  }
}
