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

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

:root {
  --color-dark-green: #0B3D2C;
  --color-black: #0B3D2C;
  --color-white: #ffffff;
  --color-gray: #808080;
  --wave-speed: 20s;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-white);
  color: var(--color-dark-green);
  overflow-x: hidden;
  position: relative;
}

/* ===== WAVE ANIMATION LAYERS ===== */
.wave-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.wave-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  animation: wave-flow var(--wave-speed) linear infinite;
}

.wave-layer-1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0 C150,100 350,0 600,50 C850,100 1050,0 1200,50 L1200,120 L0,120 Z' fill='%230B3D2C' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 1200px 120px;
  animation-duration: 25s;
  bottom: 0;
}

.wave-layer-2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,30 C200,80 400,30 600,60 C800,90 1000,40 1200,70 L1200,120 L0,120 Z' fill='%230B3D2C' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 1200px 120px;
  animation-duration: 30s;
  animation-direction: reverse;
  bottom: 20px;
}

.wave-layer-3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,50 C250,90 450,50 600,70 C750,90 950,50 1200,80 L1200,120 L0,120 Z' fill='%230B3D2C' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 1200px 120px;
  animation-duration: 35s;
  bottom: 40px;
}

@keyframes wave-flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== NAVIGATION HEADER ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 3px solid var(--color-dark-green);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s var(--transition-smooth);
}

nav.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.scroll-progress-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--color-dark-green);
  width: 0%;
  transition: width 0.1s linear;
  z-index: 1001;
}

nav .logo h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-dark-green);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--color-dark-green);
  transition: width 0.3s var(--transition-smooth);
}

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

.nav-cta {
  margin-left: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--color-dark-green);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--color-dark-green);
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transition: left 0.3s var(--transition-smooth);
  z-index: 0;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  color: var(--color-dark-green);
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

/* Icons - Removed for clean SaaS nav */

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 100;
}

.hamburger-menu .bar {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  nav {
    justify-content: space-between;
    padding: 16px 24px;
  }

  nav .logo h2 {
    font-size: 18px;
  }

  .hamburger-menu {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 999;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active-menu {
    display: flex;
  }

  .nav-menu .links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 0;
  }

  .nav-link {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    padding: 16px 24px;
    margin: 0;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  nav form {
    width: 100%;
    margin-top: 5px;
  }

  /* Hamburger to X Animation */
  .hamburger-menu.active-menu .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-menu.active-menu .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active-menu .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ===== END NAVIGATION HEADER ===== */

/* Floating Background Elements */
.floating-elements {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.floating-code {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: clamp(60px, 8vw, 140px);
  font-weight: 900;
  opacity: 0.25;
  color: #ff0000;
  user-select: none;
}

.fc1 { 
  top: 10%; 
  left: 5%; 
  animation: drift 25s ease-in-out infinite; 
}

.fc2 { 
  top: 60%; 
  right: 8%; 
  animation: drift 30s ease-in-out infinite reverse; 
}

.fc3 { 
  bottom: 15%; 
  left: 50%; 
  transform: translateX(-50%); 
  animation: pulse 15s ease-in-out infinite; 
}

.fc4 {
  top: 25%;
  right: 15%;
  animation: drift 28s ease-in-out infinite;
}

.fc5 {
  top: 70%;
  left: 12%;
  animation: pulse 18s ease-in-out infinite;
}

.fc6 {
  top: 40%;
  left: 30%;
  animation: drift 22s ease-in-out infinite reverse;
}

.fc7 {
  bottom: 25%;
  right: 20%;
  animation: pulse 20s ease-in-out infinite;
}

.fc8 {
  top: 80%;
  left: 60%;
  animation: drift 26s ease-in-out infinite;
}

.fc9 {
  top: 15%;
  left: 70%;
  animation: pulse 16s ease-in-out infinite;
}

.fc10 {
  bottom: 40%;
  left: 20%;
  animation: drift 24s ease-in-out infinite reverse;
}

.fc11 {
  top: 50%;
  right: 35%;
  animation: pulse 19s ease-in-out infinite;
}

.fc12 {
  bottom: 10%;
  right: 5%;
  animation: drift 27s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-40px) rotate(5deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.35; }
}

html {
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;
}
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  /* Ensure no scrolling is caused by children pushing past the edge */
  overflow-x: hidden;
}
body {
  background-color: #16151b;
  overflow-x: hidden;
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  font-family: "Poppins", sans-serif;
}
button {
  font-family: "Poppins", sans-serif;
}
/* NAVBAR */
/* nav{
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
    gap: 18px;
    position: relative;
    z-index: 1;
} */
/* Search Bar */
/* nav form{
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 20px;
    color: #7d7d80;
} */
/* nav form input{
    border: none;
    background-color: transparent;
    color: white;
} */
/* nav form button{
    border: none;
    background-color: transparent;
} */
/* nav form button svg{
    color: #7d7d80;
    
} */
/* Links */
/* .links{
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: space-between;
} */
/* .links a{
    color: white;
    text-decoration: none;
} */
/* Icons */
/* nav .icons{
    display: flex;
    align-items: center;
    gap: 18px;
    color: #7d7d80;
} */

/* HOME CONTENT */
.Home {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 140px 24px 60px;
  position: relative;
  background: var(--color-white);
  z-index: 1;
}

.home-content {
  max-width: 900px;
  width: 100%;
  z-index: 10;
  text-align: center;
  margin: 0 auto;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--color-dark-green);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  border: 3px solid var(--color-dark-green);
}

