/* --- Variables & Theme --- */
:root {
    --primary: #001f41;
    --primary-container: #0f3460;
    --secondary: #006d2f;
    --secondary-container: #5dfd8a;
    --secondary-container-light: rgba(93, 253, 138, 0.18);
    --on-secondary-container: #007232;
    --surface: #fcf8ff;
    --surface-container: #ffffff;
    --surface-container-low: #f5f2ff;
    --surface-container-high: #e8e5ff;
    --surface-container-highest: #e2e0fc;
    --on-surface: #1a1a2e;
    --on-surface-variant: #43474f;
    --outline-variant: #c3c6d0;
    --error: #ba1a1a;
    --font-headline: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* --- Base Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--surface);
    color: var(--on-surface);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

/* ---  HEADER AND NAVBAR ---*/


.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(252, 248, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.navbar__logo{
  display: flex;
  align-items: center;
  gap:15px;
}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
}
.navbar__logo h1 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-container);
}
.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  width:40%;
}
.navbar__menu a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--on-surface-variant);
}
/* --- Buttons --- */
.btn {
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  border: none;
}
.btn--primary {
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn--outline {
  border: 1px solid var(--primary);
  color: var(--primary) ;
}
.btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
  background-color: var(--primary);
  color: #ffffff;
}

/* ---HERO SECTION---*/
.about-hero {
    margin-top: 6rem;
    margin-bottom: 2.5rem;
    margin-right: 2rem;
    margin-left:2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 320px;
    height: 320px;
    background: var(--secondary-container);
    opacity: 0.08;
    border-radius: 50%;
}

.about-hero::after {
    content: '';
    position: absolute;
    right: 80px;
    bottom: -20px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}
.about-hero__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.about-hero__title--accent {
    color: var(--secondary-container);
}

.about-hero__subtitle {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
}

/*  --- MAIN CONTENT ---*/
.main-container {
    max-width: 100%;
    margin: 0 auto;
    
}

/* --- BARS -- */

.stats-section {
    margin-bottom: 3.5rem;
}
.stats-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stats-row2{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.stat-box {
    flex: 1;
    min-width: 140px;
    background: var(--surface-container);
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.stat-box--green {
    background: var(--secondary-container);
    border-color: transparent;
}
.stat-box--light {
    background: var(--surface-container-low);
}

.stat-box__value {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 2rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-box__value--green {
    color: var(--on-secondary-container);
}

.stat-box__value--primary {
    color: var(--primary);
}

.stat-box__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--on-surface-variant);
    line-height: 1.4;
}

/* --- OUR STORY --- */
.story-section {
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
}
.story-header {
    margin-bottom: 1.5rem;
}
.story-header {
    margin-bottom: 1.5rem;
}
.story-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary); /* Green */
    margin-bottom: 0.75rem;
}
.story-badge p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}
.story-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--on-surface);
}
.text-highlight-dark {
    color: var(--primary-container); /* Deep Blue */
}
.story-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* spacing between cards */
}
.story-card {
    background-color: var(--surface-container-lowest); /* White */
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(195, 198, 208, 0.2); /* var(--outline-variant) with opacity */
}
.story-card p {
    color: var(--on-surface-variant);
    font-size: 0.875rem; /* 14px */
    line-height: 1.625; /* relaxed leading */
}
.story-card strong {
    color: var(--on-surface);
    font-weight: 600;
}
.story-quote-card {
    /* Subtle green gradient matching secondary-container/40 */
    background: linear-gradient(to bottom right, rgba(93, 253, 138, 0.4), var(--surface-container));
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 109, 47, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.quote-icon {
    color: var(--secondary);
    margin-top: 0.125rem;
}
.story-quote-card p {
    color: var(--on-secondary-container); /* Darkest green */
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.625;
    font-style: italic;
    margin: 0;
}
.icon-fill {
    font-variation-settings: 'FILL' 1;
}
/* --- The Problem Section --- */
.problem-section {
    background-color: var(--surface-container-low);
    border-radius: 2rem;
    padding: 1.5rem;
    margin: 0 1.5rem 2.5rem;
}
.problem-header {
    margin-bottom: 1.5rem;
}
.problem-badge {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: var(--secondary); /* Green */
    margin-bottom: 0.75rem;
}
.problem-badge p {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}
.problem-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--on-surface);
    margin: 0;
}
.problem-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Space between cards */
}
.problem-card {
    background-color: #fcf8ff; /* White */
    border-radius: 1.5rem;
    width:100%;
    height:auto;
    box-sizing: border-box;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}
