/* ============================================
   BAKER'S CUT & TRIM — Custom Styles
   Forest Green + Off-White | Vibrant Modern
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --green-900: #0d3b2e;
    --green-800: #145a41;
    --green-700: #1a7a58;
    --green-600: #22996e;
    --green-500: #2bb884;
    --green-400: #4dcea0;
    --green-300: #7edbb8;
    --green-200: #b5ecd7;
    --green-100: #d9f5e8;
    --green-50:  #eefaf3;
    
    --cream-900: #1a1a14;
    --cream-800: #2d2d24;
    --cream-700: #4a4a3e;
    --cream-600: #6b6b5c;
    --cream-500: #8e8e7e;
    --cream-400: #b0b0a0;
    --cream-300: #d0d0c0;
    --cream-200: #e8e8dc;
    --cream-100: #f4f4ec;
    --cream-50:  #fafaf5;
    --cream-25:  #f9f9f3;
    
    --accent: #e8a838;
    --accent-light: #f5c563;
    --accent-dark: #c48a20;
    
    --white: #ffffff;
    --black: #0a0a08;
    
    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --shadow-sm: 0 1px 3px rgba(13, 59, 46, 0.08);
    --shadow-md: 0 4px 16px rgba(13, 59, 46, 0.10);
    --shadow-lg: 0 8px 32px rgba(13, 59, 46, 0.12);
    --shadow-xl: 0 16px 48px rgba(13, 59, 46, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--cream-800);
    background: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-800);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 500;
}

.skip-link:focus {
    top: 16px;
}

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

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

.text-accent {
    color: var(--green-600);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26, 122, 88, 0.3);
}

.btn-primary:hover {
    background: var(--green-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 122, 88, 0.4);
}

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

.btn-secondary:hover {
    background: var(--green-50);
    border-color: var(--green-400);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-white {
    background: var(--white);
    color: var(--green-800);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: var(--cream-100);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

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

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---------- Section Tags ---------- */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-600);
    background: var(--green-100);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--cream-900);
}

.section-subtitle {
    font-size: 17px;
    color: var(--cream-600);
    max-width: 560px;
    line-height: 1.7;
}

.section-subtitle--left {
    max-width: 480px;
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-subtitle {
    margin: 0 auto;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--cream-200);
    transition: all var(--transition);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--cream-900);
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--cream-700);
    transition: color var(--transition);
    position: relative;
}

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

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

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

.btn-nav {
    background: var(--green-700) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-xl) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all var(--transition) !important;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: var(--green-600) !important;
    transform: translateY(-1px);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 110;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--cream-800);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--cream-50);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--cream-800);
    transition: background var(--transition);
}

.close-menu-btn:hover {
    background: var(--cream-200);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--cream-800);
    transition: color var(--transition);
}

.mobile-link:hover {
    color: var(--green-700);
}

.mobile-cta {
    margin-top: 16px;
    font-family: var(--font-primary);
    font-size: 18px !important;
    background: var(--green-700);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--cream-50);
    padding: 100px 0 60px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--green-100);
    top: -200px;
    right: -100px;
    opacity: 0.6;
}

.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: var(--green-50);
    bottom: -50px;
    left: 10%;
    opacity: 0.8;
}

.geo-rect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent);
    opacity: 0.08;
    top: 15%;
    left: 5%;
    transform: rotate(45deg);
    border-radius: var(--radius-md);
}

.geo-line {
    position: absolute;
    height: 2px;
    background: var(--green-200);
}

.geo-line--1 {
    width: 120px;
    top: 30%;
    left: 0;
    transform: rotate(-15deg);
}

.geo-line--2 {
    width: 80px;
    bottom: 25%;
    right: 5%;
    transform: rotate(30deg);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape-triangle {
    position: absolute;
    width: 0;
    height: 0;
}

.shape-triangle--1 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--green-200);
    top: 20%;
    left: 3%;
    opacity: 0.5;
    transform: rotate(20deg);
}

.shape-square {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 4px;
    top: 35%;
    right: 8%;
    opacity: 0.6;
    transform: rotate(30deg);
}

.shape-cross {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 60%;
    left: 8%;
    opacity: 0.4;
}

.shape-cross::before,
.shape-cross::after {
    content: '';
    position: absolute;
    background: var(--green-400);
}

.shape-cross::before {
    width: 20px;
    height: 4px;
    top: 8px;
    left: 0;
    border-radius: 2px;
}

.shape-cross::after {
    width: 4px;
    height: 20px;
    top: 0;
    left: 8px;
    border-radius: 2px;
}

.shape-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green-400);
}

.shape-dot--1 {
    bottom: 30%;
    right: 12%;
    opacity: 0.5;
}