.trust-badge svg {
  fill: var(--color-white);
}

.hero-headline {
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-dark-green);
  margin: 0 0 32px 0;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.gradient-text {
  position: relative;
  display: inline-block;
  -webkit-text-stroke: 3px var(--color-dark-green);
  -webkit-text-fill-color: transparent;
  text-stroke: 3px var(--color-dark-green);
  text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-dark-green);
  margin: 0 auto 48px auto;
  max-width: 540px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--color-dark-green);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 3px solid var(--color-dark-green);
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--color-white);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn-hero-primary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-hero-primary:hover {
  color: var(--color-dark-green);
}

.btn-hero-primary span,
.btn-hero-primary svg {
  position: relative;
  z-index: 1;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--color-white);
  color: var(--color-dark-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 3px solid var(--color-dark-green);
  transition: all 0.3s var(--transition-smooth);
}

.btn-hero-secondary:hover {
  background: var(--color-dark-green);
  color: var(--color-white);
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 32px 0;
  border-top: 3px solid var(--color-dark-green);
  border-bottom: 3px solid var(--color-dark-green);
  justify-content: center;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-dark-green);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 13px;
  color: var(--color-dark-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-divider {
  width: 3px;
  height: 60px;
  background: var(--color-dark-green);
}

.hero-visual {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.product-demo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-white);
  border: 5px solid var(--color-dark-green);
  overflow: hidden;
  box-shadow: 20px 20px 0 var(--color-dark-green);
  transition: all 0.3s var(--transition-smooth);
}

.product-demo-frame:hover {
  box-shadow: 30px 30px 0 var(--color-dark-green);
  transform: translate(-5px, -5px);
}

#product-demo-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    var(--color-dark-green),
    var(--color-dark-green) 2px,
    var(--color-white) 2px,
    var(--color-white) 10px
  );
  opacity: 0.05;
}

.demo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  z-index: 2;
}

.demo-window {
  background: var(--color-white);
  border: 4px solid var(--color-dark-green);
  overflow: hidden;
}

.window-header {
  display: flex;
  align-items: center;
  padding: 16px;
  background: var(--color-dark-green);
  border-bottom: 4px solid var(--color-dark-green);
}

.window-dots {
  display: flex;
  gap: 8px;
  margin-right: 16px;
}

.window-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-white);
}

.window-dots span:nth-child(1) { background: var(--color-dark-green); }
.window-dots span:nth-child(2) { background: var(--color-dark-green); }
.window-dots span:nth-child(3) { background: var(--color-white); }

.window-title {
  font-size: 14px;
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.window-content {
  padding: 32px;
  background: var(--color-white);
}

.code-block {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
}

.code-line {
  display: block;
  color: var(--color-dark-green);
}

.keyword {
  color: var(--color-dark-green);
  font-weight: 900;
}

.function {
  color: var(--color-dark-green);
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.comment {
  color: var(--color-gray);
  font-style: italic;
}

@media (max-width: 1024px) {
  .Home {
    grid-template-columns: 1fr;
    padding: 100px 40px 60px;
    gap: 40px;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-metrics {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .Home {
    padding: 80px 24px 40px;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-metrics {
    gap: 16px;
  }
  
  .metric-value {
    font-size: 24px;
  }
}

/* APE IMAGE SECTION - REMOVED */

/* Gradients & shapes - REMOVED */

/* Partners Trust Section */
.partners-section {
  padding: 80px 40px;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-white),
    var(--color-white) 20px,
    var(--color-dark-green) 20px,
    var(--color-dark-green) 40px
  );
}

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

.partners-label {
  text-align: center;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 48px;
}

.partners-carousel {
  position: relative;
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 80px;
  animation: scroll-partners 30s linear infinite;
}

.partner-logo {
  flex-shrink: 0;
  width: 140px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition-smooth);
  cursor: pointer;
  position: relative;
  border: 3px solid var(--color-white);
  background: var(--color-white);
  padding: 12px 24px;
}

.partner-logo svg {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.7);
}

.partner-logo:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

.partner-logo::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(8px);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.partner-logo:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-140px * 6 - 80px * 6));
  }
}

