/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. CSS Reset & Base Styles
   2. Layout & Container
   3. Header & Navigation
   4. Hero Section
   5. Services Section
   6. About Us Section
   7. Utility & Helper Classes
   8. Media Queries
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  
  background: black;
  overflow-x: hidden;
}

#home{
  background: linear-gradient(135deg, #fdfbf7 0%, #e6dfcd 100%);
}
/* ============================================
   2. LAYOUT & CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: 1300px;
  padding: 32px 48px 0;
  display: flex;
  margin: auto;
  flex-direction: column;
}

/* ============================================
   3. HEADER & NAVIGATION
   ============================================ */

/* --- Header Base --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 48px;
  z-index: 1000;
  transition: all 0.2s ease-in-out;
}
.logo img{
  width: 120px;
}
header.scrolled{
  padding: 5px 48px;
}
header.scrolled nav{
  background: rgba(253, 251, 247, 0.95);
  padding: 10px 25px;
  border-radius: 10px;
  transition: max-width 0.1s ease 0.2s, ease 0.2s, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgb(0 0 0 / 5%);
}

/* --- Logo --- */
.logo {
  font-size: 24px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  color: #000;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
/* SCROLLING UP: Expand the width and padding immediately (no delay) */
  transition: max-width 0.4s ease, padding 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
  transition-delay: 0.2s;
}

.logo, .header-actions {
  /* Keep your existing font and flex rules here... */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);

  /* SCROLLING UP: Wait 0.4s for the header to finish expanding, THEN fade in */
  transition: opacity 0.3s ease 0.4s, transform 0.3s ease 0.4s, visibility 0s 0.4s;
}

.logo-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    #f5b041,
    #f5b041 3px,
    transparent 3px,
    transparent 6px
  );
}

.scrolled .logo, .scrolled .header-actions {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  
  /* SCROLLING DOWN: Fade out immediately (no delay) so the header can shrink after */
  transition: opacity 0.2s ease 0s, transform 0.2s ease 0s, visibility 0s 0.2s;
}

/* --- Navigation --- */
.nav-wrapper {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  font-size: 28.8px;
  cursor: pointer;
  z-index: 1001;
  color: #111;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

nav a:hover {
  transform: scale(1.1);
  color: #6d6941;
}

/* .scrolled nav a{
  font-size: 13px;
} */

/* --- Header Actions --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.icon-btn i{
  z-index: 2;
}

/* .icon-btn:hover,
.primary-btn:hover {
  transform: scale(1.1);
} */

.primary-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12.8px 28.8px;
  border-radius: 10px;
  font-size: 13.6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5008px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 0;
  font-weight: 500;
  font-family: 'Inter';
}

.primary-btn::before, .icon-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #474630;
    transition: 0.4s;
}
.primary-btn:hover::before, .icon-btn:hover::before{
    height: 100%;
}
.primary-btn p{
  position: relative;
  z-index: 2;
}

/* ============================================
   4. HERO SECTION
   ============================================ */

/* --- Hero Container --- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #fdfcf9;
  overflow: hidden;
}

.hero {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  z-index: 10;
  margin-top: 90px;
}

/* --- Hero Content --- */
.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-content h1 {
  font-size: 64px;
  letter-spacing: -1.6px;
  line-height: 1.1;
  font-weight: 600;
  color: #14161a;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 17.6px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 40px;
}

.hero-content p i {
  font-style: italic;
}

.hero-content p b {
  font-weight: 700;
  color: #111;
}

/* --- Hero CTA Buttons --- */
.cta-buttons {
  display: flex;
  gap: 19.2px;
  margin-bottom: 32px;
}

.btn-dark,
.btn-light {
  display: flex;
  align-items: center;
  gap: 12.8px;
  padding: 9.6px 9.6px 9.6px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
}

.btn-dark {
  background-color: #080a0c;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  z-index: 0;
  color: #fff;
  border: none;
}
.btn-dark:hover{
  background-color: #474630;
}
.btn-dark:hover .icon-circle{
  background-color: white;
}
.btn-dark:hover .icon-circle{
  color: #474630;
}

