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

/* --- GLOBAL STYLES --- */
:root {
  --primary: #0052cc;
  --primary-hover: #003d99;
  --dark: #172b4d;
  --text: #42526e;
  --light-bg: #f4f5f7;
  --white: #ffffff;
  --accent: #00b8d9;

  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;

  --cool-ice: #f0f9ff; /* Very light blue-white */
  --cool-slate: #e2e8f0; /* Clean border color */
  --cool-accent: #3b82f6; /* Professional "Tech" blue */
}

#nav .nav-links.active a {
  color: white;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
}

html,
body {
  min-height: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* --- NAVIGATION --- */
/* --- NAVIGATION --- */
/* --- NAVIGATION --- */

#nav.scrolled {
  position: fixed;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
}

#nav {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  font-family: "Inter", sans-serif;
}

#nav nav {
  max-width: 1400px;
  margin: auto;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
}

/* MENU TOGGLE */
/* MENU TOGGLE */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.menu-toggle {
  display: none;

  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;

  z-index: 2000;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
    color: white;
  }

  #nav a {
    color: black !important;
  }

  #nav > nav > ul {
    gap: 30px !important;
  }

  /* MOBILE MENU PANEL*/

  .nav-links {
    position: fixed;

    top: 0;

    right: -100%;

    width: 100vw;
    height: 100dvh;

    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(18px);

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    padding: 120px 30px 40px;

    gap: 10px;

    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);

    transition: right 0.35s ease;

    z-index: 1500;

    overflow-y: auto;
  }

  /* ACTIVE MOBILE MENU */

  .nav-links.active {
    right: 0;
  }

  /* NAV ITEMS */
  #nav ul.nav-links li {
    width: 100%;
  }

  #nav #lang-toggle {
    width: 30% !important;
  }

  #nav li {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* LINKS */
  #nav .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 5px 0;

    font-size: 17px;
    font-weight: 500;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* REMOVE DESKTOP UNDERLINE EFFECT */
  #nav .nav-links a::after {
    display: none;
  }
  /* DROPDOWN */
  .dropdown-menu {
    position: static;

    width: 100%;
    min-width: 100%;

    padding: 0;

    margin-top: 8px;

    border-radius: 12px;

    opacity: 1;
    visibility: visible;
    transform: none;

    display: none;

    background: rgba(59, 130, 246, 0.04);

    border: 1px solid rgba(59, 130, 246, 0.08);

    box-shadow: none;
  }

  /* ACTIVE DROPDOWN */
  .dropdown-menu.active {
    display: flex;
  }
}

/* DEFAULT */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* MOBILE */
@media (max-width: 1024px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }
}

/* =========================
   LOGO
========================= */
#nav.scrolled #logo {
  height: 70px;
  cursor: pointer;
  transition: transform 0.25s ease;
  filter: none;
}

.logo:hover {
  transform: scale(1.05);
}

.logo {
  height: 100px;
  cursor: pointer;
  transition: transform 0.25s ease;
  filter: brightness(0) invert(1);
}

/* =========================
   NAV LINKS
========================= */
#nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

/* LINKS */
#nav.scrolled a {
  text-decoration: none;
  color: #1f2937;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}

#nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
  color: white;
}

/* UNDERLINE EFFECT (Apple style) */
#nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #3b82f6;
  transition: width 0.25s ease;
}

/* HOVER */
#nav a:hover {
  color: #2563eb;
}

#nav a:hover::after {
  width: 100%;
}

/* =========================
   DROPDOWN MENU
========================= */

.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  min-width: 240px;
  padding: 12px 12px;

  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(12px);

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.04);

  opacity: 0;

  visibility: hidden;

  transform: translateY(10px) scale(0.98);

  transition: all 0.25s ease;
  z-index: 999;

  flex-direction: column;
}

#nav .dropdown-menu a {
  display: block;

  padding: 12px 0;

  font-size: 16px;
  color: #1f2937;

  border-radius: 8px;
  margin: 2px 8px;

  transition: all 0.2s ease;
}

#dropDownMenu.active-services li a {
  color: black !important;
}

#dropDownMenu.active-services {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 1025px) {
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
}

#nav-support-page .dropdown-menu a {
  color: black;
}

.dropdown-menu a:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  transform: translateX(4px);
}

#nav .nav-item .dropdown-menu {
  row-gap: 13px;
}

.dropdown-menu li {
  display: block;
}

/* .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
 
} */

