:root {
  --font-poppins: 'Poppins', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-felix: 'Felix Titling', sans-serif;
  --font-cinzel: 'Cinzel Decorative', sans-serif;
  --font-antic: 'Antic Didone', sans-serif;

  --color-white: #ffffff;
  --color-black: #000000;
  --color-text-light: #959595;
  --color-text-medium: #909090;
  --color-background-light: #fdfcfb;
  --color-background-medium: #d9d9d9;
  --color-background-dark: #262626;
  --gradient-main: linear-gradient(180deg, #fdfcfb 0%, #e2d1c3 100%);

    /* ...existing variables... */
  --header-height: 80px;
  --bp-lg: 1200px;
  --bp-md: 768px;
  --bp-sm: 480px;
}

  *, *::before, *::after {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: var(--font-poppins);
    background-color: var(--color-white);
    color: var(--color-black);
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 1728px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  h1, h2, h3, h4, h5, h6, p {
    margin: 0;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  button {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
  }

.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url("assets/hook-image.jpg") no-repeat center top 20%;
  background-size: cover;
  padding: 5vh 5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* HEADER */
.site-header {
  width: 100%;
  display: flex;
  justify-content: center;  /* nav centered */
  align-items: center;
  position: relative;
  padding: 2vh 0;
}

.logo {
  position: absolute;       /* lock logo to left */
  left: -2vw;
  width: clamp(50px, 8vw, 80px);
  height: auto;
}

.main-nav {
  display: flex;
}

.main-nav ul {
  display: flex;
  justify-content: center;  /* keep links centered */
  align-items: center;
  gap: clamp(12px, 4vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  transition: opacity 0.3s;
}

.main-nav a:hover {
  opacity: 0.8;
}

.contact-btn {
  background-color: rgba(255, 237, 41, 0.9);
  color: black !important;
  padding: clamp(4px, 1vh, 6px) clamp(12px, 2vw, 20px);
  border-radius: 15px;
  box-shadow: 0px 0px 6.5px 5px rgba(255, 255, 255, 0.25);
  font-weight: 400;
}

/* HERO CONTENT */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* left aligned */
  margin-left: -3vw;          /* align with logo */
  margin-bottom: 38vh;
  gap: 1rem;
}

.main-heading-1,
.main-heading-2,
.main-heading-3 {
  color: var(--color-white);
  text-align: left !important;
  margin: 0;
  line-height: 1.2;
}

/* Responsive scaling with clamp */
.main-heading-1 {
  font-family: var(--font-antic);
  font-size: clamp(2rem, 6vw, 75px);
  font-weight: 200;
}

.main-heading-2 {
  font-family: var(--font-poppins);
  font-size: clamp(2rem, 7vw, 8px);
  font-weight: 600;
}

.main-heading-3 {
  font-family: var(--font-felix);
  font-size: clamp(2rem, 6vw, 80px);
  font-weight: 400;
}

/* ===== HAMBURGER MENU STYLES ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 24px;
  top: 30px;
  z-index: 1000;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--color-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    top: 15px;
  }
  
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    /* Glass effect background */
    background: rgba(32, 28, 5, 0.519); /* Semi-transparent black */
    backdrop-filter: blur(10px); /* Glass blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    border-left: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    /* Rest of your styles */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 999;
    padding: 80px 20px 40px;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 30px;
  }
  
  .main-nav a {
    font-size: 1.2rem;
  }
  
  /* Hamburger animation when active */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 8px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -8px);
  }
  
  /* Prevent body scrolling when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}
/* ========== RESPONSIVE BREAKPOINTS ========== */

@media (min-width: 1440px) {
  .hero-content {
    margin-bottom: 48vh; /* Slightly more bottom margin */
    margin-left: -3vw; /* Less negative margin for better alignment */
  }
  
  .main-heading-1 {
    font-size: clamp(3rem, 7vw, 50px); /* Larger font range */
    font-weight: 800; /* Slightly bolder */
    letter-spacing: -1px; /* Tighter letter spacing */
  }
  
  .main-heading-2 {
    font-size: clamp(1.4rem, 4.5vw, 18px); /* Larger font range */
    letter-spacing: 0.5px; /* Slightly more spacing */
    margin-top: -10px; /* Pull closer to first heading */
  }
}
@media (max-width: 1200px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
  }

  .logo {
    width: 70px;
  }
.hero-content {
    margin-top: 0;  
    transform: translateY(-80px); 
    margin-left: -5vw;
  }
  .main-nav ul {
    gap: 30px;
  }

  .main-heading-1 {
    font-size: 3.5vw;
    font-weight: 800;
  }

  .main-heading-2 {
    font-size: 1.5vw;
  }

  .main-heading-3 {
    font-size: 6.5vw;
  }
}