.btn-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-20deg);
}
.btn-dark:hover::before {
    left: 150%;
    transition: 0.5s;
}
.btn-light {
  background-color: transparent;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2a2c31;
  color: #fff;
  font-size: 14.4px;
}

.light-circle {
  background-color: #fff;
  color: #000;
}

/* --- Hero Statistics --- */
.stats {
  display: flex;
  gap: 56px;
}

.stat-item h2 {
  font-size: 35.2px;
  font-weight: 800;
  color: #111;
  margin-bottom: 3.2px;
}

/* --- Hero Image --- */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 10;
}

.hero-image img {
  max-width: 75%;
  height: auto;
  object-fit: contain;
}

/* --- Background Effects --- */
.glow-blob {
  width: 1000px;
  height: 1000px;
  position: absolute;
  right: -300px;
  top: -400px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgb(234 219 197) 60.44%,
    rgb(132 124 111) 100%
  );
  filter: blur(124.6496px);
  transform: rotate(-136.236deg);
  z-index: -10;
}

.glow-blob.left {
  left: -500px;
  top: unset !important;
  bottom: -550px;
  right: unset !important;
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ============================================
   5. SERVICES SECTION
   ============================================ */

/* --- Services Container --- */
.services-wrapper {
  background-color: #c5b49f;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  color: #111;
  padding: 50px 5% 100px;
  position: relative;
  box-sizing: border-box;
  z-index: 10;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px
  );
  background-size: 25% 100%;
  background-position: 20% 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.services-wrapper * {
  box-sizing: border-box;
}

/* --- Services Header --- */
.services-header {
  margin-bottom: 80px;
}

.services-title-group {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.services-label {
  display: block;
  font-size: 20px;
  color: #111827;
  margin-bottom: 8px;
  font-family: Poppins;
}

.services-title {
  width: 50%;
  font-family: Inter;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.5008px;
  color: black;
}

.services-description {
  width: 45%;
  font-family: 'Inter';
  font-size: 18px;
  line-height: 1.5;
}
.meta, .google, .youtube, .seo{
  font-weight: 600;
  font-style: italic;
}
/* --- Services List --- */
.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: flex;
  width: 100%;
  align-content: stretch;
  justify-content: center;
  flex-direction: row;
  padding: 30px 70px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.service-item.active {
  align-items: flex-start;
}

/* --- Service Container --- */
.service-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

/* --- Service Info Column --- */
.service-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.service-number {
  font-size: 18px;
  font-family: Poppins;
  font-weight: 800;
  margin-top: 6px;
}

.service-text-group {
  display: flex;
  flex-direction: column;
}

.service-name {
  font-family: 'Poppins';
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

.service-description {
  font-size: 24px;
  color: #111;
  margin: 12px 0 0 0;
  display: none;
}

.service-item.active .service-description {
  display: list-item;
}

.services-wrapper ul {
  margin-left: 40px;
}

/* --- Service Media Column --- */
.service-media {
  display: flex;
  justify-content: flex-start;
  padding-right: 30px;
}

.service-image {
  width: 300px;
  height: 300px;
  border-radius: 8px;
  object-fit: cover;
  display: none;
}

.service-item.active .service-image {
  display: block;
  animation: fadeInSlide 0.4s ease forwards;
}

/* --- Service Icon Column --- */
.service-icon img {
  height: 25px;
  width: 25px;
  transition: transform 0.3s ease;
}

.service-item.active .service-icon img {
  transform: rotate(-45deg);
}

/* --- Expand/Collapse Animation --- */
.expand-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease 0.2s;
}

.expand-wrapper > * {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin: 0;
}

.service-item.active .expand-wrapper {
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.4s ease;
}

.service-item.active .expand-wrapper > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

/* --- Services Noise Effect --- */
.noise::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ============================================
   6. ABOUT US SECTION
   ============================================ */

/* --- About Us Container --- */
.about_us {
  background-color: #111111;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 60px 20px 130px;
}

.about_us header {
  align-items: flex-start;
  flex-direction: column;
}

.about_us .container {
  width: 100%;
}

#services .container{
  padding: 0;
}

/* --- About Us Typography --- */
.subtitle {
  color: #888888;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5008px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.title {
  font-size: 35.2px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
}

/* --- About Us Content Layout --- */
.content-wrapper {
  display: flex;
  gap: 50px;
  align-items: start;
}

/* --- Image Column --- */
.image-column {
  position: relative;
  width: 60%;
}

.main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #222222;
  display: block;
  border: 1px solid #333;
}

