/* ===================================
   SHOEBILL ADVENTURE TOURS - MAIN STYLES
   Design Philosophy: Warm, earthy, elegant with bold typography
   =================================== */

/* CSS Variables */
:root {
    /* Colors - Warm Earth Palette */
    --primary-color: #2D7A4F;        /* Forest Green */
    --primary-dark: #1F5438;         /* Dark Forest Green */
    --secondary-color: #1B8AAE;      /* Sky Blue */
    --secondary-light: #3DA5C7;      /* Light Sky Blue */
    --accent-color: #F4A900;         /* Sunburst Gold */
    --text-dark: #2C2C2C;            /* Charcoal */
    --text-medium: #6B7280;          /* Stone Grey */
    --text-light: #9CA3AF;           /* Light Stone Grey */
    --background-light: #FAF8F5;     /* Warm White */
    --background-cream: #F5EFE6;     /* Cream */
    --white: #FFFFFF;
    --terracotta: #A0522D;           /* Earth Brown */
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Karla', sans-serif;
    
    /* Layout */
    --navbar-height: 80px;
    --scroll-offset: 100px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Shadows */
    --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);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: var(--scroll-offset);
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    width: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

section[id] {
    scroll-margin-top: var(--scroll-offset);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.section-tag.light {
    color: var(--accent-color);
}

.section-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

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

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header.centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-text {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

button,
.paypal-tour-button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(212, 119, 60, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 119, 60, 0.4);
}

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

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

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-text {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0;
    font-weight: 600;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.nav-logo .logo-subtext {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-medium);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-cta {
    margin-left: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    backdrop-filter: blur(2px);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--navbar-height) + 40px);
    padding-bottom: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 77, 0.7) 0%, rgba(26, 26, 26, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 var(--spacing-md);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-highlight {
    color: var(--accent-color);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.stat-symbol {
    font-size: 2rem;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--white);
    pointer-events: none;
}

.scroll-indicator span {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: 0 auto;
}

/* Trust Banner */
.trust-banner {
    background-color: var(--secondary-color);
    padding: 1.5rem 0;
    text-align: center;
    scroll-margin-top: var(--scroll-offset);
}

.trust-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
}

/* Tours Section */
.tours-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
    scroll-margin-top: var(--scroll-offset);
    width: 100%;
    overflow-x: hidden;
    display: block;
    visibility: visible;
    opacity: 1;
    min-height: 400px;
    position: relative;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.tour-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 500px;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: var(--background-light);
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.tour-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.tour-badge-new {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.tour-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tour-duration,
.tour-difficulty {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-medium);
    padding: 0.25rem 0.75rem;
    background-color: var(--background-cream);
    border-radius: var(--radius-sm);
}

.tour-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tour-description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex: 1;
}

.tour-impact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgba(212, 119, 60, 0.08);
    border-left: 3px solid var(--primary-color);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.impact-icon {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.impact-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--background-cream);
    position: relative;
    z-index: 2;
}

.tour-footer .btn-outline {
    position: relative;
    z-index: 3;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Calculator Section */
.calculator-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1f4839 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: var(--scroll-offset);
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(232, 181, 73, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 119, 60, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-wrapper {
    position: relative;
    z-index: 1;
}

.calculator-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.calculator-tool {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.calculator-input {
    margin-bottom: var(--spacing-lg);
}

.calculator-input label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.calculator-select {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-family: var(--font-body);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    touch-action: manipulation;
}

.calculator-select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.calculator-select option {
    background-color: var(--secondary-color);
    color: var(--white);
}

.calculator-results {
    padding: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
}

.results-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.impact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.impact-item {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-icon-large {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.impact-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.impact-unit {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.calculator-cta {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

/* Impact Section */
.impact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-light);
    scroll-margin-top: var(--scroll-offset);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-xl);
}

.story-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.story-image {
    height: 300px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
}

.story-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.story-text {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-style: italic;
}

.story-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--background-cream);
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.transparency-section {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.transparency-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.transparency-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-cream);
    border-radius: var(--radius-md);
}

.percentage {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.percentage-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.percentage-desc {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Features Section */
.why-us-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
    scroll-margin-top: var(--scroll-offset);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: var(--background-cream);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.feature-title {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.feature-text {
    color: var(--text-medium);
    line-height: 1.7;
}

/* About Preview Section */
.about-preview {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-cream);
    scroll-margin-top: var(--scroll-offset);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: var(--spacing-lg);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
    scroll-margin-top: var(--scroll-offset);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto var(--spacing-md);
    position: relative;
    min-height: 350px;
}

.testimonial-card {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1.125rem;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--background-cream);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-cream);
    scroll-margin-top: var(--scroll-offset);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

/* Direct Contribution Section */
.direct-contribution-section {
    margin-top: var(--spacing-xl);
    display: flex;
    justify-content: center;
}

.contribution-box {
    max-width: 700px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.contribution-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.contribution-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 900;
}

.contribution-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.contribution-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.highlight-text {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
}

.contribution-options {
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.contribution-note {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.95);
}

.contribution-list {
    list-style: none;
    padding-left: 0;
}

.contribution-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

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

.paypal-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.paypal-button:hover {
    background-color: #E8B549;
    transform: translateY(-2px);
}


.paypal-icon {
    font-size: 1.5rem;
}

.paypal-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-sm);
}

.contact-info {
    padding-right: 2rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

.contact-item a:hover {
    color: var(--primary-dark);
}

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

.social-link {
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    display: inline-block;
    min-height: 44px;
    min-width: 44px;
    text-align: center;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--background-cream);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    min-height: 48px;
    touch-action: manipulation;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    grid-column: 1 / -1;
}

.form-note {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-medium);
    font-size: 0.875rem;
    margin-top: -0.5rem;
}