@media (max-width: 1024px) {
  .logo {
    width: 65px;
  }

.hero-content {
    margin-top: 0;   
    transform: translateY(-110px); 
    margin-bottom: 35vw;

  }
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url("assets/hook-image.jpg") no-repeat center top 20%;
  background-size: cover;
  padding: 5vh 5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

  .main-nav ul {
    gap: 25px;
  }

  .main-heading-1 {
    font-weight: 900;
    font-size: 3vw;
  }

  .main-heading-2 {
    font-size: 1.4vw;
  }

  .main-heading-3 {
    font-size: 6vw;
  }
}

 @media (max-width: 768px) {
.hero-section {
        /* Show the rightmost part of the image while keeping full height */
        background-size: auto 100%; 
        background-position: 18% center;
        background-repeat: no-repeat;
        max-width: 100%;

        /* Adjusting layout for mobile */
        height: auto;
        min-height: 100vh;
        padding-top: 60px;
        justify-content: flex-start;
        }

            .navbar {
                flex-direction: column;
                padding: 15px;
                background: rgba(0, 0, 0, 0.8);
            }
            
            .logo {
                margin-bottom: 15px;
                font-size: 20px;
            }
            
            .nav-links {
                width: 100%;
                justify-content: space-around;
            }
            
            .nav-links li {
                margin: 0 10px;
            }
            
            .hero-content {
                padding: 20px;
                margin-top: 60px;
            }
            
            .hero-content h1 {
                font-size: 3.2rem;
                margin-top: 150px;
            }

            .hero-content h2 {
            font-size: 1.4rem;
            }
}

@media (max-width: 480px) {
.hero-section {
        /* Show the rightmost part of the image while keeping full height */
        background-size: auto 100%; 
        background-position: 18% center;
        background-repeat: no-repeat;
        max-width: 100%;

        /* Adjusting layout for mobile */
        height: auto;
        min-height: 100vh;
        padding-top: 60px;
        justify-content: flex-start;
        }

            .navbar {
                flex-direction: column;
                padding: 15px;
                background: rgba(0, 0, 0, 0.8);
                
            }
            
            .logo {
                margin-bottom: 15px;
                font-size: 20px;
            }
            
            .nav-links {
                width: 100%;
                justify-content: space-around;
            }
            
            .nav-links li {
                margin: 0 10px;
            }
            
            .hero-content {
                padding: 20px;
                margin-top: 60px;
            }
            
            .hero-content h1 {
                font-size: 2.3rem;
                margin-top: 100px;
            }

            .hero-content h2 {
            font-size: 1rem;
            }
}
  /* CSS from section:about */
  .about-section {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 100px 0; 
    margin-top: 0; 
    position: relative;
    z-index: 1;
    text-align: center;
  }

/* Apply scroll offset directly to the section */
#about {
  scroll-margin-top: 160px; 
}
html {
  scroll-behavior: smooth;
}
.about-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}

.about-title {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.5;
}

.about-text {
  font-family: var(--font-poppins);
  font-weight: 275;
  font-size: 24px;
  line-height: 1.5;
  max-width: 1383px;
}

@media (max-width: 1200px) {
  .about-section {
    margin-top: -200px;
    padding: 150px 0 100px;
  }
}

@media (max-width: 768px) {
  .about-section {
    margin-top: -100px;
    padding: 120px 24px 80px;
  }
  .about-title {
    font-size: 36px;
  }
  .about-text {
    font-size: 18px;
  }
}

/* ================================
   FEATURES SECTION
================================ */
.main-content {
  background: var(--gradient-main);
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 0 0 45px 45px;
  box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.25);
}

.features-section {
  padding: 100px 0 0px;
  gap: 20px;
  padding-top: 40px;
  text-align: center;
}

.section-title {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  justify-content: center;
  padding: 0 5px;
}

