/* ===================================
   Material Symbols Configuration
   =================================== */
.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 100,
    'GRAD' 0,
    'opsz' 24;
}

/* ===================================
   CSS Variables
   =================================== */
:root {
    /* Colors - Green Pea Palette */
    --primary-color: #1b5240;
    --secondary-color: #26634f;
    --accent-color: #cd5534;
    --accent-light: #f0f4f3;
    --text-dark: #000000;
    --text-medium: #333333;
    --text-light: #666666;
    --background-light: #f9fafa;
    --background-white: #ffffff;
    --border-color: #e0e6e5;

    /* Typography */
    --font-serif: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* Layout */
    --container-width: 1200px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-serif);
    color: var(--text-dark);
    background-color: var(--background-white);
    line-height: 1.8;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background-color: var(--background-light);
}

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

.section-title {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 48px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 1.5rem;
    opacity: 1;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 82, 64, 0.25);
}

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

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    width: 100%;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.65rem;
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('assets/images/Banner_image.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: var(--spacing-md);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-name {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.hero-tagline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    font-style: italic;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    font-weight: 500;
}

.hero-cta .btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    padding: 0.875rem 2rem;
}

.hero-cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   About Section
   =================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.author-photo {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    aspect-ratio: 3/4;
    object-fit: cover;
    background-color: var(--accent-light);
}

.book-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.about-text {
    max-width: 680px;
}

.about-text h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: 1.0625rem;
    line-height: 1.85;
}

.book-highlight {
    background: linear-gradient(135deg, var(--accent-light), var(--background-white));
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    margin: var(--spacing-lg) 0;
    display: flex;
    gap: var(--spacing-md);
    align-items: start;
}

.book-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.book-highlight h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.book-highlight p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* ===================================
   Services Section - Redesigned with Tabs
   =================================== */
.services-section {
    background-color: var(--background-light);
}

/* Service Tabs Navigation */
.service-tabs {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: var(--spacing-sm);
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--background-light);
}

.service-tabs::-webkit-scrollbar {
    height: 6px;
}

.service-tabs::-webkit-scrollbar-track {
    background: var(--background-light);
}

.service-tabs::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.service-tab {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text-medium);
}

.service-tab:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.service-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(61, 40, 23, 0.15);
}

.tab-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.tab-label {
    font-size: 0.9375rem;
    text-align: center;
    line-height: 1.2;
}

/* Service Panels */
.service-panels {
    margin-top: var(--spacing-lg);
    position: relative;
    min-height: 500px;
}

.service-panel {
    display: none;
    animation: fadeIn 0.4s ease-in;
}

.service-panel.active {
    display: block;
}

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

/* Service Showcase Layout */
.service-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
}

.service-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.75rem;
}