.shape-dot--2 {
    top: 45%;
    left: 15%;
    opacity: 0.3;
    background: var(--accent);
    width: 8px;
    height: 8px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-100);
    color: var(--green-800);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-600);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--cream-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline .text-accent {
    font-style: italic;
    color: var(--green-700);
}

.hero-subheadline {
    font-size: 18px;
    color: var(--cream-600);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--green-700);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--cream-500);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--cream-300);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img--main {
    width: 320px;
    height: 420px;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.hero-img--accent {
    width: 220px;
    height: 280px;
    bottom: 60px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--white);
}

.hero-img--small {
    width: 140px;
    height: 140px;
    bottom: 0;
    right: 40px;
    z-index: 4;
    border: 4px solid var(--white);
    border-radius: var(--radius-md);
}

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

.hero-floating-card {
    position: absolute;
    bottom: 140px;
    right: -10px;
    z-index: 5;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    color: var(--cream-800);
}

.floating-card-icon {
    width: 36px;
    height: 36px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
}

/* ---------- Services Section ---------- */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-shape {
    position: absolute;
    border-radius: 50%;
}

.services-shape--1 {
    width: 400px;
    height: 400px;
    background: var(--green-50);
    top: -100px;
    left: -100px;
    opacity: 0.7;
}

.services-shape--2 {
    width: 250px;
    height: 250px;
    background: var(--cream-100);
    bottom: -50px;
    right: -50px;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    margin-bottom: 56px;
}

.service-card {
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green-300);
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card--primary {
    background: var(--green-800);
    border-color: var(--green-800);
}

.service-card--primary .service-title,
.service-card--primary .service-desc,
.service-card--primary .service-list li {
    color: var(--white);
}

.service-card--primary .service-list li {
    opacity: 0.8;
}

.service-card--primary::before {
    background: var(--green-400);
}

.service-card--accent {
    background: var(--accent);
    border-color: var(--accent);
}

.service-card--accent .service-title,
.service-card--accent .service-desc,
.service-card--accent .service-list li {
    color: var(--cream-900);
}

.service-card--accent .service-list li {
    opacity: 0.85;
}

.service-card--accent::before {
    background: var(--white);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    margin-bottom: 20px;
}

.service-card--primary .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.service-card--accent .service-icon {
    background: rgba(0, 0, 0, 0.1);
    color: var(--cream-900);
}

.service-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--cream-900);
}

.service-desc {
    font-size: 15px;
    color: var(--cream-600);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-list li {
    font-size: 14px;
    color: var(--cream-700);
    padding-left: 16px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
}

.service-card--primary .service-list li::before,
.service-card--accent .service-list li::before {
    background: var(--white);
    opacity: 0.7;
}

.services-cta {
    text-align: center;
    padding: 32px;
    background: var(--green-50);
    border-radius: var(--radius-lg);
}

.services-cta p {
    font-size: 15px;
    color: var(--cream-600);
    margin-bottom: 8px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--green-700);
    font-size: 15px;
    transition: gap var(--transition);
}

.link-arrow:hover {
    gap: 10px;
}

/* ---------- About Section ---------- */
.about {
    padding: 100px 0;
    background: var(--cream-50);
    overflow: hidden;
}

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

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

.about-visual {
    position: relative;
}

.about-image-grid {
    position: relative;
    height: 560px;
}

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

.about-img--1 {
    width: 280px;
    height: 360px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img--2 {
    width: 240px;
    height: 300px;
    top: 40px;
    right: 0;
    z-index: 1;
}

.about-img--3 {
    width: 200px;
    height: 200px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    border: 4px solid var(--cream-50);
}

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

.about-accent-box {
    position: absolute;
    bottom: 80px;
    right: -20px;
    z-index: 4;
    background: var(--green-700);
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.accent-number {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
}

.accent-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.about-content {
    max-width: 480px;
}

.about-text {
    font-size: 16px;
    color: var(--cream-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--cream-800);
}

.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon--green {
    background: var(--green-100);
    color: var(--green-700);
}

.feature-icon--accent {
    background: var(--accent);
    color: var(--cream-900);
}

/* ---------- Gallery Section ---------- */
.gallery {
    padding: 100px 0;
    background: var(--green-900);
    position: relative;
    overflow: hidden;
}

.gallery-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gallery-shape {
    position: absolute;
    border-radius: 50%;
}

.gallery-shape--1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    top: -150px;
    right: -100px;
}

.gallery-shape--2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.02);
    bottom: -80px;
    left: -80px;
}

.gallery .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--green-300);
}

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

.gallery .section-title .text-accent {
    color: var(--accent-light);
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.gallery .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 56px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 59, 46, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
}

.gallery-item--large {
    grid-column: span 7;
    height: 320px;
}