.nav-item.dropdown > a::before {
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-item.dropdown:hover > a::before {
  transform: rotate(180deg);
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */

@media (max-width: 768px) {
  #nav-support-page nav {
    padding: 14px 20px;
  }

  #nav-support-page ul {
    gap: 16px;
  }

  #nav-support-page a {
    font-size: 14px;
  }

  .nav-logo {
    height: 32px;
  }
}

#nav > nav > ul {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 768px) {
  #nav-support-page nav {
    padding: 14px 20px;
  }

  #nav > nav > ul {
    display: flex;
    gap: 30px !important;
    align-items: center;
  }
  #nav-support-page a {
    font-size: 14px;
  }

  .nav-logo {
    height: 32px;
  }
}

/* --- HERO SLIDER --- */
/* --- HERO SLIDER --- */
/* --- HERO SLIDER --- */
.hero-slider {
  position: relative;
  height: 920px;
  overflow: hidden;
  background: var(--dark);
}

.slider {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transform: scale(1.1);
  transition: transform 10s linear;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide.active img {
  transform: scale(1);
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.3) 0%,
    /* Subtle top */ rgba(15, 23, 42, 0.9) 100%
      /* Darker bottom for text contrast */
  );
}

.slide-content {
  position: absolute;
  top: 55%;
  left: 35%;
  transform: translate(-50%, -40%); /* Starts slightly lower */
  text-align: left;
  color: white;
  width: 90%;
  max-width: 550px;
  z-index: 10;
  opacity: 0;
  transition: all 0.8s ease-out 0.3s; /* Delayed entrance */
}

.slide.active .slide-content {
  opacity: 1;
  transform: translate(-50%, -50%); /* Slides up into position */
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 600px;
  margin-inline: auto; /* Centers the paragraph */
}

.slide-tag {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  /* color: rgb(37, 99, 235); */
  /* color: #2563eb; */
  color: rgb(96, 165, 250);
  /* color: rgb(147, 197, 253); */
  /* text-shadow: 0 0 8px rgba(59, 130, 246, 0.6); */
  text-shadow: 0 0 6px rgba(96, 165, 250, 0.5);
  margin-bottom: 18px;
  padding-left: 30px;
  letter-spacing: 0.3px;
}

/* LEFT LINE */
.slide-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  border-radius: 2px;
}

.next,
.prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.next:hover,
.prev:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.next {
  right: 40px;
}
.prev {
  left: 40px;
}

/* 5. The "Elite" Button (Inside Slider) */
.slide-content .button {
  padding: 18px 40px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--primary);
  border: none;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

/* Contact button style */
#nav .nav-contact {
  position: relative;
  transition: color 0.25s ease;
}

#nav .nav-contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #3b82f6;
  transition: width 0.25s ease;
}

.nav .nav-contact:hover::after {
  width: 100%;
}

.nav.scrolled .nav-contact {
  font-weight: 500;
}

.nav-item.dropdown > a::before {
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-item.dropdown:hover > a::before {
  transform: rotate(180deg);
}

/* Language toggle button */
/* Language toggle button */

/* Lang toggle */
#nav #lang-toggle {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;

  padding: 10px 22px;
  border-radius: 10px;

  font-weight: 500;
  letter-spacing: 0.3px;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);

  transition: all 0.25s ease;
}

#nav #lang-toggle:hover {
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

#nav #lang-toggle::after {
  display: none;
}

/* MOTHERBOARD MORE INFO STYLE */
/* MOTHERBOARD MORE INFO STYLE */
/* MOTHERBOARD MORE INFO STYLE */

.hero-other-pages {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding: 6.4rem 20%;
  align-items: center;
  /* background: var(--light-bg); */
  background: linear-gradient(135deg, var(--white) 0%, var(--cool-ice) 100%);
  position: relative;
  margin-top: 90px;
}

/* HEADER BLOCK */
.service-header {
  margin-bottom: 0px;
  font-size: 2.2rem;
  color: #0f172a;
  line-height: 1.1;
  overflow: hidden;
}

/* Small tag */
.service-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #1d4ed8;

  background: #eff6ff;
  border: 1px solid #dbeafe;

  padding: 5px 10px;
  border-radius: 999px;

  margin-bottom: 10px;
}

