/* ============================
   THOMPSONPUB LTD - Main Stylesheet
   Modern Publishing Company Design
   ============================ */

/* --- CSS Variables --- */
:root {
    --green-darkest: #081c15;
    --green-dark: #1b4332;
    --green-mid: #2d6a4f;
    --green: #40916c;
    --green-light: #52b788;
    --green-lighter: #95d5b2;
    --green-lightest: #d8f3dc;
    --cream: #f0faf4;
    --white: #ffffff;
    --gray-100: #f5faf6;
    --gray-200: #e0f0e8;
    --gray-300: #c8e0d0;
    --gray-500: #6b9080;
    --gray-700: #3a5a40;
    --gray-900: #1a2e22;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(45,106,79,0.08);
    --shadow-md: 0 4px 20px rgba(45,106,79,0.12);
    --shadow-lg: 0 8px 40px rgba(45,106,79,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-heading);
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--green-light);
    color: var(--green-darkest);
    font-weight: 700;
    font-size: 20px;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo-sub {
    display: block;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--green-light);
    font-family: var(--font-body);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-light);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-mid) 50%, var(--green-dark) 100%);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(26, 58, 107, 0.5) 0%, transparent 50%);
    animation: heroBg 20s ease-in-out infinite;
}

@keyframes heroBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-2%, -2%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: var(--green-light);
    font-style: italic;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--green-light);
    color: var(--green-darkest);
}

.btn-primary:hover {
    background: var(--green-lighter);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--green-light);
    color: var(--green-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 15px;
}

/* --- Hero Stats --- */
.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--green-light);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header.light .section-tag,
.section-header.light .section-title,
.section-header.light .section-desc {
    color: var(--white);
}

.section-header.light .section-tag {
    border-color: rgba(255,255,255,0.3);
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-light);
    border: 1px solid var(--green-light);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
    color: var(--green-darkest);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Services Section --- */
.services {
    padding: 120px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--green-darkest), var(--green-mid));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--green-light);
}

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

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--green-darkest);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link:hover {
    letter-spacing: 2px;
}

/* --- Featured Books --- */
.featured {
    padding: 120px 0;
    background: var(--white);
}

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

.book-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.book-cover {
    padding: 40px 32px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    position: relative;
}

.book-category {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.book-cover h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: auto;
}

.book-cover p {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 8px;
}

.book-info {
    padding: 20px 32px;
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.book-badge {
    background: var(--green-light);
    color: var(--green-darkest);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-info p {
    font-size: 14px;
    color: var(--gray-500);
}

/* --- Process Section --- */
.process {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-mid) 100%);
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    color: var(--white);
    padding: 32px 24px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.step:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--green-light);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 16px;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--green-light), rgba(201,168,76,0.2));
    margin-top: 60px;
    flex-shrink: 0;
}

/* --- Testimonials --- */
.testimonials {
    padding: 120px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--green-light);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-darkest), var(--green-mid));
    color: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--green-darkest);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}

/* --- CTA Section --- */
.cta-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    color: var(--green-darkest);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: var(--gray-500);
    margin-bottom: 40px;
}

/* --- Footer --- */
.footer {
    background: var(--green-darkest);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

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

.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 700;
}

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

/* --- Page Hero (for sub pages) --- */
.page-hero {
    padding: 180px 24px 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-mid) 100%);
    color: var(--white);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Pricing Table --- */
.pricing-section {
    padding: 120px 0;
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.price-card.featured {
    border-color: var(--green-light);
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-light);
    color: var(--green-darkest);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--green-darkest);
    margin-bottom: 8px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--green-darkest);
    margin: 16px 0;
}

.price-amount span {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-500);
}

.price-features {
    text-align: left;
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-features li {
    font-size: 14px;
    color: var(--gray-700);
    padding-left: 28px;
    position: relative;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-light);
    font-weight: 700;
}

/* --- Contact Form --- */
.contact-section {
    padding: 120px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--green-darkest);
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--green-darkest);
    color: var(--green-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 14px;
    color: var(--green-darkest);
    margin-bottom: 2px;
}

.contact-detail span {
    font-size: 14px;
    color: var(--gray-500);
}

.contact-form {
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-darkest);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--gray-900);
    transition: var(--transition);
    background: var(--white);
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* --- About Page --- */
.about-story {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-darkest), var(--green-mid));
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 700;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--green-darkest);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 16px;
}

/* --- Values Section --- */
.values {
    padding: 120px 0;
    background: var(--cream);
}

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

.value-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--green-darkest);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- Team Section --- */
.team {
    padding: 120px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-darkest), var(--green-mid));
    color: var(--green-light);
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--green-darkest);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .step-connector { display: none; }
    .process-steps { flex-direction: column; align-items: center; }
    .step { max-width: 100%; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--green-darkest);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }
    .nav-menu.active { right: 0; }
    .hero-stats { gap: 32px; }
    .stat-number { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero { padding: 120px 16px 60px; }
    .services, .featured, .process, .testimonials, .pricing-section, .contact-section, .about-story, .values, .team {
        padding: 80px 0;
    }
}
