/* ========================================
   GLOBAL STYLES & VARIABLES
   ======================================== */

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

:root {
    /* Brand Colors - Matching Logo */
    --primary-green: #009345;
    --dark-green: #007535;
    --light-green: #00b357;

    /* Neutral Palette - Black, White, Grey */
    --black: #000000;
    --charcoal: #1a1a1a;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #e5e5e5;
    --off-white: #f5f5f5;
    --white: #ffffff;

    /* Functional Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --text-light: #666666;

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 500;
    color: var(--text-primary);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.section-label.light {
    color: var(--white);
}

.section-heading {
    margin-bottom: 1.5rem;
}

.section-heading.light {
    color: var(--white);
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-intro.light {
    color: rgba(255, 255, 255, 0.9);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

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

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

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

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

.nav-logo .logo {
    height: 50px;
    width: auto;
    transition: height var(--transition-base);
}

.navbar.scrolled .nav-logo .logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.nav-active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-links a.nav-active {
    color: var(--primary-green);
}

.nav-phone {
    color: var(--primary-green) !important;
    font-weight: 700 !important;
    white-space: nowrap;
}

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

.nav-cta {
    background-color: var(--primary-green);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all var(--transition-base);
}

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

.nav-cta:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all var(--transition-base);
    border-radius: 2px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn::after {
    content: '→';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(50px);
    opacity: 0;
    z-index: 3;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-text {
    position: relative;
    z-index: 3;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover .btn-text {
    transform: translateX(-8px);
    opacity: 0;
}

.btn:hover::after {
    transform: translate(-50%, -50%) translateX(0);
    opacity: 1;
}

.btn:hover::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    transform: translateY(0) scale(1.8);
}

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

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

.btn-primary:hover {
    border-color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary::before {
    background-color: var(--white);
}

.btn-secondary:hover {
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary::after {
    color: var(--primary-green);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline::before {
    background-color: var(--primary-green);
}

.btn-outline::after {
    color: var(--white);
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light::before {
    background-color: var(--white);
}

.btn-outline-light::after {
    color: var(--primary-green);
}

.btn-outline-light:hover {
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   TRUST BAR
   ======================================== */

.trust-bar {
    background-color: var(--off-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-item strong {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 800;
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero-section {
    height: 100vh;
    height: 100svh; /* Use small viewport height for mobile browsers */
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    margin-top: 82px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 147, 69, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    padding: 2rem;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.75rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   PAGE HERO (SUB-PAGES)
   ======================================== */

.page-hero {
    height: 450px;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 82px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 147, 69, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.content-section {
    padding: 6rem 0;
}

.bg-white {
    background-color: var(--white);
}

.bg-light {
    background-color: var(--off-white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

/* ========================================
   PROBLEM/SOLUTION SECTION
   ======================================== */

.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.problem-card,
.solution-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.problem-card.visible,
.solution-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.problem-card {
    background-color: #fff5f5;
    border: 2px solid #fee;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.solution-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid var(--primary-green);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 147, 69, 0.2);
}

.problem-icon,
.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.problem-icon {
    color: #ef4444;
}

.solution-icon {
    color: var(--primary-green);
    font-weight: 700;
}

.problem-card h3,
.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.problem-card p,
.solution-card p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ========================================
   TECHNOLOGY SECTION
   ======================================== */

.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tech-feature-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-base);
    border-top: 4px solid var(--primary-green);
}

.tech-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.tech-feature-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-green);
    opacity: 0.1;
    line-height: 1;
}

.tech-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

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

.tech-feature-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tech-feature-card p {
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   TWO-COLUMN LAYOUTS
   ======================================== */

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.two-column-layout.reverse {
    direction: rtl;
}

.two-column-layout.reverse > * {
    direction: ltr;
}

.content-text {
    padding: 1rem 0;
}

.content-text .btn {
    margin-top: 2rem;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

.image-wrapper:hover {
    transform: scale(1.02);
}

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

/* ========================================
   SERVICE LIST
   ======================================== */

.service-features-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.25rem;
}

.service-list {
    margin: 2rem 0;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    flex-shrink: 0;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.service-content p {
    margin-bottom: 0;
}

.service-note {
    font-style: italic;
    color: var(--medium-gray);
    margin-top: 2rem;
}

/* ========================================
   CHECK LIST
   ======================================== */

.check-list {
    list-style: none;
    margin: 2rem 0;
}

.check-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ========================================
   VALUES & STATS
   ======================================== */

.value-points {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.value-item h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.value-item p {
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    margin: 2rem 0;
}

.values-list li {
    padding: 1.25rem;
    margin-bottom: 1rem;
    background-color: var(--light-gray);
    border-left: 4px solid var(--primary-green);
    border-radius: 8px;
}

.values-list li strong {
    color: var(--primary-green);
    font-weight: 600;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 5rem 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   TEAM STATS
   ======================================== */

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.team-stat-item {
    padding: 1.5rem;
}

.team-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.team-stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========================================
   WHY WORK WITH US
   ======================================== */

.why-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-work-card {
    background-color: var(--off-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.why-work-card:hover {
    background-color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-work-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.why-work-card:hover .why-work-icon {
    transform: scale(1.1);
}

.why-work-card h3 {
    color: var(--text-primary);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.why-work-card p {
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   CAREERS CTA
   ======================================== */

.careers-cta-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.careers-cta-content h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 2.5rem;
}

.careers-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.careers-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.careers-feature {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.careers-cta-box .btn {
    background-color: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.careers-cta-box .btn::before {
    background-color: var(--white);
}

.careers-cta-box .btn::after {
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .careers-cta-box {
        padding: 3rem 2rem;
    }

    .careers-features {
        gap: 1rem;
    }

    .careers-feature {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }
}

/* ========================================
   TEAM CARDS
   ======================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.team-card-modern {
    background-color: var(--white);
    border-radius: 16px;
    overflow: visible;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    z-index: 1;
}

.team-card-modern.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-card-modern:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.team-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--light-gray);
    border-radius: 16px 16px 0 0;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card-modern:hover .team-img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 147, 69, 0.96);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.team-card-modern:hover .team-overlay {
    opacity: 1;
}

/* Custom scrollbar for team overlay */
.team-overlay::-webkit-scrollbar {
    width: 6px;
}

.team-overlay::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.team-overlay::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

.team-overlay::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
}

.team-bio-overlay {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 1rem 0.5rem;
    margin-top: 1rem;
    max-width: 100%;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-contact {
    margin-top: 1rem;
}

.team-email {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.9rem;
}

.team-email:hover {
    text-decoration: underline;
}

/* ========================================
   TEAM CAROUSEL SECTION
   ======================================== */

.team-carousel-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: var(--black);
}

.team-carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-carousel-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: fit-content;
}

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

.carousel-image {
    height: 500px;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.team-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 147, 69, 0.85);
    z-index: 1;
}

.team-carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.team-carousel-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.team-carousel-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-carousel-content .btn {
    background-color: var(--white);
    color: var(--primary-green);
}

.team-carousel-content .btn::before {
    background-color: var(--white);
}

.team-carousel-content .btn:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .team-carousel-section {
        height: 400px;
    }

    .carousel-image {
        height: 400px;
    }

    .team-carousel-content h2 {
        font-size: 2rem;
    }

    .team-carousel-content p {
        font-size: 1rem;
    }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-section {
    padding: 6rem 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 147, 69, 0.85) 100%);
}

.why-section .container {
    position: relative;
    z-index: 2;
}

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

.why-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.why-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 48px;
    height: 48px;
}

.why-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ========================================
   CTA SECTION MODERN
   ======================================== */

.cta-section-modern {
    padding: 5rem 0 5rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.cta-box-modern {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-box-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-box-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content-modern {
    position: relative;
    z-index: 2;
}

.cta-content-modern h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-modern p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Section Button Overrides */
.cta-section-modern .btn-primary {
    background-color: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.cta-section-modern .btn-primary::before {
    background-color: var(--white);
}

.cta-section-modern .btn-primary::after {
    color: var(--primary-green);
}

.cta-section-modern .btn-secondary::after {
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .cta-box-modern {
        padding: 3rem 2rem;
    }

    .cta-content-modern h2 {
        font-size: 2rem;
    }
}

/* ========================================
   TIMELINE SECTION
   ======================================== */

.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--dark-green) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: var(--primary-green);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--light-gray);
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.timeline-content p {
    margin-bottom: 0;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
}

/* ========================================
   ADDITIONAL SERVICES SECTION
   ======================================== */

.additional-services-box {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-green);
    max-width: 900px;
    margin: 0 auto;
}

.additional-services-box h3 {
    color: var(--primary-green);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.additional-services-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.additional-services-box .btn {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .additional-services-box {
        padding: 2.5rem 2rem;
    }

    .additional-services-box h3 {
        font-size: 1.5rem;
    }

    .additional-services-box p {
        font-size: 1rem;
    }
}

/* ========================================
   DIFFERENTIATORS SECTION
   ======================================== */

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
}

.diff-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.diff-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.diff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.diff-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.diff-card h3 {
    color: var(--text-primary);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.diff-card p {
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   COMMITMENT SECTION
   ======================================== */

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.commitment-card {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--primary-green);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-green);
    opacity: 0.05;
    border-radius: 0 16px 0 100%;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--dark-green);
}

.commitment-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.commitment-card h3 {
    color: var(--text-primary);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.commitment-card p {
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-info-cards {
    margin: 3rem 0;
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    background-color: var(--off-white);
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    margin-bottom: 0.25rem;
}

.contact-info-content a {
    color: var(--primary-green);
    font-weight: 600;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.availability {
    font-size: 0.85rem;
    color: var(--text-light);
}

.social-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-links-modern {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-link:hover {
    background-color: var(--dark-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   CONTACT FORM
   ======================================== */

.form-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-container h3 {
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-base);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 147, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.service-hours-section {
    padding: 4rem 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hours-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.hours-card h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.hours-time {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.hours-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================
   FOOTER MODERN
   ======================================== */

.footer-modern {
    background-color: var(--charcoal);
    color: var(--white);
}

.footer-main {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-phone svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.footer-phone a {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color var(--transition-base);
}

.footer-phone a:hover {
    color: var(--light-green);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all var(--transition-base);
    width: fit-content;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-hours strong {
    color: var(--white);
}

.footer-bottom {
    padding: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.igani-link {
    display: flex;
    align-items: center;
    transition: all var(--transition-base);
}

.igani-link:hover {
    transform: translateY(-2px);
}

.igani-logo {
    height: 40px;
    width: auto;
    transition: all var(--transition-base);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.visible.slide-in-left,
.visible.slide-in-right,
.visible.slide-in-up,
.visible.fade-in-up {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .two-column-layout.reverse {
        direction: ltr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .content-section {
        padding: 4rem 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-lg);
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .hero-section {
        height: 100vh;
        height: 100svh; /* Small viewport height for mobile */
        min-height: calc(100vh - 82px);
        min-height: calc(100svh - 82px);
    }

    .page-hero {
        height: 60vh;
        height: 60svh; /* Small viewport height for mobile */
        min-height: 400px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn,
    .cta-buttons .btn {
        min-width: 250px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-card-modern:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .team-image-container {
        height: 350px;
    }

    .team-overlay {
        padding: 1.5rem 1rem;
    }

    .team-bio-overlay {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }

    .btn {
        padding: 0.875rem 1.5rem;
    }
}

/* ========================================
   INTERACTIVE HOVER BUTTON
   ======================================== */

.btn-interactive {
    position: relative;
    min-width: 200px;
    padding: 1rem 2rem;
    overflow: hidden;
    border: 2px solid var(--white);
    border-radius: 50px;
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-interactive-content {
    position: relative;
    z-index: 3;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-interactive:hover .btn-interactive-content {
    transform: translateX(-8px);
    opacity: 0;
}

.btn-interactive-arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(50px);
    opacity: 0;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-interactive:hover .btn-interactive-arrow {
    transform: translate(-50%, -50%) translateX(0);
    opacity: 1;
}

.btn-interactive-bg {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-interactive:hover .btn-interactive-bg {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    transform: translateY(0) scale(1.8);
}

.btn-interactive:hover {
    border-color: var(--primary-green);
    color: var(--white);
}

/* Primary variant */
.btn-interactive.btn-interactive-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-interactive.btn-interactive-primary .btn-interactive-bg {
    background-color: var(--dark-green);
}

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

/* Arrow icon SVG */
.btn-interactive-arrow svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

/* ========================================
   MOBILE STICKY CTA
   ======================================== */

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
    background-color: var(--white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    gap: 0.75rem;
}

.mobile-cta-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

.mobile-cta-button.secondary {
    background-color: var(--dark-gray);
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-cta-button svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.parallax {
    background-attachment: scroll;
}

@media (max-width: 768px) {
    .parallax {
        background-attachment: scroll;
    }
}