.image-column .overlapping-icon {
  position: absolute;
  z-index: 10;
  transform-origin: center center;
}

.image-column .arrow-icon {
  bottom: -50px;
  left: -65px;
  width: 140px;
  transform: rotate(5deg);
}

.image-column .loop-icon {
  top: -60px;
  left: -70px;
  width: 158px;
  height: 137px;
  transform: rotate(-12deg);
}

/* --- Stats Box --- */
.stats-box {
  position: absolute;
  bottom: -50px;
  right: -180px;
  background-color: #2c2c2c;
  padding: 35px 50px;
  border-radius: 6px;
  display: flex;
  gap: 60px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 35.2px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  color: #999999;
  font-size: 13.6px;
  font-weight: 400;
}

/* --- Text Column --- */
.text-column {
  padding-top: 10px;
  width: 40%;
}

.text-column p {
  color: #a0a0a0;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.text-column p:last-child {
  margin-bottom: 0;
}

.highlight {
  color: #00d084;
  font-weight: 600;
}
a {
    text-decoration: none;
}
/* --- Footer --- */
.site-footer {
    width: 100%;
    background-color: #222222; /* Inherits your body gradient natively */
    padding-bottom: 48px;
}
.floating-contact-btn{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    right: 42%;
    background-color: #000000;
    color: #ffffff;
    padding: 8px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s ease;
    z-index: 100;
}
.footer-brand:hover .floating-contact-btn {
    opacity: 1;
    visibility: visible;/* Keeps it centered while growing slightly */
}
.footer-content {
    border-top: 1px solid rgb(255 255 255 / 20%);
    padding-top: 40px;
    margin-top: 32px;
}

.social-heading {
    font-size: 17.6px;
    font-weight: 700;
    color: white;
    margin-bottom: 19.2px;
}

/* The flex container that spreads the 4 items out evenly */
.footer-links-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap; 
}
/* This class is added by JS on success */
.newsletter-heading.success-gold {
    color: gold !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: color 0.5s ease;
}

/* Styling the placeholder specifically when disabled */
#email-input:disabled::placeholder {
    color: gold;
    opacity: 0.8;
    letter-spacing: 2px;
    text-align: center; /* Makes the "THANK YOU" pop in the middle */
}

/* Optional: subtle border change for the wrapper on success */
.newsletter-heading.success-gold ~ .input-wrapper {
    border-color: gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
/* Keeps the social links tightly grouped together on the left */
.social-links {
    display: flex;
    gap: 24px;
}

/* Text styling for the gray links and copyright */
.footer-links-row a,
.footer-links-row span {
    font-size: 13.6px;
    color: #7a7a7a; 
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links-row a:hover {
    color: white; 
}


/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 40px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999; /* Ensures it stays above all other content */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05); /* Slight lift and zoom */
    background-color: #20b858;
    color: #FFF;
}


