/* Modern Tax Master DFW Styles */

:root {
    --primary-color: #1f3b8f;
    --primary-dark: #172f70;
    --secondary-color: #3b82f6;
    --accent-color: #fbbf24;
    --light-color: #f8fafc;
    --light-alt: #eef2ff;
    --text-color: #1f2937;
    --muted-text: #475569;
    --border-color: #e2e8f0;
    --shadow-sm: 0 10px 20px -12px rgba(15, 23, 42, 0.32);
    --shadow-md: 0 20px 35px -18px rgba(15, 23, 42, 0.45);
    --shadow-lg: 0 25px 50px -20px rgba(15, 23, 42, 0.55);
    --gradient-1: linear-gradient(135deg, #1f3b8f 0%, #2563eb 100%);
    --gradient-2: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --primary-contrast: #0f172a;
}

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

html {
    scroll-behavior: smooth;
    background: #ffffff;
}

body {
    font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff;
    overflow-x: hidden;
}

.top-alert {
    background: var(--accent-gradient);
    color: var(--primary-contrast);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.top-alert .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0;
    flex-wrap: wrap;
}

.top-alert-locale {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.22);
    color: var(--primary-contrast);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.locale-icon {
    display: inline-flex;
}

.top-alert-locale svg {
    width: 16px;
    height: 16px;
}

.top-alert-label {
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.top-alert-link {
    color: var(--primary-contrast);
    font-weight: 600;
    text-decoration: underline;
}

.top-alert-link:hover {
    text-decoration: none;
}

.top-alert-note {
    font-weight: 500;
    font-size: 0.82rem;
    opacity: 0.95;
}

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

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

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

section {
    padding: 6rem 0;
    scroll-margin-top: 90px;
}

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    color: var(--primary-dark);
}

.hero .badge {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.shadow-card {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

/* Navigation */
.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.nav-brand .logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

.nav-brand .tagline {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted-text);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    display: flex;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.78rem;
    font-weight: 600;
    color: var(--muted-text);
    letter-spacing: 0;
    line-height: 1.1;
    text-decoration: none;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
    text-align: center;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--primary-dark);
    text-decoration: none;
}

.nav-link:focus-visible {
    outline: 3px solid rgba(251, 191, 36, 0.45);
    outline-offset: 3px;
}

.nav-link::after {
    content: "";
    position: absolute;
    inset: auto 0 -6px;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.nav-link-highlight {
    padding: 0.45rem 1.4rem;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.18);
    color: var(--primary-dark);
    border: 1px solid rgba(251, 191, 36, 0.45);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.15) inset;
}

.nav-link-highlight::after {
    display: none;
}

.nav-link-highlight:hover,
.nav-link-highlight:focus-visible {
    color: var(--primary-dark);
    background: rgba(251, 191, 36, 0.28);
}

@media (max-width: 1180px) {
    .nav-menu > li.nav-item-compact {
        display: none;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.nav-actions .btn-primary {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

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

.nav-toggle span {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.btn:focus-visible {
    outline: 3px solid rgba(251, 191, 36, 0.55);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--primary-contrast);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #f9a826 0%, #ea8a1a 100%);
    text-decoration: none;
}

.btn-outline {
    border-color: rgba(37, 99, 235, 0.22);
    color: var(--primary-dark);
    background: rgba(37, 99, 235, 0.08);
}

.btn-outline:hover {
    border-color: rgba(37, 99, 235, 0.42);
    background: rgba(37, 99, 235, 0.22);
    text-decoration: none;
}

.hero .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-md);
}

.hero .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2.1rem;
    font-size: 1.05rem;
}

/* Hero */
.hero {
    position: relative;
    min-height: 86vh;
    padding-top: 60px;
    display: grid;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.18), transparent 55%),
                radial-gradient(circle at 80% 0%, rgba(24, 58, 148, 0.25), transparent 60%),
                linear-gradient(160deg, #111827 0%, #1f3b8f 55%, #0b1120 100%);
    color: #ffffff;
}

.hero .container {
    display: grid;
    gap: 4rem;
}

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