/* Page Hero (for FAQ and Partner pages) */
.page-hero {
    padding: calc(var(--navbar-height) + 4rem) 0 4rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-light);
}

.faq-category {
    margin-bottom: var(--spacing-xl);
}

.faq-category-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
    font-family: var(--font-display);
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-cream);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

/* Transparency Enhancements */
.transparency-section {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--background-cream);
}

.transparency-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.transparency-details {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-md);
}

.transparency-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.transparency-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Impact Metrics */
.impact-metrics {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--background-cream);
    border-radius: var(--radius-lg);
}

.metrics-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    font-family: var(--font-display);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.metric-card {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.metric-desc {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* Success Metrics */
.success-metrics {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.success-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.success-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-bar {
    height: 12px;
    background-color: var(--background-cream);
    border-radius: 6px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 6px;
    transition: width 1s ease;
}

.stat-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-weight: 600;
    color: var(--text-dark);
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Transparency CTA */
.transparency-cta {
    margin-top: var(--spacing-lg);
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--background-light);
    border-radius: var(--radius-md);
}

.transparency-note {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: var(--spacing-lg);
}

/* Footer Support CTA */
.footer-support-cta {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
}

.support-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.support-cta-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 900;
}

.support-cta-text {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.footer-support-cta .btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.footer-support-cta .btn-primary:hover {
    background-color: #E8B549;
    transform: translateY(-2px);
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.footer-logo .logo-subtext {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    margin: var(--spacing-md) 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Contact Section SVG Icons */
.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    fill: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    min-height: 44px;
}

.social-links .social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.social-links .social-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Strategic Partner Section */
.partner-highlight {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-cream);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.partner-highlight-label {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.partner-highlight-content {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.partner-highlight-logo {
    margin-bottom: var(--spacing-xs);
}

.partner-highlight-logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.partner-highlight-logo img:hover {
    filter: grayscale(0%);
}

.partner-logo-placeholder {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.3;
    color: var(--primary-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-dark);
    border-radius: var(--radius-md);
}

.partner-highlight-text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 560px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.partner-highlight-btn {
    display: inline-block;
    margin-top: var(--spacing-xs);
    padding: 0.875rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 0.25px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-highlight-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Tablet */
@media (max-width: 1024px) {
    .partner-highlight {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .partner-highlight {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .partner-highlight-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: var(--spacing-md);
    }

    .partner-highlight-content {
        gap: 1.25rem;
    }

    .partner-highlight-logo img {
        max-height: 64px;
    }

    .partner-logo-placeholder {
        font-size: 1.05rem;
        padding: 0.625rem 1.25rem;
    }

    .partner-highlight-text {
        font-size: 0.9375rem;
        line-height: 1.7;
        padding: 0 var(--spacing-xs);
    }

    .partner-highlight-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
        width: auto;
        max-width: 100%;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .partner-highlight {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .partner-highlight-text {
        font-size: 0.875rem;
    }

    .partner-highlight-btn {
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
    }

    .footer-social {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}