/* Main title */
.service-header h1 {
  font-size: 2.2rem;
  color: #0f172a;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

/* Subtitle */
.service-subtitle {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* LEFT SIDE CONTENT */
.service-info {
  max-width: 520px;
}

/* Paragraph (important intro) */
.service-intro {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 18px;
  margin-top: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
}

/* LIST (modern bullets) */
.service-info ul {
  list-style: none;
  padding: 20px 0;
  margin: 0 0 15px 0;
}

/* Each list item */
.service-info li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* Custom bullet */
.service-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;

  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: #3b82f6;
}

/* Highlighted item */
.service-info .highlight {
  color: #111827;
  font-weight: 500;
}

/* BUTTONS */
.service-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-motherboard-secondary:hover {
  background: #f9fafb;
}

/* RIGHT SIDE IMAGE */
.hero-image {
  display: flex;
  justify-content: center;
}

/* Image container */
.image-border-effect {
  border-radius: 32px;
  /* overflow: hidden; */
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

/* Image itself */
.image-border-effect img {
  display: block;
  width: 100%;
  height: auto;
}

/* Subtle hover (premium feel, not flashy) */
.image-border-effect:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* PHONE SUPPORT */
/* PHONE SUPPORT */
/* PHONE SUPPORT */

/* --- BUTTONS --- */
.btn-primary {
  background: #2563eb;
  color: #ffffff;
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #1d4ed8; /* Darker blue on hover */
}

@media (max-width: 1024px) {
  #nav #lang-toggle {
    color: white !important;
    text-align: center;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    margin: 40px auto;
  }

  .feature-item {
    text-align: left; /* Keep text inside boxes left-aligned for readability */
  }

  .hero-image img {
    height: 350px; /* Shorter for mobile */
  }
}

/* --- HERO CONTENT SECTION --- */
/* --- HERO CONTENT SECTION --- */
/* --- HERO CONTENT SECTION --- */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding: 5rem 20%;
  align-items: center;
  /* background: var(--light-bg); */
  background: linear-gradient(135deg, var(--white) 0%, var(--cool-ice) 100%);
  position: relative;
}

.eyebrow {
  color: var(--cool-accent);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  display: block;
}

#hero-heading {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 550px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-actions .button:last-child {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--cool-slate);
  box-shadow: none;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

.button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item dt {
  font-size: 2rem;
  font-weight: 500;
  color: var(--dark);
}

.stat-item dd {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cool-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.hero-visual {
  background: var(--white);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 40px 80px -15px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--cool-slate);
  position: relative;
  transition: var(--transition);
}

.hero-visual:hover {
  transform: scale(1.02);
}

/* Status Indicator with Pulse */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding: 8px 16px;
  background: #f0fff4; /* Soft green-white */
  border-radius: 50px;
  color: #166534;
  font-weight: 700;
  font-size: 0.85rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-dot 2s infinite;
}

/* Clean Checklist */
.hero-checklist {
  margin-bottom: 30px;
}

.hero-checklist li {
  margin-bottom: 18px;
  padding-left: 35px;
  position: relative;
  font-weight: 600;
  color: var(--dark);
}

.hero-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.hero-badge {
  margin-top: 20px;
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* --- SERVICES GRID --- */
/* --- SERVICES GRID --- */
/* --- SERVICES GRID --- */
#services {
  padding: 40px 3%; /* Match the 'About' spacing for consistency */
  background-color: var(
    --white
  ); /* Pure white background to contrast the Ice Blue About section */
}
#service-heading {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  #service-heading {
    font-size: 2rem;
  }
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 3px;
}

@media (max-width: 726px) {
  .section-header {
    row-gap: 15px;
  }
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  padding: 40px; /* More internal padding for a luxury feel */
  border-radius: 16px; /* Slightly rounder, modern corners */
  border: 1px solid var(--cool-slate); /* Subtle border so it doesn't "float" too much */
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Snappy "pop" effect */
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1); /* Deep, soft shadow on hover */
  border-color: var(--cool-accent);
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--cool-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  transition: var(--transition);
}

.shadow-soft {
  box-shadow: var(--shadow);
}

.card-list {
  margin: 20px 0;
  font-size: 0.9rem;
  margin-bottom: 25px;
  flex-grow: 1; /* Pushes the note to the bottom so all cards look even */
}

.card-list li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: var(--text);
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--cool-accent);
  font-weight: bold;
}

.service-note {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cool-accent);

  /* 1. Advanced Transparency (Glassmorphism) */
  background: linear-gradient(
    135deg,
    rgba(240, 249, 255, 0.7),
    rgba(255, 255, 255, 0.4)
  );
  backdrop-filter: blur(4px); /* Blurs whatever is behind it slightly */

  /* 2. Professional Bordering */
  border: 1px solid rgba(59, 130, 246, 0.15); /* Very thin, subtle accent border */
  padding: 0 18px;
  height: 60px;
  line-height: 1.5;
  border-radius: 50px; /* Fully rounded "pill" shape looks more modern */
  vertical-align: middle;
  /* 3. Layout */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;

  /* 4. Subtle Shadow */
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
  transition: var(--transition);
}

