/* --- 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 */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* --- NAVIGATION --- */
/* --- NAVIGATION --- */
/* --- NAVIGATION --- */

#nav {
  padding: 0 0;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
  position: sticky;
  top: 0;
  z-index: 1000;

  /* 1. Glassmorphism Background */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px); /* Blurs content behind as you scroll */
  -webkit-backdrop-filter: blur(12px);

  /* 2. Visual Border */
  border-bottom: 1px solid rgba(226, 232, 240, 0.5); /* Subtle cool-slate */
  transition: all 0.4s ease;
}

#nav nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100px; /* Fixed height for consistent alignment */
  display: flex;
  justify-content: space-between; /* Logo left, Links right */
  align-items: center;
}

#nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}

nav ul li a {
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

nav ul li a:hover {
  color: var(--primary);
}

/* 3. Logo Placeholder Style */
#logo {
  height: 40px;
  width: auto;
  min-width: 120px;
  background: var(--cool-ice); /* Temporary visual if no image is loaded */
  border-radius: 4px;
}

/* 4. The "Elite" Link Style */
#nav ul li a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 0;
  transition: var(--transition);
}

#nav ul li a:hover {
  color: var(--cool-accent);
}

/* 5. The "Smart Underline" Animation */
#nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cool-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

#nav ul li a:hover::after {
  width: 100%; /* Grows from the center out */
}

/* --- HERO SLIDER --- */
/* --- HERO SLIDER --- */
/* --- HERO SLIDER --- */
.hero-slider {
  position: relative;
  height: 860px;
  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.7) 100%
      /* Darker bottom for text contrast */
  );
}

/* .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
} */

.slide-content {
  position: absolute;
  top: 50%;
  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;
}

.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 */
}

.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);
}

/* --- HERO CONTENT SECTION --- */
/* --- HERO CONTENT SECTION --- */
/* --- HERO CONTENT SECTION --- */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding: 100px 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: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  display: block;
}

/* #hero-heading {
  font-size: 3.5rem;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
} */

#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: 15px;
  margin-bottom: 40px;
} */

.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: 800;
  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;
}

/* Visual Panel */
/* .hero-visual {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--primary);
} */

/* 4. The "Dashboard" Visual Panel */
.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);
}

/* .hero-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 600;
} */

/* 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;
}

/* High-Contrast Badge */
/* .hero-badge {
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
} */

/* --- SERVICES GRID --- */
/* --- SERVICES GRID --- */
/* --- SERVICES GRID --- */
#services {
  padding: 80px 0; /* 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;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
}

.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;
}

/* .service-card p {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.6;
} */

.card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  transition: var(--transition);
}

.shadow-soft {
  box-shadow: var(--shadow);
}

/* .service-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--primary);
} */

.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-style: italic;
  font-size: 0.85rem;
  color: var(--primary);
} */

.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 0;
  /* 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;
}

/* #about-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--cool-accent);
  margin-top: 10px;
} */

#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 0;
  background: var(--dark); /* Using that premium deep navy from your root */
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* 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;
}

#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: 60px;
}

/* --- 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;
}

.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: var(--cool-accent);
  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;
}

blockquote {
  font-style: normal; /* "Elite" sites often avoid fake-looking italics */
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

/* 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: 100px 0;
  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: var(--text-muted);
  padding: 15px 20px;
  background: var(--cool-ice);
  border-radius: 8px;
  border-left: 4px solid var(--cool-accent);
  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;
}

/* --- MOBILE RESPONSIVENESS --- */

@media (max-width: 1400px) {
  .hero {
    padding: 100px 3%;
  }
}

@media (max-width: 768px) {
  .hero,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  #nav nav {
    height: 70px;
    padding: 0 20px;
  }

  #nav ul {
    display: none;
  }

  #hero-heading {
    font-size: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }
}