.problem-icon-box {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 1rem;
    background-color: var(--surface-container-high); /* Light grayish purple */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents icon from squishing */
    font-size: 1.25rem;
}
.problem-text-content {
    display: flex;
    flex-direction: column;
}
.problem-card-title {
    font-size: 0.875rem; /* 14px */
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--on-surface);
}
.problem-card-desc {
    font-size: 0.85rem; /* 14px */
    color: var(--on-surface-variant);
    line-height: 1.625;
    margin: 0;
}

/* --- HOW IT WORKS --- */

.process-section {
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
}
.process-header {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--secondary); /* Green */
    margin-bottom: 0.75rem;
}
.process-badge p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}
.process-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--on-surface);
    margin: 0;
}
.process-timeline {
    display: flex;
    flex-direction: column;
}
.process-card {
    background-color: var(--surface-container-lowest); /* White */
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(195, 198, 208, 0.2); /* var(--outline-variant) with opacity */
}
.process-card-inner {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Custom Gradients for Each Step */
.gradient-step-1 {
    background: linear-gradient(to right, rgba(93, 253, 138, 0.25), var(--surface-container));
}
.gradient-step-2 {
    background: linear-gradient(to right, var(--surface-container), rgba(169, 200, 252, 0.15));
}
.gradient-step-3 {
    background: linear-gradient(to right, rgba(232, 229, 255, 0.5), var(--surface-container));
}
.gradient-step-4 {
    background: linear-gradient(to right, rgba(93, 253, 138, 0.15), var(--surface-container));
}

/* --- Number Badge --- */
.process-step-num {
    width: 3rem;
    height: 3rem;
    background-color: var(--secondary-container);
    color: var(--secondary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 900;
    flex-shrink: 0;
}

/* --- Step Text --- */
.process-text {
    display: flex;
    flex-direction: column;
}

.process-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 0.25rem;
}

.process-text p {
    font-size: 0.85rem; /* 14px */
    color: var(--on-surface-variant);
    line-height: 1.625;
    margin: 0;
}

/* --- Step Connector (Vertical Line) --- */
.process-connector-wrapper {
    display: flex;
    justify-content: center;
}

.process-connector {
    width: 2px;
    height: 1.5rem; /* Length of the connecting line */
    background-color: rgba(195, 198, 208, 0.4); /* Subtle outline color */
    margin: 0.25rem 0;
}

/* Utility to ensure filled material icons */
.icon-fill {
    font-variation-settings: 'FILL' 1;
}

.mission-section {
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
}
.mission-hero{
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background: linear-gradient(to bottom right, var(--primary), var(--primary-container));
    padding: 1.75rem; 
    color: var(--on-primary); 
}
.mission-hero-content{
    position: relative;
    z-index: 10; /* Keeps content above the glowing blur */
}
.mission-badge{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.mission-badge .material-symbols-outlined{
    color: var(--secondary-container); /* Bright Green */
    font-size: 1.125rem;
}
.mission-badge p{
    font-size: 0.875rem; 
    font-weight: 700;
    color: var(--secondary-container);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}
.mission-title {
    font-family: var(--font-headline);
    font-size: 1.5rem; 
    font-weight: 800; 
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #f5f2ff;
}
.text-secondary-fixed {
    color: var(--secondary-container)
}
.mission-description {
    color: rgb(127 157 208 ); /* Soft blue-grey */
    font-size: 1rem; 
    line-height: 1.625;
    margin: 0;
}
.mission-description strong {
    font-weight: 700;
}
.mission-deco-circle {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 10rem;
    height: 10rem;
    background-color: rgba(93, 253, 138, 0.15); /* Soft green glow */
    border-radius: 50%;
    filter: blur(24px); 
    z-index: 1;
}

/* --- Mission Points List --- */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; 
    margin-top: 1rem;
}

.mission-point-card {
    border-radius: 1.5rem;
    padding: 1.25rem; 
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* Custom Backgrounds for the 3 points */
.point-highlight {
    background-color: rgba(93, 253, 138, 0.2); 
    border: 1px solid rgba(0, 109, 47, 0.1); 
}

.point-surface {
    background-color: var(--surface-container); /* Pure White */
}

.point-surface-high {
    background-color: rgba(232, 229, 255, 0.5); /* Soft Purple hue */
}

.point-icon {
    font-size: 1.5rem; 
    flex-shrink: 0;
}

.point-text-wrapper {
    display: flex;
    flex-direction: column;
}

.point-title {
    font-size: 0.875rem; 
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--on-surface); 
}

.point-title-highlight {
    color: var(--on-secondary-container); /* Darker green for readability */
}

.point-desc {
    font-size: 0.85rem; 
    color: var(--on-surface-variant);
    line-height: 1.625;
    margin: 0;
}
/* --- Who We Serve Section --- */
.who-serve-section {
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
}

/* --- Header Layout --- */
.who-serve-header {
    margin-bottom: 1.5rem;
}

.who-serve-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary); /* Brand Green */
    margin-bottom: 0.75rem;
}