.partners-carousel:hover .partners-track {
  animation-play-state: paused;
}

/* Benefits Section - Wave Inspired */
.benefits-section {
  padding: 120px 40px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cpath d='M0,300 Q300,200 600,300 T1200,300' stroke='%230B3D2C' stroke-width='2' fill='none' opacity='0.05'/%3E%3Cpath d='M0,350 Q300,250 600,350 T1200,350' stroke='%230B3D2C' stroke-width='2' fill='none' opacity='0.03'/%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  padding: 12px 32px;
  background: var(--color-dark-green);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border: 3px solid var(--color-dark-green);
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--color-dark-green);
  margin: 0 0 24px 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 20px;
  color: var(--color-dark-green);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.benefit-card {
  background: var(--color-white);
  border: 4px solid var(--color-dark-green);
  padding: 40px;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.benefit-card[data-animate="visible"] {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--color-dark-green);
  z-index: -1;
  transition: all 0.3s var(--transition-smooth);
}

.benefit-card:hover {
  transform: translate(-5px, -5px);
}

.benefit-card:hover::after {
  bottom: -15px;
  right: -15px;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--color-dark-green);
  border: 4px solid var(--color-dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--color-white);
  transition: all 0.3s var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
  transform: rotate(5deg) scale(1.1);
}

.benefit-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-dark-green);
  margin: 0 0 16px 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.benefit-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark-green);
  margin: 0 0 32px 0;
  font-weight: 400;
}

.benefit-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 24px;
  border-top: 3px solid var(--color-dark-green);
}

.metric-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-dark-green);
  letter-spacing: -0.02em;
}

.metric-text {
  font-size: 13px;
  color: var(--color-dark-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 80px 24px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
}

/* Code Window Styles Removed */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 10;
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .Home {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 60px;
    text-align: center;
  }
  
  .home-content {
    margin: 0 auto;
  }
  
  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ===== END FOOTER SECTION - WAVE DESIGN ===== */

/* ===== MAP SECTION ===== */
.map-section {
  padding: 120px 40px;
  background: var(--color-white);
  position: relative;
}

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

.map-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: stretch;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.map-header {
  text-align: left;
}

.map-badge {
  display: inline-block;
  padding: 12px 32px;
  background: var(--color-dark-green);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border: 3px solid var(--color-dark-green);
}

.map-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--color-dark-green);
  margin: 0 0 24px 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.map-subtitle {
  font-size: 18px;
  color: var(--color-dark-green);
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.8;
}

.address-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.address-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--color-white);
  border: 3px solid var(--color-dark-green);
  transition: all 0.3s var(--transition-smooth);
  position: relative;
}

.address-item::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-dark-green);
  z-index: -1;
  transition: all 0.3s var(--transition-smooth);
}

.address-item:hover {
  transform: translate(-4px, -4px);
}

.address-item:hover::after {
  bottom: -12px;
  right: -12px;
}

