/* IMPORT GOOGLE FONT (Geometric Sans similar to Garet) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700;900&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --accent-color: #135c66; /* Bold Black */
    --secondary-accent: #f4f4f4; /* Light Grey */
    --highlight: #135c66; /* Subtle Green from Green Farm case study */
    --font-main: 'Outfit', sans-serif; /* Fallback for Garet */
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
}

.cta-button-small {
    background: var(--accent-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700 !important;
    text-decoration: none;
}

.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* BURGER MENU */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 5px;
    transition: 0.3s;
}

/* HERO SECTION */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    padding-bottom: 50px;
    padding-top: 120px;
}

.pill-badge {
    background: var(--secondary-accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.highlight {
    background: rgba(19, 92, 102, 0.2);
}

.subheadline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 40px;
    color: #555;
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button-main {
    background-color: var(--accent-color);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.cta-button-main .sub-text {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 4px;
}

.cta-button-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.secondary-button {
    padding: 18px 40px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    border: 2px solid var(--secondary-accent);
    border-radius: 8px;
    transition: 0.3s;
}

.secondary-button:hover {
    border-color: var(--accent-color);
}

/* MARQUEE ANIMATION (From PDF Concept) */
.marquee-container {
    position: absolute;
    bottom: 50px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0.05;
    pointer-events: none;
    z-index: -2;
}

.marquee-content {
    display: inline-block;
    font-size: 5rem;
    font-weight: 900;
    animation: marquee 20s linear infinite;
}

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

/* TRUST BAR */
.trust-bar {
    background: var(--secondary-accent);
    padding: 40px 5%;
    text-align: center;
}

.trust-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #888;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
}

/* SECTIONS */
.section-padding {
    padding: 100px 5%;
}

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

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.value-list li {
    list-style: none;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.value-list i {
    color: var(--highlight);
    margin-right: 10px;
}

.abstract-box {
    width: 100%;
    height: 300px;
    background: var(--accent-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    border-radius: 20px;
}

/* SERVICES */
.dark-bg {
    background: #0a0a0a;
    color: white;
}

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

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.highlight-card {
    border: 1px solid var(--highlight);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card ul {
    margin-top: 20px;
    padding-left: 20px;
    color: #ccc;
}

/* CASE STUDY */
.case-study-box {
    background: var(--secondary-accent);
    padding: 60px;
    border-radius: 20px;
}

.tag {
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 5px;
}

.results-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.res {
    display: flex;
    flex-direction: column;
}

.res strong {
    font-size: 2rem;
    font-weight: 900;
}

/* CONTACT */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.submit-button {
    font-family: var(--font-main);
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: white;
    border: none;
    margin-top: 20px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-button:hover {
    background: #333;
}

/* FOOTER */
footer {
    padding: 50px 5%;
    background: var(--accent-color);
    color: white;
    text-align: center;
}

.small-print {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .burger { display: block; }
    h1 { font-size: 2.5rem; }
    .split-layout, .contact-wrapper { grid-template-columns: 1fr; }
    .results-grid { flex-direction: column; gap: 20px; }
}

/* ANIMATION CLASSES */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   ADD THIS TO THE BOTTOM OF STYLE.CSS
   ========================================= */

/* 1. The Mobile Menu Overlay (Initially Hidden) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-color); /* Matches your white background */
  display: flex;
  padding-top: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 990; /* Sits just behind the navbar (z-index 1000) */
  
  /* Hide it off-screen to the right */
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

/* 2. The Active State (Slide it in) */
.mobile-menu.active {
  transform: translateX(0);
}

/* 3. Style the Links inside the Mobile Menu */
.mobile-link {
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--text-color);
  letter-spacing: -1px;
  transition: color 0.3s;
}

.mobile-link:hover {
  color: var(--highlight); /* Uses your green highlight color */
}

/* 4. Burger Icon Animation (Turn into an X) */
/* The JS adds the 'toggle' class to the burger when clicked */

.burger.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
  opacity: 0; /* Hide the middle line */
}

.burger.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Ensure Burger is visible on mobile (Fixing the media query) */
@media (max-width: 768px) {
  .burger {
      display: block;
      z-index: 1001; /* Ensure it stays clickable above the menu */
  }
}

/* GEO-ARBITRAGE STYLES */
.geo-card {
  background: var(--accent-color);
  color: white;
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.location-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.location-dot {
  width: 10px;
  height: 10px;
  background: var(--highlight);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.clock-display h2 {
  font-size: 4rem;
  font-weight: 900;
  margin: 10px 0;
  font-variant-numeric: tabular-nums;
  color: white;
}

.geo-status {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.benefit-row {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item h4 {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 5px;
}

.benefit-item p {
  font-size: 0.95rem;
  color: #555;
}

/* LOGO GRID STYLES */
.logo-grid-section {
  padding: 80px 5%;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.logo-grid {
  display: grid;
  /* This line creates the auto-adjusting grid columns */
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 40px;
}

.logo-item {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafafa; /* Very light grey background for each box */
  border-radius: 12px;
  padding: 0px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.logo-item img {
  max-width: 100%;
  max-height: 60px;
  filter: brightness(0);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.logo-item:hover {
  background: #fff;
  border-color: #eee;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.logo-item:hover img {
  filter: brightness(1) drop-shadow(1px 1px 10px rgba(0,0,0,0.6));
  opacity: 1;
}

/* Responsive adjustment for small phones */
@media (max-width: 480px) {
  .logo-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
  }
  .logo-item {
      height: 100px;
      padding: 15px;
  }
}

/* TESTIMONIAL STYLES */
.testimonial-section {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 60px;
    background: var(--secondary-accent);
    border-radius: 30px;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--highlight);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: -0.5px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f5e9; /* Light green */
    color: #2e7d32; /* Dark green */
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .testimonial-container {
        padding: 40px 20px;
    }
    .testimonial-text {
        font-size: 1.3rem;
    }
}

/* SOCIAL FOOTER STYLES */
.footer-main {
    background: #000;
    color: #fff;
    padding: 80px 5% 40px 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 60px;
}

.footer-brand .logo {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-brand p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.social-title {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--highlight);
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background: var(--highlight);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.footer-cta p {
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-link {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    transition: 0.3s;
}

.cta-link:hover {
    color: var(--highlight);
    padding-left: 10px;
}

.footer-bottom {
    padding-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.4;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}

/* FAQ STYLES */
.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-color);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--highlight);
    font-size: 1.2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
    opacity: 1;
    padding-top: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Turns the plus into an X */
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* BACK TO TOP BUTTON */
#backToTop {
    display: none; /* Hidden by default */
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    z-index: 99; 
    border: none; 
    outline: none; 
    background-color: var(--highlight); /* Use your brand green */
    color: white; 
    cursor: pointer; 
    padding: 10px; 
    border-radius: 50%; 
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#backToTop:hover {
    background-color: #000;
    color: var(--highlight);
    transform: translateY(-5px);
}


/* CENTERED OFFER CARD STYLES */
.offer-container {
    max-width: 800px;
    margin: 0 auto;
}

.performance-card-focused {
    background: #fff;
    border-radius: 24px;
    padding: 3px; /* Creates space for the gradient border */
    background: linear-gradient(135deg, #eee 0%, var(--highlight) 100%);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.card-inner {
    background: #fff;
    border-radius: 22px;
    padding: 70px;
}

.performance-header {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.performance-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.performance-header p {
    color: var(--highlight);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.logic-list {
    list-style: none;
    padding: 0;
}

.logic-list li {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.logic-icon {
    font-size: 1.5rem;
    color: #000;
    background: #f4f4f4;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logic-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.logic-text p {
    color: #666;
    line-height: 1.6;
}

.scarcity-warning {
    background: #fff5f5;
    color: #c92a2a;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 25px;
    border: 1px solid #ffc9c9;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .card-inner { padding: 45px 35px; }
    .logic-list li { flex-direction: column; gap: 15px; text-align: center; }
    .logic-icon { margin: 0 auto; }
}








/* =========================================
   DOWNLOAD PAGE STYLES
   ========================================= */

/* The PDF Card */
.pdf-download-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 500px;
    margin: 40px auto 0 auto;
    backdrop-filter: blur(10px);
}

.file-icon {
    font-size: 2.5rem;
    color: var(--highlight);
}

.file-info {
    flex-grow: 1;
    text-align: left;
}

.file-info strong {
    display: block;
    color: white;
    font-family: monospace; /* Industrial feel */
}

.file-info span {
    font-size: 0.8rem;
    color: #aaa;
}

.download-btn {
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.8rem;
    transition: 0.3s;
}

.download-btn:hover {
    background: var(--highlight);
    transform: translateY(-2px);
}

/* The Upsell Form Card */
.audit-form-card {
    background: #0a0a0a;
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 1px solid #333;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: var(--highlight);
    font-weight: 900;
    letter-spacing: 1px;
}

.form-group-compact {
    margin-bottom: 20px;
}

.form-group-compact label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #ccc;
}

.form-group-compact input {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    color: white;
    border-radius: 6px;
    font-family: inherit;
}

.form-group-compact input:focus {
    border-color: var(--highlight);
    outline: none;
}

/* Mobile Adjustments for the PDF Box */
@media (max-width: 600px) {
    .pdf-download-box {
        flex-direction: column;
        text-align: center;
    }
    .file-info {
        text-align: center;
        margin-bottom: 10px;
    }
}