/* ----------------------------------------------------
   HOME PAGE — HERO SECTION STYLES
   Works with global styles + theme system
-----------------------------------------------------*/
.skip-to-content {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-to-content:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--brand-blue);
  color: #fff;
  z-index: 9999;
  border-radius: 6px;
}

img{
    border-radius: var(--border-radius);
}

/* HERO WRAPPER */
.hero {
    background: var(--bg-hero, var(--brand-deep-navy));
    /* fallback to deep navy */
    color: var(--text-inverted);
    padding: clamp(48px, 8vw, 100px) 0;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* enough space for navbar */
    min-height: 100vh;
}

/* HERO CONTAINER */
.hero .container {
    position: relative;
    z-index: 2;
}

/* -------------------------------------------
   TYPOGRAPHY
-------------------------------------------- */
.hero h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

.hero p.lead {
    max-width: 720px;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}

/* Dark Mode Hero */
html[data-theme="dark"] .hero {
    background: var(--brand-deep-navy);
    /* dark hero background */
    color: var(--text-inverted);
}

html[data-theme="dark"] .hero h1,
html[data-theme="dark"] .hero p.lead {
    color: var(--text-inverted);
}

/* Light Mode Hero */
html[data-theme="light"] .hero {
    background: var(--bg-soft);
    color: var(--text-primary);
    /* background: linear-gradient(
        180deg,
        rgba(0, 56, 139, 0.08),
        rgba(255, 255, 255, 0.9)
    ), var(--bg-base); */
}

html[data-theme="light"] .hero h1,
html[data-theme="light"] .hero p.lead {
    color: var(--text-primary);
}

html[data-theme="light"] .hero p.lead {
    opacity: .75;
}

/* -------------------------------------------
   HERO PANEL (translucent card)
-------------------------------------------- */
/* .hero-panel, */
.hero-row {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: clamp(28px, 5vw, 46px);
}

html[data-theme="light"] .hero-row {
    /* background: rgba(255, 255, 255, 0.3); */
    background: linear-gradient(180deg,
            rgba(0, 56, 139, 0.08),
            rgba(255, 255, 255, 0.9)), var(--bg-base);
}

html[data-theme="light"] .hero-panel {
    /* background: rgba(255, 255, 255, 0.3); */
    /* background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05),
        rgba(255, 255, 255, 0.95)
    ), var(--bg-base); */
    background: linear-gradient(180deg,
            rgba(0, 56, 139, 0.08),
            rgba(255, 255, 255, 0.9)), var(--bg-base);
}

/* -------------------------------------------
   CTA BUTTONS
-------------------------------------------- */

.hero .btn {
    background: var(--primary);
    color: var(--text-inverted);
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    /* transition: transform .18s ease, box-shadow .18s ease, background .2s ease; */
    box-shadow: 0 8px 24px var(--button-shadow);
}

/* .hero .btn:hover {
    transform: translateY(-3px);
    background: var(--cta-hover);
} */

/* Ghost Button */
.hero .ghost {
    background: transparent;
    color: var(--text-inverted);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
}

html[data-theme="light"] .hero .ghost {
    color: var(--text-primary);
    border-color: rgba(0, 0, 0, 0.25);
}

.hero .ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

html[data-theme="light"] .hero .ghost:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* CTA row layout */
.hero-cta {
    margin-top: 22px;
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Buttons */
/* .hero-cta .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
}

.hero-cta .btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
} */

.hero-cta .ghost.icon-btn {
    border: 1px solid var(--text-inverted);
    color: var(--text-inverted);
    background: transparent;
    transition: all 0.3s ease;
}

.hero-cta .ghost.icon-btn:hover {
    background: var(--text-inverted);
    color: var(--bg-base);
}

/* -------------------------------------------
   ILLUSTRATION (RIGHT SIDE)
-------------------------------------------- */

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.95;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 100vh;
    /* Prevents image from exceeding viewport */
    object-fit: contain;
}

/* -------------------------------------------
   RESPONSIVE BEHAVIOR
-------------------------------------------- */

/* Tablet */
@media (max-width: 992px) {
    .hero {
        padding-top: 120px;
        /* ensure text never hides */
        text-align: center;
        padding-bottom: 50px;
        /* extra spacing to avoid overlap */
    }

    .hero-image {
        max-height: 50vh;
        /* or adjust based on screen */
        margin-top: 20px;
    }

    .hero-image img {
        width: clamp(200px, 50vw, 350px);
        height: auto;
    }

    .hero-panel {
        padding: 32px 28px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p.lead {
        font-size: .98rem;
    }

    .hero .btn,
    .hero .ghost {
        width: 100%;
        justify-content: center;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }
}


/* why TeqSparqs */
.why-section {
    min-height: 80vh;
}

.why-title {
    font-size: 36px;
    font-weight: 700;
}

/* Visual row (icons + descriptions) */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* default for large screens */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

.feature-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .feature-box {
    border: 1px solid rgba(29, 38, 54, 0.2);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 34px;
    color: #15aaff;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
}

.feature-text {
    font-size: 15px;
    opacity: 0.85;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-900);
    /* color: var(--text-1); */
    margin-bottom: 2.5rem;
    text-align: center;

    padding-bottom: 1rem;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    /* now it sits at the bottom of the title container */
    width: 60px;
    height: 4px;
    background-color: var(--primary-glow);
    border-radius: 2px;
    animation: glowPulse 2s infinite;
}