.address-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--color-dark-green);
  border: 3px solid var(--color-dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.address-icon svg {
  width: 28px;
  height: 28px;
}

.address-text {
  flex: 1;
}

.address-text h4 {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-dark-green);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.address-text p {
  font-size: 15px;
  color: var(--color-dark-green);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  opacity: 0.9;
}

.map-embed {
  width: 100%;
  min-height: 600px;
  border: 5px solid var(--color-dark-green);
  position: relative;
  overflow: hidden;
  box-shadow: 20px 20px 0 rgba(11, 61, 44, 0.15);
}

.map-embed::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 3px solid var(--color-dark-green);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  filter: grayscale(20%) contrast(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .map-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .map-embed {
    min-height: 500px;
  }
  
  .map-embed iframe {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 80px 24px;
  }
  
  .map-content {
    gap: 40px;
  }
  
  .address-details {
    gap: 24px;
  }
  
  .map-embed {
    min-height: 400px;
    box-shadow: 12px 12px 0 rgba(11, 61, 44, 0.15);
  }
  
  .map-embed iframe {
    min-height: 400px;
  }
}

/* ==================================== */
/* 🚀 Existing NAV Styles (Large Screen) */
/* ==================================== */

/* ==================================== */
/* 🎨 Modern Header Design */
/* ==================================== */

.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(22, 21, 27, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
  width: 100%;
  padding: 0;
  margin: 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: #FF8A0C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #a0a0a0;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: white;
  background: rgba(255, 138, 12, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #FF8A0C;
  border-radius: 50%;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #a0a0a0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(4px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================================== */
/* 📱 Responsive Design */
/* ==================================== */

@media screen and (max-width: 1024px) {
  .nav-container {
    padding: 16px 24px;
  }
  
  .nav-links {
    gap: 4px;
  }
  
  .nav-link {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .nav-container {
    padding: 12px 20px;
  }
  
  .logo-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .logo-name {
    font-size: 18px;
  }
  
  .logo-tagline {
    font-size: 9px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(22, 21, 27, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-link {
    width: 100%;
    padding: 12px 16px;
    text-align: left;
  }
  
  .nav-link.active::after {
    display: none;
  }
  
  .nav-actions {
    gap: 12px;
  }
  
  .search-toggle {
    width: 36px;
    height: 36px;
  }
  
  .cta-button span {
    display: none;
  }
  
  .cta-button {
    padding: 10px;
    min-width: 36px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==================================== */
/* HOME CONTENT */
/* ==================================== */

@media (max-width: 1024px) {
  /* 
Footer */
  .footer-col1 h1 {
    font-size: 24px;
  }
  .footer-col1 p {
    font-size: 14px;
  }
  .footer-tags-row h2 {
    font-size: 12px;
  }
  .footer-col1 {
    width: 40%;
    color: white;
  }
  .footer-col3 {
    width: 50%;
    color: white;
  }
  .footer-links img {
    width: 20px;
    height: 20px;
  }
  .footer-col3 h2 {
    margin: 0;
    font-size: 24px;
  }
  footer form input {
    width: 150px;
  }
  footer button {
    font-size: 12px;
  }
}

/* Done here---------------------------------------------------------------------------- */
@media (max-width: 576px) {
  /* 
Footer */

  footer {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }
  .footer-col1 {
    width: 100%;
    /* border: 2px solid blue; */
  }
  .footer-col3 {
    width: 100%;
    color: white;
    padding: 0;
    /* border: 2px solid yellow; */
  }
  .footer-tags {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .footer-tags-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 12px;
  }

  .footer-links {
    justify-content: left;
  }
  .footer-links img {
    width: 20px;
    height: 20px;
  }
  .footer-col3 h2 {
    margin: 0;
  }
  .footer-col3 {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  footer form input {
    background-color: transparent;
    border: 1px solid white;
    padding: 5px;
    color: white;
  }
  footer button {
    padding: 5px;
    border: none;
    background-color: #f07d37;
    color: white;
  }
}

.Home {
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
  margin-top: -200px !important;
  padding-top: 200px !important;
  display: block;
  width: 100%;
  overflow: hidden;
}

/* Hero Glitch Background Layer */
.hero-glitch-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

#hero-glitch-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.home-content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 20px;
}
.tag-head {
  color: #ff8a0c;
}
.heading {
  color: white;
  font-size: 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heading span img {
  width: 12vw;
  height: 8vh;
  object-fit: cover;
  object-position: center top;
  border-radius: 40px;
}
#last-line {
  position: relative;
}
#mid-line {
  position: relative;
  /* border: 2px solid yellow; */
  width: max-content;
  margin: auto;
}
#big-star {
  color: #ff8a0c;
  position: absolute;
  left: -50px;
  width: 4vw;
}
#accent-box {
  color: #4e8bf5;
  width: 6vw;
  position: absolute;
  bottom: -20px;
  rotate: 60deg;
  margin-left: 15px;
}

/* APE IMAGE SECTION */

#head-image {
  /* border: 2px solid white; */
  height: 600px;
  position: relative;
  padding: 10px;
  margin: auto;
  /* width: 90%; */
  /* border: 2px solid red; */
}
#head-image p {
  /* border: 2px solid white; */
  color: white;
  width: 300px;
  position: absolute;
  font-size: 16px;
}
#head-image .left-cont {
  text-align: right;
  top: 60%;
  right: 65%;
}
#head-image .right-cont {
  text-align: left;
  width: 200px;
  top: 20%;
  left: 75%;
}
.ape {
  height: 100%;
  width: 200px;
  margin: auto;
  /* border: 2px solid blue; */
  position: relative;
}
.shadow-box {
  /* border: 2px solid red; */
  height: 500px;
  width: 200px;
  position: absolute;
  top: 8%;
  left: 50%;
  background: linear-gradient(to bottom, #474747, #6a6fc9);
  border-radius: 120px;
  z-index: 1;
}
.ape img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 120px;
  position: relative;
  z-index: 2;
}
.long {
  border: 1px solid #7d7d80;
  position: absolute;
  z-index: 3;
  border-radius: 50px;
}
.long1 {
  width: 60px;
  height: 150px;
  right: 6%;
  top: 30%;
}
.long2 {
  width: 60px;
  height: 60px;
  right: 15%;
  top: 60%;
}
.long3 {
  width: 150px;
  height: 60px;
  left: 15%;
  top: 55%;
}
.long4 {
  width: 80px;
  height: 30px;
  left: 7%;
  top: 50%;
}
.long5 {
  width: 30px;
  height: 30px;
  right: 30%;
  bottom: 0%;
}

/* Code and Math Themed Decorative Shapes */
.code-bracket,
.code-angle,
.code-symbol,
.math-symbol {
  position: absolute;
  z-index: 3;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 300;
  color: white;
  font-family: 'Courier New', monospace;
  pointer-events: none;
}

.code-shape1 {
  width: 60px;
  height: 100px;
  top: 10%;
  right: 8%;
  font-size: 3rem;
}

.code-shape2 {
  width: 60px;
  height: 100px;
  bottom: 15%;
  left: 5%;
  font-size: 3rem;
}

.code-shape3 {
  width: 80px;
  height: 60px;
  top: 50%;
  right: 20%;
  font-size: 1.5rem;
}

.code-shape4 {
  width: 70px;
  height: 50px;
  top: 15%;
  right: 10%;
  font-size: 1.8rem;
}

.code-shape5 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 8%;
  font-size: 2rem;
}