.who-serve-badge p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.who-serve-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--on-surface);
    margin: 0;
}

/* --- List & Card Layout --- */
.serve-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Space between cards */
}

.serve-card {
    background-color: var(--surface-container-lowest); /* White */
    border-radius: 1.5rem;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(195, 198, 208, 0.2); /* var(--outline-variant) */
}

/* --- Icon Boxes (Emoji Containers) --- */
.serve-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

/* Icon Box Color Variations */
.bg-buyer { background-color: rgba(93, 253, 138, 0.3); } /* Green tint */
.bg-hub { background-color: rgba(213, 227, 255, 0.5); } /* Blue tint (primary-fixed) */
.bg-organiser { background-color: var(--surface-container-high); } /* Grey/Purple tint */

/* --- Card Content --- */
.serve-content {
    flex: 1;
}

.serve-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.serve-card-title {
    font-size: 0.875rem; /* 14px */
    font-weight: 700;
    color: var(--on-surface);
    margin: 0;
}

.serve-card-desc {
    font-size: 0.875rem; /* 14px */
    color: var(--on-surface-variant);
    line-height: 1.625;
    margin: 0;
}

/* --- Role Badges (Top Right of Cards) --- */
.role-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
}

/* Badge Color Variations */
.role-buyer {
    color: var(--secondary);
    background-color: rgba(93, 253, 138, 0.4);
}

.role-hub {
    color: var(--primary-container);
    background-color: #d5e3ff; /* primary-fixed color */
}

.role-organiser {
    color: var(--on-surface-variant);
    background-color: var(--surface-container-high);
}
/* --- Why GroupBuy India Section --- */
.why-us-section {
    background-color: var(--surface-container-low);
    border-radius: 2rem;
    padding: 1.5rem;
    margin: 0 1.5rem 2.5rem;
}

/* --- Header Layout --- */
.why-us-header {
    margin-bottom: 1.5rem;
}

.why-us-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary); /* Green */
    margin-bottom: 0.75rem;
}

.why-us-badge p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.why-us-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--on-surface);
    margin: 0 0 1.5rem 0;
}


/* --- Table Container --- */
.table-container {
    background-color: var(--surface-container-lowest); /* White */
    border-radius: 1.5rem;
    overflow: hidden; /* Clips the table corners perfectly */
    border: 1px solid rgba(195, 198, 208, 0.2); /* var(--outline-variant) */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* --- Table Layout & Typography --- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, 
.comparison-table td {
    padding: 1rem;
    font-size: 0.875rem; /* 14px */
}

.comparison-table thead {
    background-color: var(--surface-container); /* Slight off-white */
}

.comparison-table th {
    color: var(--on-surface-variant);
    font-weight: 600;
}

.comparison-table td {
    color: var(--on-surface-variant);
    font-weight: 500;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(195, 198, 208, 0.15); /* Subtle row divider */
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

/* Zebra Striping: Alternates row backgrounds automatically */
.comparison-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.5); 
}

/* --- Table Utilities --- */
.col-center {
    text-align: center;
}

.th-highlight {
    color: var(--secondary);
}

.text-error {
    color: #ba1a1a !important; /* Forces the Red color */
    font-weight: 800;
    font-size: 1.125rem;
}