.hero-title {
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin-bottom: 1.3rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hero-media {
    display: grid;
    gap: 2rem;
}

.hero-visual {
    margin: 0;
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

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

.hero-visual figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.hero-visual figcaption a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: underline;
}

.notice-guide {
    background: var(--light-color);
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.notice-layout {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.notice-content .section-title {
    margin-top: 1rem;
}

.notice-box,
.notice-steps,
.notice-tip {
    margin-top: 2rem;
    padding: 1.6rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 1rem;
}

.notice-box h3,
.notice-steps h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.notice-box ul,
.notice-steps ol {
    display: grid;
    gap: 0.6rem;
    padding-left: 1.2rem;
    color: var(--muted-text);
    font-size: 0.97rem;
}

.notice-tip {
    border-style: dashed;
    color: var(--muted-text);
}

.notice-tip p {
    margin: 0;
}

.notice-steps ol {
    list-style: decimal;
}

.notice-cta {
    padding: 2.2rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 1.2rem;
}

.notice-icon {
    background: var(--gradient-2);
    color: #ffffff;
}

.notice-actions {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    color: var(--muted-text);
    font-size: 0.95rem;
}

.notice-actions a {
    color: var(--secondary-color);
}

.notice-footnote {
    font-size: 0.88rem;
    color: var(--muted-text);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    backdrop-filter: blur(4px);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.hero-highlights .pill {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
}

.hero-highlights .pill:hover,
.hero-highlights .pill:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transform: translateY(-1px);
}

.hero-highlights .pill:focus-visible {
    outline: 3px solid rgba(251, 191, 36, 0.6);
    outline-offset: 3px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
}

.icon-badge svg {
    width: 26px;
    height: 26px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.metric-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.32);
    border: 1px solid rgba(148, 163, 184, 0.24);
    backdrop-filter: blur(6px);
}

.metric-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.metric-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
}

/* Section headings */
.section-header {
    max-width: 700px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-title {
    font-size: clamp(2.1rem, 3.2vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary-dark);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
}

/* Services */
.services {
    background: var(--light-color);
}

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

.service-card {
    padding: 2.2rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: grid;
    gap: 1.4rem;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-2);
    display: grid;
    place-items: center;
    color: #ffffff;
}

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

.process-icon {
    background: var(--accent-gradient);
    color: var(--primary-contrast);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-md);
}

.resource-icon {
    background: var(--gradient-2);
    color: #ffffff;
}

.helpful-icon {
    background: var(--accent-gradient);
    color: var(--primary-contrast);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--muted-text);
    font-size: 0.98rem;
}

.service-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    font-size: 0.95rem;
}

.service-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.service-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    margin-top: 0.45rem;
    flex-shrink: 0;
    background: var(--secondary-color);
}

/* Why choose us */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
}

.value-card {
    padding: 2rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 1rem;
}

.value-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

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

.stats-panel {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.stat-card {
    padding: 1.6rem;
    border-radius: 16px;
    background: var(--light-alt);
    border: 1px solid rgba(79, 70, 229, 0.12);
}

.stat-card h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}

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

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.process-step {
    padding: 2rem;
    border-radius: 18px;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: grid;
    gap: 1rem;
    align-content: start;
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.process-step .step-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.process-step h3 {
    font-size: 1.2rem;
}

.process-step p {
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.95rem;
}

/* Resources */
.resources-section {
    background: var(--light-color);
}

.resource-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    list-style: none;
}

.resource-card {
    padding: 1.6rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.24);
    display: grid;
    gap: 0.8rem;
}

.resource-card h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
}

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

.resource-detail-grid {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.resource-detail {
    padding: 2rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 1rem;
}

.resource-detail h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.resource-detail p {
    color: var(--muted-text);
    font-size: 0.98rem;
}

.resource-detail ul {
    display: grid;
    gap: 0.6rem;
    padding-left: 1.1rem;
    color: var(--muted-text);
}

.resource-detail li {
    line-height: 1.5;
}

.resource-back {
    font-weight: 600;
    font-size: 0.9rem;
}

.helpful-section {
    background: #ffffff;
}

.helpful-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.helpful-card {
    padding: 2.2rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 1.2rem;
}

.helpful-card h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.helpful-card p {
    color: var(--muted-text);
    font-size: 0.98rem;
}

.helpful-card ul {
    display: grid;
    gap: 0.6rem;
    padding-left: 1.1rem;
    color: var(--muted-text);
}

.helpful-card li {
    line-height: 1.5;
}

.helpful-back {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact */
.contact {
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 59, 143, 0.08), rgba(37, 99, 235, 0.08));
    z-index: -1;
}

.contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
    padding: 2.4rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 1.5rem;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.contact-card p {
    color: var(--muted-text);
    font-size: 0.98rem;
}

.contact-details {
    display: grid;
    gap: 1.2rem;
}

.contact-details span {
    font-weight: 600;
    color: var(--primary-dark);
}

.hours-list {
    list-style: none;
    display: grid;
    gap: 0.4rem;
    font-size: 0.96rem;
    color: var(--muted-text);
}

.map-wrapper {
    border-radius: 22px;
    overflow: hidden;
    min-height: 340px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    padding: 3rem 0 2rem;
    background: #0b1120;
    color: rgba(226, 232, 240, 0.75);
}

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

.footer-brand h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.7rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.7);
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.footer-links a {
    color: rgba(226, 232, 240, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 0.8rem;
    text-align: center;
    color: rgba(148, 163, 184, 0.75);
}

/* Responsive */
@media (max-width: 960px) {
    .nav-menu > li.nav-item-compact {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: 62px 0 auto;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(226, 232, 240, 0.7);
        padding: 1.5rem 7vw;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        transform: translateY(-40px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-actions {
        display: none;
    }

    section {
        padding: 4.5rem 0;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-grid {
        gap: 2.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.3rem;
    }

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

    .service-card,
    .value-card,
    .process-step,
    .resource-card,
    .contact-card {
        padding: 1.7rem;
    }

    .map-wrapper {
        min-height: 280px;
    }
}