.code-shape6 {
  width: 70px;
  height: 50px;
  bottom: 10%;
  right: 15%;
  font-size: 1.8rem;
}

.code-shape7 {
  width: 80px;
  height: 60px;
  top: 12%;
  right: 12%;
  font-size: 1.5rem;
}

.code-shape8 {
  width: 90px;
  height: 50px;
  bottom: 20%;
  left: 10%;
  font-size: 1.5rem;
}

.math-shape1 {
  width: 70px;
  height: 70px;
  top: 8%;
  left: 6%;
  font-size: 2.5rem;
}

.math-shape2 {
  width: 60px;
  height: 80px;
  bottom: 12%;
  right: 8%;
  font-size: 2.5rem;
}

.math-shape3 {
  width: 65px;
  height: 65px;
  top: 10%;
  right: 10%;
  font-size: 2.5rem;
}

.math-shape4 {
  width: 70px;
  height: 60px;
  top: 15%;
  left: 8%;
  font-size: 2rem;
}

/* Tablet Layout (2 rows of 3 columns) */
/* Max width for tablets, e.g., up to 1024px */
@media (max-width: 1024px) {
  #head-image {
    height: 500px;
  }
  #head-image p {
    width: 150px;
    font-size: 14px;
  }
  #head-image .left-cont {
    text-align: right;
    top: 60%;
    right: 65%;
  }
  #head-image .right-cont {
    text-align: left;
    width: 120px;
    top: 20%;
    left: 75%;
  }
  .ape {
    height: 95%;
    width: 150px;
  }
  .shadow-box {
    height: 350px;
    width: 130px;
    top: 13%;
    left: 50%;
  }
  .long1 {
    width: 40px;
    height: 100px;
    right: 6%;
    top: 30%;
  }
  .long2 {
    width: 40px;
    height: 40px;
    right: 15%;
    top: 65%;
  }
  .long3 {
    width: 100px;
    height: 40px;
    left: 15%;
    top: 55%;
  }
  .long4 {
    width: 80px;
    height: 20px;
    left: 7%;
    top: 50%;
  }
  .long5 {
    width: 30px;
    height: 30px;
    right: 30%;
    bottom: 0%;
  }
}

/* done till here */

/* Mobile Layout (2 rows of 1 column) */
/* Max width for mobile phones, e.g., up to 576px */
@media (max-width: 576px) {
  #head-image {
    /* border: 2px solid white; */
    height: 400px;
  }
  #head-image p {
    width: 100px;
    font-size: 10px;
  }
  #head-image .left-cont {
    text-align: right;
    top: 60%;
    right: 65%;
  }
  #head-image .right-cont {
    width: 80px;
    font-size: 10px;
  }
  .ape {
    height: 100%;
    width: 100px;
  }
  .shadow-box {
    height: 300px;
    width: 100px;
    top: 10%;
    left: 47%;
  }
  .long1 {
    width: 30px;
    height: 100px;
  }
  .long2 {
    width: 30px;
    height: 30px;
  }
  .long3 {
    width: 100px;
    height: 20px;
    left: 8%;
    top: 55%;
  }
  .long4 {
    width: 60px;
    height: 10px;
    left: 7%;
    top: 50%;
  }
  .long5 {
    width: 20px;
    height: 20px;
    right: 30%;
    bottom: 0%;
  }
}
/* Sell Page */
.Sell {
  display: none;
}
.Sell p,
.Sell h2 {
  margin: 0;
}
.sell-p-head {
  text-align: center;
  color: #913903;
}
.sell-h2-head {
  text-align: center;
  color: white;
}
.sell-long {
  border: 1px solid white;
  position: absolute;
  z-index: 3;
  border-radius: 50px;
}
.sell-long1 {
  width: 50px;
  height: 120px;
  top: 5%;
  left: 10%;
}
.sell-long2 {
  width: 50px;
  height: 20px;
  top: 20px;
  left: 15%;
}
.sell-long3 {
  width: 30px;
  height: 30px;
  top: 15%;
  right: 30%;
}
.sell-circle {
  position: absolute;
  z-index: 0;
  width: 400px;
  height: 400px;
  background-color: #61616359;
  border-radius: 50%;
  filter: blur(60px);
  top: 10%;
  left: 45%;
}
.carousel {
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 20;
}
.card-caraousel {
  padding: 20px;
  width: 50px;
  height: 300px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 1s ease-in-out;
}
.card-caraousel:hover {
  transform: scale(1.05);
  transition: all 0.8s ease-out;
}
.card-caraousel .txt-caraousel {
  display: none;
}
.card-caraousel h1 {
  font-size: 24px;
}
.card-caraousel p {
  font-size: 12px;
}
#c1sc,
#c2sc,
#c3sc,
#c4sc {
  background-image: none;
}