.gallery-item {
    height: 240px;
}

.gallery-item--wide {
    grid-column: span 12;
    height: 260px;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    padding: 100px 0;
    background: var(--cream-50);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.testimonials-shape {
    position: absolute;
    border-radius: 50%;
}

.testimonials-shape--1 {
    width: 350px;
    height: 350px;
    background: var(--green-100);
    top: -100px;
    right: -100px;
    opacity: 0.5;
}

.testimonials-shape--2 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    opacity: 0.06;
    bottom: -50px;
    left: 10%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--cream-200);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}

.testimonial-card--accent {
    background: var(--green-800);
    border-color: var(--green-800);
}

.testimonial-card--accent .testimonial-text {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-card--accent .author-name {
    color: var(--white);
}

.testimonial-card--accent .author-location {
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-quote {
    margin-bottom: 20px;
}

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

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    flex-shrink: 0;
}

.author-avatar--1 { background: var(--green-600); }
.author-avatar--2 { background: var(--accent); color: var(--cream-900); }
.author-avatar--3 { background: var(--green-800); }

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--cream-900);
}

.author-location {
    font-size: 13px;
    color: var(--cream-500);
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 100px 0;
    background: var(--green-800);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape--1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    top: -150px;
    left: -100px;
}

.cta-shape--2 {
    width: 250px;
    height: 250px;
    background: rgba(232, 168, 56, 0.1);
    bottom: -80px;
    right: 10%;
}

.cta-shape--3 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    top: 20%;
    right: 5%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--green-300);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-title .text-accent {
    color: var(--accent-light);
}

.cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Contact Section ---------- */
.contact {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    max-width: 480px;
}

.contact-desc {
    font-size: 16px;
    color: var(--cream-600);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon--green {
    background: var(--green-100);
    color: var(--green-700);
}

.contact-icon--accent {
    background: var(--accent);
    color: var(--cream-900);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream-500);
    font-weight: 500;
}

.contact-value {
    font-size: 15px;
    color: var(--cream-800);
    font-weight: 500;
    line-height: 1.6;
}

.contact-link {
    color: var(--green-700);
    transition: color var(--transition);
}

.contact-link:hover {
    color: var(--green-500);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form-bg {
    position: absolute;
    inset: -20px;
    pointer-events: none;
}

.form-shape-1 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--green-100);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    opacity: 0.5;
}

.form-shape-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    bottom: -20px;
    left: -20px;
    opacity: 0.15;
    transform: rotate(20deg);
}

.form-title {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--cream-900);
}

.contact-form {
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--cream-200);
    position: relative;
    z-index: 1;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--cream-700);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--cream-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--cream-900);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px var(--green-100);
}

.form-input::placeholder {
    color: var(--cream-400);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 48px 36px;
    position: relative;
    z-index: 1;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--green-700);
}

.form-success h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--cream-900);
}

.form-success p {
    font-size: 15px;
    color: var(--cream-600);
    line-height: 1.7;
}

.form-success a {
    color: var(--green-700);
    font-weight: 500;
}

/* ---------- Map Section ---------- */
.map-section {
    border-top: 4px solid var(--green-700);
}

.map-container {
    filter: saturate(0.7) contrast(1.1);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--green-900);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
}

.footer-shape--1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    bottom: -100px;
    right: -50px;
}

.footer-shape--2 {
    width: 150px;
    height: 150px;
    background: rgba(232, 168, 56, 0.05);
    top: 20%;
    left: 5%;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--green-600);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 280px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

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

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--green-400);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--green-700);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 50;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--green-600);
    transform: translateY(-2px);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        order: 1;
    }
    
    .hero-visual {
        height: 400px;
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-subheadline {
        margin: 0 auto 36px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .gallery-item--large {
        grid-column: span 12;
    }
    
    .gallery-item {
        grid-column: span 6;
    }
    
    .gallery-item--wide {
        grid-column: span 12;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-info {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-visual {
        height: 320px;
    }
    
    .hero-img--main {
        width: 220px;
        height: 280px;
        right: 10px;
    }
    
    .hero-img--accent {
        width: 160px;
        height: 200px;
        left: 0;
    }
    
    .hero-img--small {
        width: 100px;
        height: 100px;
        right: 20px;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card--primary,
    .service-card--accent {
        grid-column: 1 / -1;
    }
    
    .about-image-grid {
        height: 400px;
    }
    
    .about-img--1 {
        width: 200px;
        height: 260px;
    }
    
    .about-img--2 {
        width: 180px;
        height: 220px;
    }
    
    .about-img--3 {
        width: 150px;
        height: 150px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large {
        height: 220px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .gallery-item--wide {
        height: 200px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.4rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .back-to-top {
        transition: none;
    }
}