.section-title h2 {
    text-align: center;
    font-weight: bold;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}
/* ---------------------------
   PROGRAMS SECTION
---------------------------- */
#courses {
    padding: 80px 0;
    background: var(--bg-soft);
}


/* Program Cards */
.program-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--card-shadow);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.program-card h5 {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-1);
}

.program-card p {
    color: var(--text-2);
    margin-bottom: 10px;
}

.card-img {
    height: 160px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    /* transition: transform 0.5s ease; */
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.program-card:hover .card-img {
    transform: scale(1);
}

.program-card ul {
    padding-left: 18px;
}

.program-card li {
    color: var(--text-1);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.program-card .btn {
    margin-top: auto;
}

/* ---------------------------
   SERVICES SECTION
---------------------------- */
#services {
    padding: 80px 0;
    background: var(--surface-1);
}

/* Service Card Wrapper */
.services-grid {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    transition: 0.3s ease;
    box-shadow: var(--card-shadow);
}

.services-grid:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.service {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.service .icon {
    font-size: 1.8rem;
    line-height: 1;
    min-width: 38px;
    text-align: center;
}

.service h6 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-1);
}

.service p {
    color: var(--text-2);
    margin: 0;
}

/* ---------------------------
   RESPONSIVE ENHANCEMENTS
---------------------------- */
@media (max-width: 768px) {

    .program-card,
    .services-grid {
        padding: 18px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}


#services-section {
    padding: 80px 0;
}

#services-section .section-title {
    color: var(--text-primary);
    margin-bottom: 32px;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.services-grid {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-card);
    transition: 0.25s ease;
}

.services-grid:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-floating);
}

.services-grid .s-icon {
    width: 42px;
    height: 42px;
}

.services-grid h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

/* =========================================
   WHY CYBERSECURITY MATTERS – NEW SECTION
   ========================================= */

.why-cyber {
  position: relative;
  overflow: hidden;
}

/* Soft cyber glow in the background */
.why-cyber::before {
  content: "";
  position: absolute;
  inset: -20%;
  /* background:
    radial-gradient(circle at 10% 0%, rgba(10, 102, 255, 0.18) 0, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(0, 166, 255, 0.18) 0, transparent 55%);
  opacity: 0.9; */
  pointer-events: none;
  z-index: 0;
}

.why-cyber .container {
  position: relative;
  z-index: 1;
}

/* Header */
.why-cyber-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.why-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  /* color: rgba(255, 255, 255, 0.7); */
  margin-bottom: 0.5rem;
}

.why-cyber-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.why-lede {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* STAT GRID */
.why-cyber-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 2.8rem;
}

.why-card {
  /* background: radial-gradient(circle at top left,
              rgba(10, 166, 255, 0.15),
              rgba(13, 17, 23, 0.98)); */
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
              border-color 0.22s ease, background 0.22s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 110% -10%,
              rgba(88, 166, 255, 0.45), transparent 60%); */
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.22s ease;
}

.why-card:hover {
  /* transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
  border-color: rgba(88, 166, 255, 0.8); */
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.why-card:hover::after {
  opacity: 1;
}

.stat-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  /* color: rgba(255, 255, 255, 0.7); */
  color: var(--text-muted);
}

.stat-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 700;
  font-size: 1.7rem;
}

.stat-prefix,
.stat-unit {
  font-size: 0.95rem;
  /* color: rgba(255, 255, 255, 0.8); */
  color: var(--text-muted);
}

.stat-copy {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Mini bar visual inside one card */
.mini-bar-group {
  margin-top: 6px;
}

.mini-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  /* color: rgba(255, 255, 255, 0.75); */
  color: var(--text-muted);
  margin-bottom: 4px;
}

.mini-bar-track {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.mini-bar-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #58a6ff, #00a6ff);
  transition: width 1.5s ease-out;
}

/* Opportunity Split */
.why-cyber-opportunity {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.why-col {
  /* background: rgba(10, 12, 24, 0.9); */
  border-radius: 18px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4); */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.why-col h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.why-col p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.why-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
}

.why-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.why-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
  .why-cyber-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-cyber-opportunity {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .why-cyber-header {
    text-align: left;
  }

  .why-cyber-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 16px 16px 18px;
  }

  .why-cyber-opportunity {
    gap: 18px;
  }
}