/* Done till here ----------------------------------------------------------------------------- */
@media (max-width: 576px) {
  .sell-long1 {
    width: 20px;
    height: 60px;
  }
  .sell-long2 {
    width: 30px;
    height: 10px;
  }
  .sell-long3 {
  /* Empty rule */
}
  .image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
  }
  .card-caraousel {
    padding: 10px;
    border-radius: 30px;
  }
  .card-caraousel:hover {
    transform: scale(1.05);
    transition: all 0.8s ease-out;
  }
  .card-caraousel .txt-caraousel {
    display: none;
  }
  .card-caraousel h1 {
    font-size: 14px;
  }
  .card-caraousel h2 {
    font-size: 14px;
  }
  .card-caraousel p {
    font-size: 10px;
  }
}
/* LAST PAGE */
.Start {
  display: none;
}
#start-head-p {
  color: #f07d37;
  text-align: center;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.Start p {
  color: #f07d37;
}
.Start h2 {
  color: white;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}
.Start p,
.Start h2 {
  margin: 0;
}
.gs-table {
  width: 100%;
  max-width: 1400px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 20px;
}

.gs-table-row {
  width: 100%;
  display: grid;
  grid-template-columns: 180px 280px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.gs-table-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #FF6B35 0%, #F7931E 50%, #FFB84D 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gs-table-row:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.15);
}

.gs-table-row:hover::before {
  opacity: 1;
}

.gs-table-row .gs-col1 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FF6B35;
  text-transform: uppercase;
  padding-top: 4px;
  word-wrap: break-word;
}

.gs-table-row .gs-col2 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.gs-table-row .gs-col3 {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4px;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .gs-table-row {
    grid-template-columns: 140px 240px 1fr;
    gap: 24px;
    padding: 28px;
  }
  
  .gs-table-row .gs-col1 {
    font-size: 12px;
  }
  
  .gs-table-row .gs-col2 {
    font-size: 20px;
  }
  
  .gs-table-row .gs-col3 {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .gs-table-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  
  .gs-table-row:hover {
    transform: translateX(0);
  }
  
  .gs-table-row .gs-col1 {
    font-size: 11px;
    padding-top: 0;
  }
  
  .gs-table-row .gs-col2 {
    font-size: 20px;
  }
  
  .gs-table-row .gs-col3 {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .gs-table {
    gap: 16px;
    padding: 0 16px;
  }
  
  .gs-table-row {
    padding: 20px;
  }
  
  .gs-table-row .gs-col2 {
    font-size: 18px;
  }
  
  .gs-table-row .gs-col3 {
    font-size: 13px;
  }
}
/* Weekly */
/* Items Page */
.Weekly {
  margin-top: -100px;
  margin-bottom: 0;
  padding: 40px 40px 20px 40px;
  position: relative;
  z-index: 5;
  background: var(--color-dark-green);
}
#week-head-p {
  color: #d55c1b;
  text-align: center;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
#week-head-h2 {
  color: white;
  text-align: center;
  margin: 0;
  margin-top: 10px;
  font-size: 48px;
  font-weight: 700;
}
#week-head2-h2 {
  color: white;
  text-align: center;
  margin: 0;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}
#week-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Item Card Styles */
.weekly-card {
  background-color: #212121; /* Dark background for the card */
  border: 1px solid #7d7d80;
  border-radius: 12px;
  padding: 10px;
  overflow: hidden;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: left;
  /* height: 150px; */
}
.weekly-card:hover {
  transform: scale(1.02);
}

.weekly-container img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

.weekly-details {
  padding: 5px 0;
  position: relative; /* For likes positioning */
  /* border: 2px solid; */
  width: 70%;
}

.floor-p-container {
  margin: 0;
  color: #a0a0a0;
  font-size: 0.8em;
}

.weekly-h {
  margin: 4px 0 10px 0;
  font-size: 1em;
  font-weight: bold;
}

