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

:root {
    --primary: #2d5a4a;
    --primary-dark: #1e3d32;
    --secondary: #c9a962;
    --accent: #8b6914;
    --text-dark: #1a1a1a;
    --text-light: #5a5a5a;
    --bg-light: #fafaf8;
    --bg-cream: #f5f2eb;
    --bg-sage: #e8ede9;
    --white: #ffffff;
    --border: #e0ddd5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

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

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

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

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

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

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

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

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

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Split Screen Sections */
.split-section {
    display: flex;
    min-height: 100vh;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.split-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 90, 74, 0.1) 0%, transparent 100%);
}

/* Typography */
.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 16px;
}

.heading-xl {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.heading-lg {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.heading-md {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

.heading-sm {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.text-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
}

.text-body {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 74, 0.25);
}

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

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

.btn-accent {
    background: var(--secondary);
    color: var(--text-dark);
}

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

.btn-link {
    background: none;
    padding: 0;
    color: var(--primary);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary);
}

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

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Specific */
.hero-section {
    padding-top: 80px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Services Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 80px 0;
}

.service-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 28px;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

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

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

.service-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card-link:hover {
    color: var(--secondary);
}

/* Full Width Sections */
.section-full {
    padding: 100px 0;
}

.section-full.bg-cream {
    background: var(--bg-cream);
}

.section-full.bg-sage {
    background: var(--bg-sage);
}

.section-full.bg-dark {
    background: var(--primary);
    color: var(--white);
}

.section-full.bg-dark .label {
    color: var(--secondary);
}

.section-full.bg-dark .heading-lg,
.section-full.bg-dark .heading-md {
    color: var(--white);
}

.section-full.bg-dark .text-body,
.section-full.bg-dark .text-lead {
    color: rgba(255,255,255,0.8);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

/* Process Steps */
.process-steps {
    display: flex;
    gap: 32px;
    counter-reset: step;
}

.process-step {
    flex: 1;
    position: relative;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -20px;
    left: 32px;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h4 {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-info h5 {
    font-size: 1rem;
    font-weight: 600;
}

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

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-sage);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* CTA Banner */
.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 80px;
    border-radius: 16px;
    margin: 80px auto;
    max-width: 1200px;
}

.cta-banner-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-banner-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.cta-banner .btn {
    background: var(--secondary);
    color: var(--text-dark);
}

.cta-banner .btn:hover {
    background: var(--white);
}

/* Contact Form */
.form-wrapper {
    max-width: 600px;
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 90, 74, 0.1);
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a5a5a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* Contact Info */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

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

.contact-info-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-sage);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.contact-info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    font-size: 1.75rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--secondary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

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

.footer-legal {
    display: flex;
    gap: 24px;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-light);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.cookie-reject:hover {
    background: var(--bg-light);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(45, 90, 74, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Page Headers */
.page-header {
    padding: 160px 0 80px;
    background: var(--bg-cream);
    text-align: center;
}

.page-header .label {
    margin-bottom: 12px;
}

.page-header .heading-xl {
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page */
.services-page-grid {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 48px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-price {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-sage);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.service-detail-price .price-from {
    font-size: 0.9rem;
}

.service-detail-price .price-value {
    font-size: 1.5rem;
}

.service-includes {
    margin-top: 20px;
}

.service-includes h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-includes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-includes li {
    font-size: 0.95rem;
    color: var(--text-light);
    padding-left: 24px;
    position: relative;
}

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

/* About Page */
.about-intro {
    display: flex;
    gap: 60px;
    padding: 80px 0;
}

.about-intro-content {
    flex: 1;
}

.about-intro-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.values-grid {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.value-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Team Section */
.team-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.team-member {
    flex: 0 0 280px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--bg-sage);
    margin: 0 auto 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.team-member h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-member span {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 500;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 12px;
}

/* Contact Page Layout */
.contact-split {
    display: flex;
    min-height: calc(100vh - 80px);
}

.contact-form-side {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side {
    flex: 1;
    background: var(--bg-cream);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-service {
    background: var(--bg-cream);
    padding: 20px 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    display: inline-block;
}

.thanks-service span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.thanks-service strong {
    display: block;
    font-size: 1.15rem;
    color: var(--primary);
    margin-top: 4px;
}

/* Gallery Grid */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 250px;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 24px 40px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2rem;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 60px 24px;
    }

    .split-visual {
        min-height: 400px;
    }

    .heading-xl {
        font-size: 2.5rem;
    }

    .heading-lg {
        font-size: 2rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
        margin: 60px 24px;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 32px;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: none;
        height: 300px;
    }

    .about-intro {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .team-grid {
        flex-wrap: wrap;
    }

    .contact-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .services-grid {
        padding: 60px 24px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .section-full {
        padding: 60px 0;
    }

    .heading-xl {
        font-size: 2rem;
    }

    .heading-lg {
        font-size: 1.75rem;
    }

    .btn-group {
        flex-direction: column;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .gallery-item {
        flex: 1 1 100%;
    }

    .page-header {
        padding: 120px 24px 60px;
    }
}