.service-note::before {
  /* Adjusting the dot position slightly to match the text center */
  position: relative;
  top: -1px;
}

/* --- ABOUT SECTION --- */
#about {
  padding: 80px 3%;
  /* background: var(--light-bg); */
  background-color: var(--cool-ice); /* Color 1: Ice Blue */
  border-top: 1px solid var(--cool-slate);
  border-bottom: 1px solid var(--cool-slate);
}

#about p {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 750px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

#about p:first-of-type {
  font-size: 1.1rem; /* Noticeably larger */
  color: #1e293b; /* Darker, authoritative Slate */

  line-height: 1.6;
  margin-bottom: 1.5rem; /* Pushes the following text down */
}

#about p::selection {
  background: var(--cool-accent);
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.align-left {
  text-align: left;
  margin-bottom: 30px;
}

#about-heading {
  font-size: 2.5rem;
  color: var(--bg-deep);
  margin-bottom: 15px;
  position: relative;
}

@media (max-width: 724px) {
  #about-heading {
    font-size: 2rem;
  }
}

#about p {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.about-list {
  margin-top: 30px;
}

.about-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-weight: 500;
  color: var(--dark);
}

.about-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--cool-accent);
  font-weight: bold;
}

/* The "Elite" Business Details Card */
.about-highlight {
  background: var(--white); /* Color 2: Pure White */
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--cool-slate);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05); /* Softer, more modern shadow */
  margin-top: 30px;
}

.about-highlight h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: var(--bg-deep);
  border-bottom: 2px solid var(--cool-ice);
  padding-bottom: 10px;
}

.detail-row {
  display: flex;
  flex-direction: column; /* Stacked for a cleaner look */
  gap: 5px;
  padding: 15px 0;
  border-bottom: 1px solid var(--cool-ice);
}

.detail-row dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cool-accent); /* Color 3: Cool Blue Accent */
}

/* --- REVIEWS --- */
/* --- REVIEWS --- */
/* --- REVIEWS --- */
#reviews {
  padding: 80px 3%;
  background: var(--dark); /* Using that premium deep navy from your root */
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  #reviews {
    padding: 40px 3%;
  }
}

/* Subtle background "Glow" for depth */
#reviews::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

#reviews #reviews-heading {
  color: var(--white);
  font-size: 2.5rem;
}

@media (max-width: 1024px) {
  #reviews #reviews-heading {
    color: var(--white);
    font-size: 2rem;
  }
}

#reviews .section-header p {
  color: var(--cool-slate);
  opacity: 0.8;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* --- THE REVIEW CARD --- */
.review-card {
  background: rgba(255, 255, 255, 0.03); /* Glassmorphism on dark bg */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;

  row-gap: 7px;
}

.review-card:hover {
  transform: translateY(-10px);
  border-color: var(--cool-accent);
  background: rgba(255, 255, 255, 0.05);
}

/* 1. Modern Quote Icon */
.review-card::before {
  content: "“";
  font-family: serif;
  font-size: 5rem;
  color: white;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.2;
}

/* 2. Professional Star Indicator (Modern touch) */
.review-card::after {
  content: "★★★★★";
  color: #fbbf24; /* Premium Gold */
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 15px;
  display: block;
}

.review-card h4 {
  margin-top: 20px;
}

/* 3. The Footer of the Card */
figcaption {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.review-name {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.review-meta {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cool-accent);
  font-weight: 600;
}

/* --- CONTACT FORM --- */
/* --- CONTACT FORM --- */
/* --- CONTACT FORM --- */

#contact {
  padding: 80px 3%;
  background-color: var(
    --white
  ); /* Contrast against the dark Reviews section */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  /* padding: 80px 0; */
  align-items: start;
}

/* 1. Left Side: Contact Info Details */
.contact-details {
  margin: 40px 0;
}

.contact-details li {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-details li strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cool-accent);
}

.contact-details li a,
.contact-details li span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-note {
  font-size: 0.9rem;
  color: #3b82f6;
  border-radius: 8px;
  display: inline-block;
}

.form-row {
  margin-bottom: 20px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

/* The "Glow" Focus State */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  background-color: var(--white);
  border-color: var(--cool-accent);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.1); /* Soft Blue Halo */
  transform: translateY(-2px);
}

.btn-primary {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 5px;
}

.btn-primary.btn-full:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.4);
}

/* 5. Error Message Polish */
.field-error {
  color: #e11d48; /* Sophisticated Rose-Red */
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 5px;
  height: 1rem; /* Prevents layout jump when error appears */
}