.bid-container {
  /* Use a bright color for price */
  color: #d55c1b;
  font-weight: bold;
}
.price-hike {
  /* Use a bright color for price */
  color: lawngreen;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 1024px) {
  /* Item Card Styles */
  .weekly-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: left;
    padding-top: 20px;
    /* height: 150px; */
  }
  .weekly-container {
    width: 80%;
    height: 150px;
  }
  .weekly-container img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
  }

  .weekly-details {
    padding: 5px;
    position: relative; /* For likes positioning */

    width: 80%;
  }

  .floor-p-container {
    margin: 0;
    color: #a0a0a0;
    font-size: 0.8em;
  }

  .weekly-h {
    margin: 4px 0 4px 0;
    font-size: 1em;
    font-weight: bold;
  }

  .bid-container {
    /* Use a bright color for price */
    color: #d55c1b;
    font-weight: bold;
    font-size: 14px;
  }
  .price-hike {
    /* Use a bright color for price */
    color: lawngreen;
    font-weight: bold;
    margin: 0;
    font-size: 12px;
  }
}

/* Done till here----------------------------------------------------------------------------- */

/* Mobile Layout (2 rows) */
/* Max width for mobile phones, e.g., up to 576px */
@media (max-width: 576px) {
  /* Item Card Styles */

  #week-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .weekly-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    height: 120px;
    padding: 5px;
  }
  .weekly-card:hover {
    transform: scale(1.02);
  }
  .weekly-container {
    height: 80%;
    width: 40%;
  }

  .weekly-container img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
  }
}

/* Weekly */
/* Items Page */
.Weekly {
  margin-top: 30px;
  margin-bottom: 30px;
  /* border: 2px solid red; */
  padding-top: 0;
  padding-bottom: 20px;
}
#week-head-p {
  color: #d55c1b;
  text-align: center;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}
#week-head-h2 {
  color: white;
  text-align: center;
  margin: 0;
  margin-top: 10px;
  font-size: 28px;
  font-weight: 700;
}
#week-head2-h2 {
  color: white;
  text-align: center;
  margin: 0;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}
#week-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Item Card Styles */
.weekly-card {
  background-color: #212121; /* Dark background for the card */
  border: 1px solid #7d7d80;
  border-radius: 12px;
  padding: 10px;
  overflow: hidden;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: left;
  /* height: 150px; */
}
.weekly-card:hover {
  transform: scale(1.02);
}

.weekly-container img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
   object-fit: cover;
  margin-bottom: 10px;
}

.weekly-details {
  padding: 5px 0;
  position: relative; /* For likes positioning */
  /* border: 2px solid; */
  width: 70%;
}

.floor-p-container {
  margin: 0;
  color: #a0a0a0;
  font-size: 0.8em;
}

.weekly-h {
  margin: 4px 0 10px 0;
  font-size: 1em;
  font-weight: bold;
}

.bid-container {
  /* Use a bright color for price */
  color: #d55c1b;
  font-weight: bold;
}
.price-hike {
  /* Use a bright color for price */
  color: lawngreen;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 1024px) {
  /* Item Card Styles */
  .weekly-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: left;
    padding-top: 20px;
    /* height: 150px; */
  }
  .weekly-container {
    width: 80%;
    height: 150px;
  }
  .weekly-container img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
  }

  .weekly-details {
    padding: 5px;
    position: relative; /* For likes positioning */

    width: 80%;
  }

  .floor-p-container {
    margin: 0;
    color: #a0a0a0;
    font-size: 0.8em;
  }

  .weekly-h {
    margin: 4px 0 4px 0;
    font-size: 1em;
    font-weight: bold;
  }

  .bid-container {
    /* Use a bright color for price */
    color: #d55c1b;
    font-weight: bold;
    font-size: 14px;
  }
  .price-hike {
    /* Use a bright color for price */
    color: lawngreen;
    font-weight: bold;
    margin: 0;
    font-size: 12px;
  }
}

/* Done till here----------------------------------------------------------------------------- */

/* Mobile Layout (2 rows) */
/* Max width for mobile phones, e.g., up to 576px */
@media (max-width: 576px) {
  /* Item Card Styles */

  #week-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap:  10px;
  }
  .weekly-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    height: 120px;
    padding: 5px;
  }
  .weekly-card:hover {
    transform: scale(1.02);
  }
  .weekly-container {
    height: 80%;
    width: 40%;
  }

  .weekly-container img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
  }
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 120px 40px;
  background: var(--color-white);
  position: relative;
}

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

.map-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: stretch;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.map-header {
  text-align: left;
}

.map-badge {
  display: inline-block;
  padding: 12px 32px;
  background: var(--color-dark-green);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border: 3px solid var(--color-dark-green);
}

.map-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--color-dark-green);
  margin: 0 0 24px 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.map-subtitle {
  font-size: 18px;
  color: var(--color-dark-green);
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.8;
}

.address-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.address-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--color-white);
  border: 3px solid var(--color-dark-green);
  transition: all 0.3s var(--transition-smooth);
  position: relative;
}