.service-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Service Features List */
.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.feature-item svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Service Examples */
.service-examples {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.example-card {
    background: var(--background-white);
    border-left: 3px solid var(--accent-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.example-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-left-color: var(--secondary-color);
}

.example-card-full {
    grid-column: 1 / -1;
}

.example-header {
    background-color: var(--accent-light);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.example-header h4 {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--primary-color);
    font-weight: 600;
}

.example-tag {
    background-color: rgba(184, 149, 106, 0.2);
    color: var(--secondary-color);
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-serif);
}

.example-content {
    padding: 1.5rem 1.25rem;
    line-height: 1.8;
}

.example-text {
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.9875rem;
}

.example-text:last-child {
    margin-bottom: 0;
}

.example-text em {
    font-style: italic;
    color: var(--text-medium);
    display: block;
    line-height: 2;
}

.example-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.example-footer {
    padding: 0.75rem 1.25rem;
    background-color: var(--background-light);
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.example-note {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    text-transform: lowercase;
}

/* Services Call to Action */
.services-cta {
    margin-top: var(--spacing-xl);
    text-align: center;
    padding: 2.5rem var(--spacing-lg);
    background-color: var(--accent-light);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-weight: 400;
}

/* ===================================
   Order Section
   =================================== */
.order-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

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

.info-card {
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-card p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.process-list {
    list-style: none;
    counter-reset: process;
}

.process-list li {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.process-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.process-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.process-list strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.process-list p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

.donation-info {
    background: linear-gradient(135deg, var(--accent-light), var(--background-white));
    border-left: 4px solid var(--accent-color);
}

.donation-info p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.donation-note {
    font-style: italic;
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* ===================================
   Order Form
   =================================== */
.order-form-wrapper {
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
    background-color: var(--background-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27, 82, 64, 0.08);
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

/* ===================================
   Support Section
   =================================== */
.support-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.support-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
    font-size: 1.0625rem;
}

.support-options {
    margin-top: var(--spacing-lg);
}

.support-option {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.support-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.support-option h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.support-option p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.donation-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.donation-header h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.donation-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.paypal-button-container {
    display: flex;
    justify-content: center;
    margin: var(--spacing-lg) 0;
}

.paypal-button-container form {
    display: flex;
    justify-content: center;
}

.donation-thank-you {
    margin-top: var(--spacing-lg);
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.0625rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer h3,
.footer h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.footer-book {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

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

.footer-links a {
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
    padding-left: 5px;
}

.footer-quote {
    font-style: italic;
    color: white;
    margin-top: var(--spacing-md);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.875rem;
    color: white;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    opacity: 0.8;
}

.footer-legal a {
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 0.7;
}

.footer a {
    color: white;
}

.footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   Responsive Design - Tablet
   =================================== */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .order-content {
        grid-template-columns: 1fr;
    }

    .support-content {
        grid-template-columns: 1fr;
    }

    /* Services Section - Tablet */
    .service-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .service-info {
        order: 1;
    }

    .service-examples {
        order: 2;
    }
}

/* ===================================
   Responsive Design - Mobile
   =================================== */
@media (max-width: 768px) {
    :root {
        --spacing-xxl: 3rem;
        --spacing-xl: 2.5rem;
        --spacing-lg: 2rem;
    }

    .navbar {
        padding: 0;
    }

    .nav-container {
        padding: 0.75rem var(--spacing-md);
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--background-white);
        flex-direction: column;
        padding: 80px var(--spacing-md) var(--spacing-md);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 1.25rem;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.125rem;
        text-align: left;
        display: block;
    }

    .hero {
        min-height: 90vh;
        background-attachment: scroll;
        background-position: 65% center;
        background-image: url('assets/images/Banner_image_mobile.webp');
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    /* Services Section - Mobile */
    .service-tabs {
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .service-tab {
        min-width: 120px;
        padding: 0.875rem 1rem;
    }

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

    .tab-label {
        font-size: 0.8125rem;
    }

    .service-showcase {
        padding: var(--spacing-md);
    }

    .service-panels {
        min-height: 400px;
    }

    .example-card {
        margin-bottom: var(--spacing-sm);
    }

    .example-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .example-tag {
        align-self: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-text {
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .logo-text {
        display: block;
        font-size: 1.25rem;
    }

    .book-badge {
        position: static;
        margin-top: var(--spacing-md);
        justify-content: center;
    }

    .info-card,
    .order-form-wrapper {
        padding: var(--spacing-md);
    }
}

/* ===================================
   Animations
   =================================== */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .info-card,
    .support-option {
        animation: fadeInUp 0.6s ease-out backwards;
    }

    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }

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

/* ===================================
   Cookie Consent Banner
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(27, 82, 64, 0.98), rgba(27, 82, 64, 0.95));
    color: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    backdrop-filter: blur(10px);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
}

.cookie-consent-text a {
    font-weight: 500;
    color: #ffffff;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #ffffff;
    color: var(--primary-color);
}

.cookie-btn-accept:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 0 1.5rem;
    }

    .cookie-consent-text {
        font-size: 0.9rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .navbar,
    .hero-cta,
    .scroll-indicator,
    .order-form,
    .donation-card,
    .footer,
    .cookie-consent {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}
