body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #f9f9f9;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  padding-top: 80px; /* Adjust based on navbar height */
}
body {
  margin: 0;
  overflow-x: hidden;
}


/* Liquid Glass Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.quote-btn {
  background-color: black;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
}



/* Logo + Text */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #000;
}

.logo-img {
  width: 40px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: rotate(-8deg) scale(1.1);
}

.logo-text {
  display: inline-block;
}

.navbar-content {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a:focus,
.nav-links li a.active {
  color: #D2773B;
}

.quote-btn {
  background-color: black;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.theme-toggle {
  margin-left: 1rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #222;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 479px;
  padding: 6rem 2rem;
  color: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.30));
  z-index: 2;
  pointer-events: none;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h1 span {
  color: #000000;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

.hero p {
  font-size: 1.25rem;
  color: #4B5563;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn, .cta-secondary {
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-btn {
  background-color: #000;
  color: #fff;
}

.cta-btn:hover {
  background-color: #D2773B;
}

.cta-secondary {
  color: #222;
  border: 2px solid #222;
}

.cta-secondary:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/*-------------------------------------------------------*/
.agency-intro {
  background-color: #fff;
  padding: 6rem 2rem;
  color: #111;
}

.agency-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.agency-text {
  flex: 1 1 600px;
}

.agency-text h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.intro-lead {
  font-size: 1.2rem;
  color: #4B5563;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.agency-points {
  list-style: none;
  padding: 0;
}

.agency-points li {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #333;
}

.agency-points li strong {
  color: #D2773B;
}

.agency-visual {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.agency-badge {
  background-color: #f9f9f9;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.agency-badge:hover {
  transform: translateY(-4px);
}
/* =======================================================
   Legal Section – Premium Minimal Layout
======================================================= */

.legal-section {
  padding: 120px 24px;
  background: #ffffff;
}

.legal-container {
  max-width: 1200px;
  margin: 0 auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.legal-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 1rem;
}

.legal-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 1.5rem;
}

.legal-header p {
  font-size: 1.2rem;
  color: #4B5563;
  line-height: 1.7;
}

/* Grid Layout */

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Cards */

.legal-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-card video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.legal-card-content {
  padding: 28px;
}

.legal-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.75rem;
}

.legal-card-content p {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.legal-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #D27733;
  text-decoration: none;
  position: relative;
}

.legal-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #000000;
  transition: width 0.3s ease;
}

.legal-link:hover::after {
  width: 100%;
}

/* Hover Effect */

.legal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Responsive */

@media (max-width: 992px) {
  .legal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-header h2 {
    font-size: 2.2rem;
  }

  .legal-card img {
    height: 220px;
  }
}
/*-------------------------------------------------------*/
.services {
  background-color: #fff;
  padding: 4rem 2rem;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card .icon  {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}

.service-card a {
  color: #D2773B; /* Gold */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card a:hover {
  color: #D2773B;
}
/*-------------------------------------------------------*/
.agency-process {
  background-color: #000000;
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
}

.process-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.agency-process h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-lead {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  background-color: #f9f9f9;
  color: #222;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
  position: relative;
}

.step-number {
  position: absolute;
  top: -1.2rem;
  left: -1.2rem;
  background-color: #D2773B;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}

/*-------------------------------------------------------*/
.cta-section {
  background-color: #000000; /* Black background */
  color: #fff;            /* White text */
  text-align: center;
  padding: 4rem 2rem;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #fff;
}

/* Primary Button: Dark Copper with Black Text */
.cta-section .cta-btn {
  background-color: #D2773B; /* Dark copper */
  color: #000;               /* Black text */
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 0.5rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-section .cta-btn:hover {
  background-color: #D2773B;
}

/* Secondary Button: Black background, white border and text */
.cta-section .cta-secondary {
  background-color: #000;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 0.5rem;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-section .cta-secondary:hover {
  background-color: #fff;
  color: #000;
}


/*-------------------------------------------------------*/
footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 2rem;
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.footer-center h4,
.footer-right h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-center ul,
.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-center ul li,
.footer-right ul li {
  margin-bottom: 0.5rem;
}

.footer-center ul li a,
.footer-right ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-center ul li a:hover,
.footer-right ul li a:hover {
  color: #d4af37; /* Gold hover */
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-legal {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin-bottom: 0.5rem;
}

.footer-legal a {
  color: #aaa;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  

  

  .scaling-heading {
    font-size: 2rem;
  }

  .scaling-lead {
    font-size: 1rem;
  }

  .scaling-image-block {
    height: 200px;
  }

  .services h2 {
    font-size: 1.75rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem;
  }

  .agency-process h2 {
    font-size: 1.75rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    text-align: center;
  }

  .step-number {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-section .cta-btn,
  .cta-section .cta-secondary {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .agency-text h2 {
    font-size: 1.5rem;
  }

  .intro-lead {
    font-size: 1rem;
  }

  .scaling-heading {
    font-size: 1.5rem;
  }

  .services h2 {
    font-size: 1.5rem;
  }

  .service-card .icon {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .agency-process h2 {
    font-size: 1.5rem;
  }

  .process-step {
    padding: 1.5rem;
  }
}