.feature-card {
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

/* Default image style */
.feature-card img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 329 / 588;
  object-fit: cover;
  margin-bottom: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Default heading style */
.feature-card h3 {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  transition: transform 0.4s ease; 
}

/* ================================
   HOVER EFFECTS
================================ */
.feature-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

/* Title → scales only (no shadow) */
.feature-card:hover h3 {
transform: scale(1.05) translateY(6px); 
  box-shadow: none !important;
  text-shadow: none !important;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .section-title {
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .section-title {
    font-size: 36px;
    margin-bottom: 60px;
  }
  .feature-card h3 {
    font-size: 24px;
  }
}
/* Scenario Section */
.scenario-card img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

/* Grid layout */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  padding: 0 70px;
  align-items: start;
}

/* Upper row (cards 1 & 2) */
.scenario-card:nth-child(1) img {
  height: 450px;  /* smaller */
}
.scenario-card:nth-child(2) img {
  height: 500px;  /* larger */
}

/* Middle row (cards 3 & 4) */
.scenario-card:nth-child(3) img {
  height: 500px;  /* larger */
}
.scenario-card:nth-child(4) img {
  height: 450px;  /* smaller */
}

/* Lower row (cards 5 & 6) */
.scenario-card:nth-child(5) img {
  height: 450px;  /* smaller */
}
.scenario-card:nth-child(6) img {
  height: 500px;  /* larger */
}
.scenarios-section .section-title {
  text-align: center;   
  margin: 80px 0 60px;  
  font-size: 48px;      
  font-weight: 600;
}

/* Captions */
.scenario-caption {
  text-align: left;
}
.scenario-caption h4 span {
  display: inline-block; 
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 10px;
  margin-top: 14px;
  position: relative;
}

.scenario-caption h4 span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease-out;
    pointer-events: none;
}

.scenario-card:hover .scenario-caption h4 span::after {
    width: 100%;
}
.scenario-caption p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .scenarios-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0;
  }
  .scenario-card img {
    height: auto; /*resize naturally on small screens */
  }
  
}


/* CSS from section:testimonials */
.testimonials-section {
  padding: 100px 0 15px;
  text-align: center;
  overflow: hidden;
}

.testimonials-section .section-title {
  margin-bottom: 124px;
}

.testimonials-marquee {
  display: flex;
  margin-bottom: 72px;
}

.testimonials-track {
  display: flex;
  gap: 80px;
  animation: marquee 60s linear infinite;
  flex-shrink: 0;
}

