/* ============================================
   ONE PRO WALLPAPER HANGERS TEAM
   Design System: Contemporary Mountain Modern
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
    --color-primary-bg: #5C3D2E;
    --color-secondary-bg: #6B7B6E;
    --color-light: #FDF8F0;
    --color-text-light: #FAF5ED;
    --color-text-dark: #2C1E14;
    --color-accent: #B87333;
    --color-accent-hover: #9A5F28;
    --color-accent-light: #D4956A;
    --color-warm-shadow: rgba(92, 61, 46, 0.15);
    --color-card-bg: #FFFFFF;
    --color-border: rgba(184, 115, 51, 0.3);
    --font-heading: 'Recoleta', Georgia, serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(44, 30, 20, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 30, 20, 0.12);
    --shadow-lg: 0 8px 40px rgba(44, 30, 20, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background: var(--color-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--color-accent-hover);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-text-dark);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

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

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

.btn-secondary:hover {
    background: var(--color-accent);
    color: #fff;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--color-primary-bg);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--color-text-light);
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--color-accent-light);
}

/* --- Header --- */
.site-header {
    background: var(--color-light);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary-bg);
    font-weight: 700;
    white-space: nowrap;
}

.logo:hover {
    color: var(--color-accent);
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.header-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 30, 20, 0.85) 0%, rgba(44, 30, 20, 0.5) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.hero-content h2 {
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
    color: var(--color-accent-light);
}