@media (max-width: 767px) {
    .floating-contact-btn{
        display: none!important;
    }
  .logo-wrapper img {
      max-width: 75vw !important;
  }
  .footer-newsletter{
    margin-bottom: 50px!important;
  }
  .services-wrapper{
    border-bottom-left-radius: 25px!important;
    border-bottom-right-radius: 25px!important;
  }
  .hamburger{
    font-size: 20px;
  }
  #home .container{
    padding: 0 20px;
  }
  #services .container{
    padding: 0;
  }
  .logo{
    transition-delay: unset;
  }
  .logo img{
    width: 100px;
  }
  .scrolled .logo{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }


  .services-title{
    font-size: 25px;
    width: 100%;
  }
  .services-title-group{
    flex-direction: column;
    gap: 10px;
  }
  .services-description{
    width: 100%;
    font-size: 16px;
  }
  .services-label{
    font-size: 15px;
  }

  .service-item{
    padding: 10px 5px 10px 20px;
  }

  .service-name{
    font-size: 18px;
  }
  .service-number{
    margin-top: 0;
  }
  .service-icon img{
    height: 14px;
    width: 14px;
  }
  .expand-wrapper ul{
    margin: 0;
  }
  .service-description{
    font-size: 18px;
  }
  .service-container{
    flex-direction: column;
  }
  .service-image{
    display: none!important;
  }
  .services-header{
    margin-bottom: 50px;
  }

  #about_us .container{
    padding: 0;
  }
  .title {
      font-size: 28px;
      font-weight: 600;
  }
  .content-wrapper{
    flex-direction: column;
  }
  .image-column, .text-column{
    width: 100%;
  }
  .main-image{
    height: 100%;
  }
  .image-column .loop-icon{
    top: -30px;
    left: -20px;
    width: 80px;
    height: 70px;
    transform: rotate(343deg);
  }
  .image-column .arrow-icon{
    bottom: -20px;
    left: -24px;
    width: 80px;
  }
  .stats-box{
    bottom: -40px;
    right: 5px;
    padding: 35px 40px;
    gap: 30px;
  }
  .text-column p {
    font-size: 14px;
  }

  .stat-number{
    font-size: 20px!important;
  }
}



@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}




/* ============================================
   7. UTILITY & HELPER CLASSES
   ============================================ */

.content {
  position: relative;
  z-index: 10;
}

/* ============================================
   8. ANIMATIONS
   ============================================ */

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   9. MEDIA QUERIES
   ============================================ */

/* --- Desktop Navigation Center Alignment --- */

  .nav-wrapper {
    flex-grow: 1;
    justify-content: flex-end;
  }

  nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  nav ul {
    margin-left: 0;
  }


/* --- Tablet & Mobile --- */
@media (max-width: 767px) {

  header.scrolled {
    background: white;
    padding: 10px 15px;
    width: calc(100% - 10px);
    margin: 5px auto;
    border-radius: 10px;
    max-width: 100%;
  }
  .hero-content p{
    max-width: 380px;
  }


  .hamburger {
    display: block;
  }

  .about_us{
    padding: 60px 20px 60px;
  }

  .container{
    padding: 10px 20px;
  }

  .footer-links-row{
    gap: 8px;
  }
  .footer-links-row a, .footer-links-row span{
    font-size: 10px;
  }

  .site-footer{
    padding-bottom: 10px;
  }
  .copyright{
    margin-top: 20px;
  }
  /* Mobile Navigation Drawer */
  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background-color: #fdfbf7;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease-in-out;
  }

  .nav-wrapper.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    margin-left: 0;
    text-align: center;
    gap: 25px;
  }

  .header-actions {
    display: none;
  }

  .primary-btn {
    width: 100%;
  }

  /* Hero Section Adjustments */
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
  }

  .cta-buttons {
    justify-content: center;
  }

  .stats {
    justify-content: center;
  }

  .hero-image {
    justify-content: center;
  }
}

/* --- Mobile Specific --- */
@media (max-width: 768px) {
  /* Services Section */
  .services-title {
    font-size: 28px;
  }

  .service-item {
    grid-template-columns: 1fr 30px;
    row-gap: 20px;
  }

  .service-media {
    grid-column: 1 / -1;
    padding-left: 30px;
  }

  .service-item.active {
    padding-bottom: 40px;
  }
}

@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-content p {
        font-size: 13px;
    }
}

.main-content-wrapper {
    position: relative;
    z-index: 2; /* Keeps the content strictly ABOVE the footer */
    min-height: 100vh;
    /* CRITICAL: The bottom margin must exactly match the height of your footer */
    margin-bottom: 100vh; 
    /* Optional: A subtle shadow makes the separation look cleaner */
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}

#about_us{
  display: none;
}

