/* ============================================
   J.L. Williamson Law Group — Stylesheet
   Classic & Elegant Legal Website
   ============================================ */

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

:root {
    --forest-dark: #0B1F12;
    --forest: #1B4332;
    --forest-mid: #2D6A4F;
    --forest-light: #40916C;
    --forest-pale: #52B788;
    --cream: #F5F5DC;
    --cream-light: #FAFAF0;
    --cream-dark: #E8E8D0;
    --gold: #B8860B;
    --gold-light: #D4A843;
    --text-dark: #1A1A1A;
    --text-mid: #3D3D3D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(11, 31, 18, 0.08);
    --shadow-md: 0 8px 30px rgba(11, 31, 18, 0.12);
    --shadow-lg: 0 20px 60px rgba(11, 31, 18, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream-light);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    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;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

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

.btn-secondary:hover {
    background: var(--forest);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-outline:hover {
    background: var(--cream);
    color: var(--forest);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.9375rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
}

/* ---------- Section Labels ---------- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest-light);
    margin-bottom: 16px;
}

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

.section-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--forest), var(--forest-light));
    margin-top: 20px;
}

.section-line.light {
    background: linear-gradient(90deg, var(--cream), rgba(245, 245, 220, 0.5));
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    color: var(--forest);
}

.logo-icon {
    color: var(--gold-light);
}

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

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 245, 220, 0.85);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text-mid);
}

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

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

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

.navbar.scrolled .nav-link:hover {
    color: var(--forest);
}

.nav-cta {
    padding: 10px 24px;
    background: rgba(245, 245, 220, 0.12);
    border: 1px solid rgba(245, 245, 220, 0.3);
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--cream);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.navbar.scrolled .nav-cta {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--cream);
}

.navbar.scrolled .nav-cta:hover {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--forest);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--forest-dark) 0%,
        var(--forest) 25%,
        var(--forest-mid) 50%,
        var(--forest-light) 75%,
        var(--forest-pale) 100%
    );
    background-size: 300% 300%;
    animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--cream) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--cream) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-ornament {
    color: var(--gold-light);
    margin-bottom: 32px;
    opacity: 0.8;
    animation: fadeInDown 1s ease forwards;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 600;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.0625rem, 2vw, 1.3125rem);
    font-weight: 400;
    color: rgba(245, 245, 220, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

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

.trust-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-light);
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 245, 220, 0.65);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(245, 245, 220, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 245, 220, 0.5);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.2s forwards;
    opacity: 0;
}

.hero-scroll svg {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-24px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header.light .section-label {
    color: var(--gold-light);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest), var(--forest-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

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

.service-title {
    font-size: 1.375rem;
    color: var(--forest);
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--forest);
    gap: 10px;
}

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

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

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--forest-light);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.3;
}

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

.about-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--forest);
    flex-shrink: 0;
}

.value-item span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--forest);
}

/* ---------- Approach Section ---------- */
.approach {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--cream) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--cream) 1px, transparent 1px);
    background-size: 80px 80px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.approach-step {
    text-align: center;
    padding: 32px 20px;
}

.step-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(245, 245, 220, 0.12);
    margin-bottom: 16px;
    line-height: 1;
}

.step-title {
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.875rem;
    color: rgba(245, 245, 220, 0.7);
    line-height: 1.7;
}

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

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

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.testimonial-quote {
    color: var(--forest-light);
    opacity: 0.4;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--forest);
}

.author-location {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ---------- CTA Section ---------- */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--forest-mid) 0%,
        var(--forest) 50%,
        var(--forest-dark) 100%
    );
}

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

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

.cta-text {
    font-size: 1.0625rem;
    color: rgba(245, 245, 220, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

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

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

.contact-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 40px;
}

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

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

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

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--forest);
}

.contact-value:hover {
    color: var(--forest-light);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--cream-light);
    border-radius: 12px;
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

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

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid var(--cream-dark);
    border-radius: 6px;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--forest-light);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

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

.form-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 16px;
}

/* Success message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    color: var(--forest-light);
    margin-bottom: 20px;
}

.success-title {
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 12px;
}

.success-text {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ---------- Map Section ---------- */
.map-section {
    background: var(--cream-dark);
}

.map-container {
    height: 400px;
    overflow: hidden;
}

.map-container iframe {
    filter: saturate(0.6) contrast(1.1);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: saturate(0.8) contrast(1.05);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--forest-dark);
    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(245, 245, 220, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(245, 245, 220, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(245, 245, 220, 0.6);
}

.footer-links a:hover {
    color: var(--cream);
    padding-left: 4px;
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(245, 245, 220, 0.6);
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(245, 245, 220, 0.6);
}

.footer-contact a:hover {
    color: var(--cream);
}

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

.copyright {
    font-size: 0.8125rem;
    color: rgba(245, 245, 220, 0.4);
}

.disclaimer {
    font-size: 0.75rem;
    color: rgba(245, 245, 220, 0.3);
    max-width: 500px;
    text-align: right;
    line-height: 1.6;
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--forest-dark);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-link {
        color: var(--cream) !important;
        font-size: 1rem;
    }
    
    .nav-cta {
        background: var(--gold) !important;
        border-color: var(--gold) !important;
        color: var(--white) !important;
        text-align: center;
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-divider {
        width: 40px;
        height: 1px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-accent {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer {
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .services,
    .about,
    .approach,
    .testimonials,
    .contact {
        padding: 80px 0;
    }
    
    .service-card {
        padding: 32px 24px;
    }
}

/* ---------- Mobile menu overlay ---------- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