.badge-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- Page Hero --- */
.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.page-hero .hero-overlay {
    background: rgba(44, 30, 20, 0.75);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-hero-subtitle {
    color: var(--color-text-light);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* --- Forms --- */
.feedback-form-container {
    background: var(--color-card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.feedback-form-container h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-primary-bg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #E0D6CC;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: #FDFCFA;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 0.5rem;
}

.submit-btn {
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

#form-success,
.modal-form-success {
    text-align: center;
    padding: 2rem;
    color: var(--color-secondary-bg);
    font-weight: 500;
}

/* --- Sections --- */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background: #F5EFE7;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: #6B5B4F;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #5A4A3E;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* --- Commercial Block --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-card-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(184, 115, 51, 0.1);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

/* --- Residential / Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3,
.service-card p {
    padding: 0 1.5rem;
}

.service-card h3 {
    padding-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    padding-bottom: 1.5rem;
    color: #5A4A3E;
    font-size: 0.95rem;
}

.value-props {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.value-props span {
    background: var(--color-primary-bg);
    color: var(--color-text-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* --- Portfolio --- */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--color-text-dark);
    border: 1.5px solid #D4C5B9;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* --- Before/After Slider --- */
.before-after-section {
    margin-top: 4rem;
    text-align: center;
}

.before-after-section h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.ba-sliders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 4px solid var(--color-accent);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
    cursor: ew-resize;
}

.ba-image {
    position: absolute;
    inset: 0;
}

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

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-after {
    z-index: 1;
}

.ba-label {
    position: absolute;
    bottom: 12px;
    padding: 6px 14px;
    background: rgba(44, 30, 20, 0.8);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 5;
}

.ba-before .ba-label {
    left: 12px;
}

.ba-after .ba-label {
    right: 12px;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--color-accent);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
}

.ba-handle-line {
    flex: 1;
    width: 3px;
    background: var(--color-accent);
}

.ba-handle-circle {
    width: 44px;
    height: 44px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: var(--shadow-md);
}

/* --- Process Section --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.95rem;
    color: #5A4A3E;
}

/* --- Reviews --- */
.reviews-widget {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--color-card-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
}

.review-stars {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    color: #5A4A3E;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--color-primary-bg);
    font-size: 0.9rem;
}

.yelp-link {
    text-align: center;
    margin-top: 2rem;
}

.yelp-link a {
    font-weight: 600;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 2px;
}

/* --- SEO Content --- */
.seo-content {
    background: var(--color-primary-bg);
    color: var(--color-text-light);
}

.seo-content h2 {
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.seo-text {
    max-width: 900px;
    margin: 0 auto;
    columns: 2;
    column-gap: 3rem;
}

.seo-text p {
    color: rgba(250, 245, 237, 0.9);
    font-size: 0.95rem;
    break-inside: avoid;
}

/* --- About Page --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.values-list {
    margin: 1rem 0 1.5rem 1.5rem;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    list-style: disc;
    color: #5A4A3E;
}

.about-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
}

/* --- Stats --- */
.stats-section {
    background: var(--color-primary-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 1.1rem;
}

/* --- Team --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.credentials {
    max-width: 700px;
    margin: 2rem auto 0;
    text-align: center;
    color: #5A4A3E;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {
    background: var(--color-primary-bg);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    color: var(--color-text-light);
}

.contact-info-card h2 {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h3 {
    color: var(--color-accent-light);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-detail p {
    color: rgba(250, 245, 237, 0.9);
}

.contact-detail a {
    color: var(--color-text-light);
}

.contact-detail a:hover {
    color: var(--color-accent-light);
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-card-bg);
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
}

.faq-question {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary-bg);
}

.faq-answer p {
    color: #5A4A3E;
    font-size: 0.98rem;
}

/* --- Service Detail Pages --- */
.service-detail-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-text h2 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-detail-text h2:first-child {
    margin-top: 0;
}

.service-detail-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary-bg);
}

.service-detail-sidebar {
    position: sticky;
    top: 120px;
}

.service-detail-sidebar img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.sidebar-cta {
    background: var(--color-primary-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 2rem;
}

.sidebar-cta h3 {
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.sidebar-cta p {
    color: rgba(250, 245, 237, 0.85);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.sidebar-services {
    background: var(--color-card-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.sidebar-services h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sidebar-services a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #EDE5DC;
    font-size: 0.95rem;
}

.sidebar-services a:last-child {
    border-bottom: none;
}

/* --- Services Overview --- */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-overview-card {
    display: block;
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    color: var(--color-text-dark);
}

.service-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: var(--color-text-dark);
}

.service-overview-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-overview-card h2 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.service-overview-card p {
    padding: 0 1.5rem;
    color: #5A4A3E;
    font-size: 0.95rem;
}

.card-link {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* --- Areas Grid --- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.area-card {
    display: block;
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    color: var(--color-text-dark);
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--color-text-dark);
}

.area-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.area-card h2 {
    padding: 1rem 1.5rem 0.25rem;
    font-size: 1.3rem;
}

.area-card p {
    padding: 0 1.5rem 1.5rem;
    color: #5A4A3E;
    font-size: 0.9rem;
}

/* --- Footer --- */
.site-footer {
    background: var(--color-primary-bg);
    padding: 4rem 0 0;
    color: var(--color-text-light);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-col h3 {
    color: var(--color-accent-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(250, 245, 237, 0.8);
    font-size: 0.9rem;
}

.footer-col a {
    display: block;
    color: rgba(250, 245, 237, 0.8);
    font-size: 0.9rem;
    padding: 4px 0;
}

.footer-col a:hover {
    color: var(--color-accent-light);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(250, 245, 237, 0.15);
    text-align: center;
}

.footer-bottom p {
    color: rgba(250, 245, 237, 0.6);
    font-size: 0.85rem;
}

/* --- Sticky Quote Button --- */
.sticky-quote-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.sticky-quote-btn .btn {
    box-shadow: var(--shadow-lg);
    padding: 14px 28px;
    font-size: 0.95rem;
}

/* --- Modal --- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 30, 20, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-text-dark);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar {
        position: static;
    }

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

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .seo-text {
        columns: 1;
    }

    .ba-sliders {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 4px;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid #EDE5DC;
        justify-content: center;
    }

    .header-cta {
        order: 2;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .sticky-quote-btn {
        bottom: 16px;
        right: 50%;
        transform: translateX(50%);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .trust-badges {
        flex-direction: column;
    }

    .feedback-form-container {
        padding: 1.5rem;
    }
}