.form-message {
  margin-top: 15px;
  min-height: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* WARNING MODAL FOR THE FORM */
/* WARNING MODAL FOR THE FORM */
/* WARNING MODAL FOR THE FORM */

/* 1. The Dimmed Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Solid dark dim */
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

/* 2. The Simple White/Dark Box */
.modal-box {
  background: #ffffff; /* Let's try light for high contrast, or use #1a1a1a for dark */
  color: #1a1a1a;
  border-radius: 8px;
  width: 90%;
  max-width: 380px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* 3. Typography */
.modal-box h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: #ef4444; /* Keep the red for the "Warning" text */
  margin-bottom: 15px;
}

.modal-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #4b5563; /* Soft gray for readability */
  margin-bottom: 25px;
}

/* 4. The Redesigned Buttons */
.modal-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* The primary "Understood" button */
.btn-confirm {
  background: #0052cc;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  flex: 1; /* Makes it fill the space */
}

.btn-confirm:hover {
  background: #333333;
}

/* The small "X" in the corner (optional) */
.close-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #9ca3af;
}

/* --- FOOTER --- */
/* --- FOOTER --- */
/* --- FOOTER --- */
.site-footer {
  background: var(--dark);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-meta {
  opacity: 0.6;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* =========================
   FOOTER BASE
========================= */

.footer {
  background: #0f172a; /* deep modern dark */
}

.footer-information {
  display: flex;
}

.footer-details {
  display: flex;
  width: 100%;
  color: rgb(156, 163, 175);
  padding: 40px 18%;
  justify-content: space-between;
}

.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-services ul li:hover {
  color: white;
}

.footer-contact ul li:hover {
  color: white;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-contact-header {
  color: white;
}

.footer-information h3 {
  font-size: 15px;
}

.site-footer {
  background: #0f172a; /* deep modern dark */
  color: #e5e7eb;
  padding: 0 18% 40px;
}

.footer-details h3 {
  font-family: "Segoe UI", sans-serif;
  color: rgb(156, 163, 175);
}
.footer-details p {
  margin-top: 20px;
}

.footer-header {
  margin-bottom: 20px;
  color: white;
}

.footer-contact-header {
  margin-bottom: 20px;
}

/* CONTAINER */
.footer-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================
   BRAND TEXT
========================= */
.footer-brand {
  font-size: 14px;
  color: #9ca3af;
}

.footer-brand span {
  color: #ffffff;
  font-weight: 500;
}

/* =========================
   META TEXT
========================= */
.footer-meta {
  font-size: 14px;
  color: rgb(156, 163, 175);
  letter-spacing: 0.3px;
}

/* =========================
   TOP BORDER GLOW LINE
========================= */
.site-footer::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(59, 130, 246, 0.6),
    transparent
  );
  margin-bottom: 25px;
}

/* --- MOBILE RESPONSIVENESS --- */

@media (max-width: 1400px) {
  .hero {
    padding: 100px 3%;
  }
}

@media (max-width: 1024px) {
  .about-grid {
    padding: 20px 20px;
  }
}

@media (max-width: 768px) {
  #about {
    padding: 40px 3%;
  }

  #contact {
    padding: 40px 3%;
  }

  .hero,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
  }

  #nav nav {
    height: 100px;
    padding: 0 20px;
  }

  #nav ul {
    display: none;
  }

  #hero-heading {
    font-size: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  /* SLIDER RESPONSIVE */

  .slide-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -40%); /* Starts slightly lower */
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 10;
    opacity: 0;
    transition: all 0.8s ease-out 0.3s; /* Delayed entrance */
  }

  .slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%); /* Slides up into position */
  }

  .slide-content h1 {
    /* font-size: 3rem;
  margin-bottom: 1rem; */

    margin-bottom: 1rem;
  }

  .slide-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 600px;
    margin-inline: auto; /* Centers the paragraph */
  }

  .next,
  .prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;

    display: none;
  }

  .next:hover,
  .prev:hover {
    /* background: var(--primary); */
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
  }
}

@media (max-width: 768px) {
  .footer-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  #nav.scrolled #logo {
    height: 70px;
    cursor: pointer;
    transition: transform 0.25s ease;
    filter: none;
    padding: 10px 0;
  }
}

@media (max-width: 1024px) {
  .slide-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -40%); /* Starts slightly lower */
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 10;
    opacity: 0;
    transition: all 0.8s ease-out 0.3s; /* Delayed entrance */
  }

  .slide-content h2 {
    font-size: 2rem;
  }
}