.testimonials-marquee.reverse .testimonials-track {
  animation-direction: reverse;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 auto;
  width: 728px;
  padding: 32px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.testimonial-card img {
  width: 103px;
  height: 103px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card p {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}

.testimonial-card.style-1 { background-color: #eed9c1; }
.testimonial-card.style-2 { background-color: #d5e3bc; }
.testimonial-card.style-3 { background-color: #d6b9b9; }
.testimonial-card.style-4 { background-color: #f4f2d0; }
.testimonial-card.style-5 { background-color: #c7d4e8; }

@media (max-width: 768px) {
  .testimonials-section { padding: 80px 0; }
  .testimonial-card { width: 90vw; flex-direction: column; text-align: center; }
  .testimonial-card p { text-align: center; }
  .testimonials-track { gap: 20px; }
}

/* CSS from section:cta */
.cta-section {
  padding: 100px 0;
  width: 100%;                  /* instead of 90% */
  max-width: 1200px;           /* optional max width */
  margin: 0 auto;
}

.cta-content {
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 45px;
  box-shadow: 0px 8.5px 21px 13px rgba(0, 0, 0, 0.25);
  padding: 77px 20px 105px;
  
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-subtitle {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.6;
}

.cta-title {
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: 128px;
  line-height: 1.5;
  margin: -15px 0 25px;
}

.cta-description {
  color: var(--color-text-medium);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.cta-button {
  display: inline-block;
  background-color: var(--color-background-dark);
  border: 5.75px solid #828282;
  border-radius: 41px;
  box-shadow: 0px 0px 11.5px 10.7px rgba(194, 194, 194, 0.25);
  padding: 22px 34px;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 15px 12px rgba(194, 194, 194, 0.35);
  background-color: var(--color-white);
  color: var(--color-black);
}

@media (max-width: 768px) {
  .cta-title { font-size: 80px; }
  .cta-subtitle { font-size: 32px; }
}

/* CSS from section:faq */
.faq-section {
  background-color: var(--color-background-medium);
  padding: 69px 0 100px;
  border-radius: 45px 45px 0 0;
  box-shadow: 0px -11px 21px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}

.faq-main-title {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 48px;
  line-height: 2;
  text-align: center;
  margin-bottom: 64px;
}

.faq-list {
  max-width: 1059px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.faq-item {
  border-radius: 18px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 24px;
  background-color: #ecebeb;
  cursor: pointer;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 24px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
  list-style: none; /* For Safari */
}

.faq-question::-webkit-details-marker {
  display: none; /* For Chrome/Safari */
}

.faq-question img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item[open] > .faq-question img {
  transform: rotate(180deg);
}

.faq-answer {
  background-color: #f5f5f5;
  padding: 26px 24px;
}

.faq-answer p {
  font-family: var(--font-poppins);
  font-weight: 100;
  font-size: 22px;
  line-height: 2;
}

@media (max-width: 768px) {
  .faq-main-title { font-size: 32px; }
  .faq-question { font-size: 18px; }
  .faq-answer p { font-size: 16px; }
}

/* CSS from section:footer */
.site-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 45px 45px 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;    /* 2 equal columns */
  grid-template-rows: auto auto;    /* 2 rows: intro on top, socials + subscribe bottom */
  gap: 60px;
  padding-top: 200px;
  padding-bottom: 60px;
}

/* Place elements in the grid */
.footer-intro {
  grid-column: 1 / 2;  /* left column */
  grid-row: 1 / 2;     /* top row */
}

.footer-social {
  grid-column: 1 / 2;  /* left column */
  grid-row: 2 / 3;     /* bottom row */
}

.footer-subscribe {
  grid-column: 2 / 3;  /* right column */
  grid-row: 2 / 3;     /* bottom row */
}

/* Styling */
.footer-intro h2 {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 128px;
  line-height: 1;
  margin-bottom: 18px;
}

.footer-intro p {
  color: var(--color-text-light);
  font-family: var(--font-poppins);
  font-weight: 200;
  font-size: 24px;
  line-height: 1.5;
  max-width: 800px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Socials */
.footer-social h3,
.footer-subscribe h3 {
  font-family: var(--font-poppins);
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.footer-subscribe h3 { font-weight: 600; }

.footer-social ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-social li a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-white);
  text-decoration: none;
}

.footer-social li img {
  width: 24px;
  height: 24px;
}

/* Subscribe box */
.footer-subscribe p {
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 12px;
}

.subscribe-form {
  position: relative;
  background-color: var(--color-white);
  border-radius: 36px;
  display: flex;
  align-items: center;
  padding: 4px;
  max-width: 596px;
}

.subscribe-form input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 10px 20px;
  font-size: 24px;
  color: var(--color-black);
  outline: none;
}

.subscribe-form input::placeholder {
  color: var(--color-black);
  opacity: 0.35;
}

.subscribe-form button {
  background-color: var(--color-background-dark);
  border: 4.3px solid #828282;
  border-radius:  31px 31px ;
  box-shadow: 0px 0px 8.6px 8px rgba(194, 194, 194, 0.25);
  padding: 12px 24px;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  cursor: pointer;
}

.subscribe-form button:hover { opacity: 0.9; }

/* Responsive */
@media (max-width: 1200px) {
  .footer-intro h2 {
    font-size: 96px;   /* smaller heading */
  }

  .footer-intro p {
    font-size: 20px;
    white-space: normal;   /* allow wrapping */
    text-align: center;
    font-weight: 200;
    line-height: 1.5;
    max-width: 400px;
    white-space: nowrap;
    
  }
  
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .footer-intro h2 {
    font-size: 96px;   /* smaller heading */
  }
  .footer-intro p {
    font-size: 17px;
    white-space: normal;   /* allow wrapping */
    text-align: center;
    font-weight: 200;
    line-height: 1.5;
    max-width: 100;
  }
  .footer-social ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .footer-intro h2 {
    font-size: 64px;   /* smaller heading */
  }
  .footer-intro p {
    font-size: 17px;
    white-space: normal;
    text-align: left;
    font-weight: 200;
    line-height: 1.6;

    max-width:100%;   /* ✅ let it take 90% of container width */
    margin: 0 auto;   /* ✅ keep centered */
  }

  .subscribe-form {
    flex-direction: column;
    gap: 12px;
    padding: 0;
    background: none;
  }
  .subscribe-form input {
    width: 100%;
    border-radius: 24px;
    background: var(--color-white);
    text-align: left;
    font-size: 18px;
  }
  .subscribe-form button {
    width: 60%;
    padding: 12px;
  }
}
@media (max-width: 480px) {
@media (max-width: 480px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Add this to center everything */
  }
  
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    order: 1;
    text-align: center;
    margin-bottom: 30px;
    width: 100%; /* Ensure full width */
  }
  
  .footer-intro {
    order: 1;
  }
  
  .footer-social {
    order: 2;
    margin: 20px 0;
    text-align: center;
  }
  
  .footer-subscribe {
    order: 2;
    width: 100%;
    text-align: left;
  }
  
  .subscribe-form {
    position: relative;
    flex-direction: row;
    background: var(--color-white);
    border-radius: 36px;
    padding: 4px;
    max-width: 100%;
    overflow: hidden; /* Important for containing the button */
    justify-content: left;
  }
  
.subscribe-form input {
    width: 100%;
    padding-right: 140px; /* Make space for the button */
    margin-right: 0;
  }
  
  .subscribe-form button {
    position: absolute;
    right: -1px; /* Position from right edge of form */
    top: -2.2px;
    bottom: -2.2px;
    width: auto; /* Let width be determined by content */
    padding: 12px 24px;
    margin: 0;
  }
}
}