.reveal-footer {
    position: fixed; /* Locks the footer to the screen */
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Must match the margin-bottom of the content-wrapper */
    z-index: 1; /* Keeps the footer strictly BELOW the content */
    
    background-color: #000000;
    color: #ffffff;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Footer Container */
.site-footer {
  background-color: #000000;
  padding: 60px 20px 40px;
  width: 100%;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Brand Section */
.footer-brand {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
}
.logo-wrapper img{
  max-width: 750px;
}


/* Newsletter Section */
.footer-newsletter {
  text-align: center;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-eyebrow {
  font-size: 12px;
  letter-spacing: 5px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.newsletter-heading {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 12px;
  margin-right: -12px; /* Offsets the wide letter-spacing to center correctly */
  margin-bottom: 15px;
}

.newsletter-subtext {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 40px;
}


/* .subscribe-form input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 12px 15px;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
}

.subscribe-form input::placeholder {
  color: #666666;
  letter-spacing: 1px;
}

.subscribe-form button {
  background: transparent;
  border: none;
  border-left: 1px solid #444444;
  color: #666666;
  padding: 0 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.subscribe-form button:hover {
  color: #ffffff;
} */

/* Bottom Bar */
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid transparent; /* Kept clean as per image */
  padding-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copyright {
  color: #888888;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 4px;
}

.footer-socials a {
  color: #ffffff;
  transition: transform 0.2s, color 0.2s;
  display: flex;
  align-items: center;
}

.footer-socials a:hover {
  color: #e27d14;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo-text { font-size: 3.5rem; }
  .tagline { font-size: 1.4rem; }
  .logo-arrow { width: 60px; right: -10px; top: -15px; }
  
  .newsletter-heading { font-size: 2rem; letter-spacing: 8px; margin-right: -8px; }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }
  
  .footer-links { align-items: center; }
}


/* Container for the input and button */
.input-wrapper {
  display: flex;
  align-items: center;
  background-color: #0b0b0b; /* Dark background */
  border: 1px solid #333333; /* Subtle gray border */
  border-radius: 2px;
  width: 100%;
  max-width: 400px;
  /* Smooth transition for the glow effect */
  transition: border-color 0.3s ease, box-shadow 0.3s ease; 
}

/* THE GLOW EFFECT: Triggers when the input inside is focused/clicked */
.input-wrapper:focus-within {
  border-color: #e27d14; /* Brand orange border */
  box-shadow: 0 0 12px rgba(226, 125, 20, 0.4); /* Orange glow */
}

/* The actual input field */
.email-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  outline: none; /* Removes the default browser focus outline */
}

/* Styling the placeholder text to match your image */
.email-input::placeholder {
  color: #7c7c7c; /* Muted brownish-orange */
  letter-spacing: 1px;
}

/* The submit button with the divider line */
.submit-btn {
  background: transparent;
  border: none;
  border-left: 1px solid #333333; /* The vertical divider */
  color: #666666;
  padding: 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch; /* Makes the button fill the height so the border stretches */
  transition: color 0.2s ease;
}

/* Optional: Make the arrow glow orange on hover */
.submit-btn:hover {
  color: #e27d14; 
}

/* Optional: Keep the divider colored when the wrapper is glowing */
.input-wrapper:focus-within .submit-btn {
  border-left-color: rgba(226, 125, 20, 0.5); 
}

@media (max-width: 1024px) {
    .footer-links-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .services-wrapper{
      padding: 50px 5% 50px;
    }
    .logo-wrapper img{
      max-width: 600px;
    }
  .hero-image img{
    max-width: 100%;
  }

  .stats{
    gap: 35px;
    margin-bottom: 20px;
  }

  .cta-buttons{
    margin-bottom: 20px;
  }

  .hero-content p {
    margin-bottom: 20px;
  }

  .stat-item h2{
    font-size: 35px;
  }

  .stat-item span{
    font-size: 10px;
  }
  .icon-circle{
    width: 30px;
    height: 30px;
  }
  .btn-dark, .btn-light{
    font-size: 14px;
  }
    .hero-content h1{
      font-size: 40px;
    }
    .hero-content p{
      font-size: 14px;
    }
    .social-links {
        gap: 32px;
    }
    header {
      padding: 15px 20px;
    }
}

@media (max-width: 425px) {
  header.scrolled{
    padding: 5px 15px;
    height: 40px;
  }
  .hero{
    gap: 20px!important;
  }
  .newsletter-eyebrow{
    font-size: 9px;
  }
  .newsletter-subtext{
    font-size: 12px;
  }
  .newsletter-heading {
    font-size: 25px;
  }
  .footer-newsletter{
    margin-bottom: 60px;
  }
}