#labs {
    padding: 90px 0;
}

.labs-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.labs-text {
    flex: 1;
}

.labs-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.labs-text ul {
    margin-bottom: 22px;
}

.labs-text ul li {
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.labs-img {
    flex: 1;
    text-align: right;
}

.labs-img img {
    max-width: 100%;
    height: auto;
}

/* Responsive stacking */
@media (max-width: 992px) {
    .labs-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .labs-img {
        text-align: center;
    }

    .labs-text ul {
        text-align: left;
        margin: auto;
        max-width: 300px;
    }
}


/* SECTION 2: TRUST */
.compliance-trust-section {
    padding: 100px 0;
    background: var(--bg);
    color: var(--text);
}

.trust-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.trust-text {
    max-width: 460px;
}

.trust-text h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.trust-text .sub {
    opacity: 0.85;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* ICON GRID */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.trust-icon-card {
    padding: 22px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: 0.3s;
}

.trust-icon-card:hover {
    transform: translateY(-4px);
}

.trust-icon-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
    animation: float 3s infinite ease-in-out;
}

@media (max-width: 900px) {
    .trust-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* SECTION 3: SERVICES */
.services-section {
    padding: 100px 0;
    background: var(--bg);
    color: var(--text);
}

.services-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.services-image img {
    width: 460px;
    max-width: 100%;
    animation: float 4s infinite ease-in-out;
}

.services-text h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.services-text .sub {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 26px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.services-list li {
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}

.services-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

@media (max-width: 900px) {
    .services-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

/* SECTION 4: AUTOMATION */
.automation-section {
    padding: 100px 0;
    background: var(--bg);
    color: var(--text);
}

.automation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.automation-text h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.automation-text .sub {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 28px;
}

.automation-points {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.automation-points li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.automation-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 0;
}

.automation-image img {
    width: 500px;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    animation: float 3.5s ease-in-out infinite;
}

@media (max-width: 900px) {
    .automation-wrapper {
        flex-direction: column;
        text-align: center;
    }
}


/* testimonials */
.testi {
    height: 60vh;
}

.testimonial {
    background: var(--card-bg);
    padding: 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

.test-person {
    width: 56px;
    height: 56px;
    background: rgba(46, 71, 93, 0.9);
    color: var(--text-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(46, 71, 93, 0.9);
    /* background-color: rgba(255, 127, 63, 0.9); */
    /* background-color: var(--text-muted); */
    color: var(--text-primary);
    border-radius: 50%;
    padding: 10px;
}

/* blog */
.news-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.news-card img {
    border-radius: 8px;
    height: 150px;
    object-fit: cover;
    width: 100%;
}

/* about */
.about-section {
    padding: 100px 0;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

.about-tagline {
    font-size: 20px;
    color: var(--text-muted, #9db2d0);
    margin-bottom: 30px;
}

.about-content {
    flex: 1;
}

.about-block {
    margin-bottom: 35px;
}

.about-block h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.about-grid {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.about-grid h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.about-grid ul {
    list-style: none;
    padding: 0;
}

.about-grid ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.about-grid ul li::before {
    content: "•";
    color: var(--accent, #4aa8ff);
    position: absolute;
    left: 0;
}

.about-image-wrapper {
    flex: 1;
    text-align: center;
    position: relative;
}

.about-image {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-grid {
        flex-direction: column;
    }
}

/* Contact Section */
.contact-section {
    /* background-color: var(--background-alt); */
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--muted-text);
    /* Arctic Wolf-style gray #a9b1bc*/
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
    text-align: center;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #555;
    color: var(--text-color);
    font-size: 1rem;
    transition: border 0.3s ease;
}

.contact-form select{
   background: var(--dropdown-bg);
    border: 1px solid var(--border);
    min-width: 12rem;
    color: var(--text-color);
    cursor: pointer;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-hover);
}

.submit-button {
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
}

.submit-button:hover {
    background: var(--cta-hover);
    color: var(--text-color);
    transform: translateY(-2px);
}


/* Footer */
.site-footer {
    background:  #08101c !important;
    color: #c9d4e3 !important;
    padding: 70px 0 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color:  #FFFFFF !important;
    /* color: var(--text-primary); */
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 20px;
    color:  #99a6ba;
}

.footer-social a {
    font-size: 20px;
    margin-right: 15px;
    color:  #c9d4e3;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent, #4aa8ff);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--footer-text, #c9d4e3);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent, #4aa8ff);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--footer-muted, #8fa1b9);
}

/* Responsive */
@media(max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

@media(max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-list li {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
}



/* Floating WhatsApp */
.whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--global-box-shadow);
    z-index: 80;
    transform: translateY(0);
    transition: transform .18s ease;
}