.text-success {
    color: #006d2f !important; /* Forces the Green color */
    font-weight: 800;
    font-size: 1.125rem;
}
/* --- Our Values Section --- */
.values-section {
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
}

/* --- Header Layout --- */
.values-header {
    margin-bottom: 1.5rem;
}

.values-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary); /* Brand Green */
    margin-bottom: 0.75rem;
}

.values-badge p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.values-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--on-surface);
    margin: 0;
}

/* --- Grid Layout --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Forces 2 columns on mobile */
    gap: 0.75rem; /* Gap between grid items */
}

/* --- Value Card Styling --- */
.value-card {
    background-color: var(--surface-container-lowest); /* White */
    border-radius: 1.5rem;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(195, 198, 208, 0.2); /* var(--outline-variant) */
}

.value-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background-color: rgba(93, 253, 138, 0.3); /* Light green tint */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card-title {
    font-size: 1rem; /* 16px */
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 0.5rem;
}

.value-card-desc {
    font-size: 0.85rem; /* 14px */
    color: var(--on-surface-variant);
    line-height: 1.625;
    margin: 0;
}
/* --- Final CTA Section --- */
.cta-section {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

/* --- Card Background --- */
.cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background: linear-gradient(to bottom right, var(--primary), var(--primary-container));
    padding: 2rem;
    text-align: center;
    color: var(--on-primary); /* White */
}

.cta-content {
    position: relative;
    z-index: 10; /* Keeps content above the glowing blur */
}

/* --- Typography --- */
.cta-title {
    font-family: var(--font-headline);
    font-size: 1.875rem; /* 30px */
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: #ffffff;
}

.text-secondary-fixed {
    color: rgb(102 255 142 ); /* Bright neon green */
}

.cta-description {
    color:rgb(127 157 208); /* Soft blue-grey */
    font-size: 1rem; /* 16px */
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

/* --- Action Buttons Layout --- */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Primary Button (Bright Green) */
.btn-primary-action {
    width: 100%;
    background-color: rgb(102 255 142 );
    color: rgb(0 33 9);/* Very dark green for high contrast readability */
    padding: 1rem;
    border-radius: 1rem;
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.1s ease;
}

.btn-primary-action:active {
    transform: scale(0.96); /* Click/tap animation */
}

/* Secondary Button (Translucent Outline) */
.btn-secondary-action {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 1rem;
    border-radius: 1rem;
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.btn-secondary-action:active {
    transform: scale(0.96);
}

/* --- Decorative Abstract Glow --- */
.cta-deco-circle {
    position: absolute;
    right: -2.5rem;
    bottom: -2.5rem;
    width: 10rem;
    height: 10rem;
    background-color: rgba(93, 253, 138, 0.15); /* Soft green glow */
    border-radius: 50%;
    filter: blur(24px);
    z-index: 1;
}
/* --- Footer Section --- */
.site-footer {
    background-color: var(--surface-container-low); /* Light purple base */
    color: var(--primary-container);
    width: 100%;
    padding:0,0;
}

.footer-container {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* --- Brand Section --- */
.footer-logo {
    font-family: var(--font-headline);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary);
}

.footer-desc {
    font-family: var(--font-body);
    font-size: 0.875rem; /* 14px */
    color: var(--on-surface-variant);
    line-height: 1.625;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--surface-container-highest); /* Light grey/purple */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-container);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.social-btn:hover {
    opacity: 0.8;
}

/* --- Links Grid Layout --- */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 2rem;
}

.footer-col-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list li, 
.footer-list a {
    font-size: 0.875rem; /* 14px */
    color: var(--on-surface-variant);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: var(--primary); /* Deep blue on hover */
}

.icon-small {
    font-size: 1.125rem;
    margin-top: 0.125rem; /* Nudges the icon down slightly to align perfectly with text */
}

/* --- Copyright Bottom Bar --- */
.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    padding-bottom: 6rem; /* Keeps space for a mobile bottom nav menu */
    border-top: 1px solid rgba(195, 198, 208, 0.3); /* Subtle top border */
    text-align: center;
    margin-left: 2rem;
    margin-right: 2rem;
}

.footer-bottom p {
    font-size: 0.75rem; /* 12px */
    color: var(--on-surface-variant);
}