.address-item::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-dark-green);
  z-index: -1;
  transition: all 0.3s var(--transition-smooth);
}

.address-item:hover {
  transform: translate(-4px, -4px);
}

.address-item:hover::after {
  bottom: -12px;
  right: -12px;
}

.address-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--color-dark-green);
  border: 3px solid var(--color-dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.address-icon svg {
  width: 28px;
  height: 28px;
}

.address-text {
  flex: 1;
}

.address-text h4 {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-dark-green);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.address-text p {
  font-size: 15px;
  color: var(--color-dark-green);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  opacity: 0.9;
}

.map-embed {
  width: 100%;
  min-height: 600px;
  border: 5px solid var(--color-dark-green);
  position: relative;
  overflow: hidden;
  box-shadow: 20px 20px 0 rgba(11, 61, 44, 0.15);
}

.map-embed::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 3px solid var(--color-dark-green);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  filter: grayscale(20%) contrast(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .map-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .map-embed {
    min-height: 500px;
  }
  
  .map-embed iframe {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 80px 24px;
  }
  
  .map-content {
    gap: 40px;
  }
  
  .address-details {
    gap: 24px;
  }
  
  .map-embed {
    min-height: 400px;
    box-shadow: 12px 12px 0 rgba(11, 61, 44, 0.15);
  }
  
  .map-embed iframe {
    min-height: 400px;
  }
}

/* Restored Footer Styles - Enhanced for FNLogic Aesthetic */
.footer {
  background-color: var(--color-dark-green);
  padding: 80px 0 40px;
  font-family: "Inter", sans-serif;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  width: 23%;
  padding: 0 15px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 14px;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1.5px;
  position: relative;
  opacity: 0.9;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  background-color: rgba(255, 255, 255, 0.2);
  height: 2px;
  box-sizing: border-box;
  width: 40px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 16px;
}

.footer-col ul li a {
  font-size: 15px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  transition: all 0.3s var(--transition-smooth);
}

.footer-col ul li a:hover {
  color: var(--color-white);
  transform: translateX(5px);
}

.footer-col .social-links {
  display: flex;
  gap: 12px;
}

.footer-col .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  transition: all 0.3s var(--transition-smooth);
}

.footer-col .social-links a:hover {
  background-color: var(--color-white);
  color: var(--color-dark-green);
  transform: translateY(-3px);
}

@media(max-width: 992px) {
  .footer-col {
    width: 48%;
  }
}

@media(max-width: 576px) {
  .footer-col {
    width: 100%;
    text-align: center;
  }
  
  .footer-col h4::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-col .social-links {
    justify-content: center;
  }
}

/* Benefits Bento Grid Section */
.benefits-section {
  padding: 120px 24px;
  background-color: var(--color-white);
  position: relative;
  z-index: 2;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(11, 61, 44, 0.1);
  color: var(--color-dark-green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--color-dark-green);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}

.bento-card {
  background: #f8f9fa;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 61, 44, 0.08);
  border-color: rgba(11, 61, 44, 0.2);
}

.card-large {
  grid-column: span 2;
  background: var(--color-dark-green);
  color: var(--color-white);
}

.card-span-2 {
  grid-column: span 2;
  background: var(--color-white);
}

.card-wide {
  grid-column: span 3;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(11, 61, 44, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-green);
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.bento-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.bento-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-dark-green);
}

.bento-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .card-large {
    grid-column: span 2;
  }
  
  .card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .card-large,
  .card-wide {
    grid-column: span 1;
  }
  
  .benefits-section {
    padding: 80px 24px;
  }
}

/* Pricing Section Styles */
.pricing-section {
  padding: 100px 24px;
  background-color: #f8f9fa;
  position: relative;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.toggle-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.save-badge {
  background: #e6f4ea;
  color: #1e8e3e;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 700;
}

/* Switch Toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.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: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--color-dark-green);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-dark-green);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--color-dark-green);
}

.pricing-card.popular {
  border: 2px solid var(--color-dark-green);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark-green);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}

.plan-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-dark-green);
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--color-dark-green);
}

.currency {
  font-size: 24px;
  font-weight: 600;
  margin-right: 4px;
}

.amount {
  font-size: 48px;
  font-weight: 900;
}

.period {
  font-size: 16px;
  color: #666;
  margin-left: 4px;
}

.plan-desc {
  margin-top: 16px;
  color: #666;
  font-size: 15px;
}

.card-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #444;
  font-size: 15px;
}

.card-features li i {
  color: var(--color-dark-green);
  font-size: 14px;
}

.card-footer {
  margin-top: auto;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #f0f0f0;
  color: var(--color-dark-green);
}

.btn-pricing:hover {
  background: #e0e0e0;
}

.btn-pricing.btn-primary {
  background: var(--color-dark-green);
  color: var(--color-white);
}

.btn-pricing.btn-primary:hover {
  background: #082f22;
}
