/* ============================================
   Gordon's Wallpaper Installation
   Main Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-primary: #1B2A4A;
    --color-primary-light: #2C3E6B;
    --color-accent: #C4944A;
    --color-accent-light: #D4A85C;
    --color-accent-dark: #A67B3D;
    --color-bg: #FAFAF7;
    --color-bg-alt: #F0EDE8;
    --color-bg-dark: #1B2A4A;
    --color-text: #2D2D2D;
    --color-text-light: #6B6B6B;
    --color-text-on-dark: #F0EDE8;
    --color-white: #FFFFFF;
    --color-border: #E0DCD5;
    --color-error: #ff6b6b;
    --color-star: #D4A85C;

    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

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

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

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

.is-hidden-block {
    display: none !important;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

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

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

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

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

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition);
    padding: 1.1rem 0;
}

.site-header.scrolled {
    background: rgba(27, 42, 74, 0.97);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    min-height: 56px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.25rem;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-menu a:hover {
    color: var(--color-white);
    background: rgba(255,255,255,0.1);
}

.nav-call-item {
    list-style: none;
    margin-left: 0.35rem;
}

.nav-call-link {
    display: block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-sm);
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 6px 18px rgba(196, 148, 74, 0.35);
    transition: all var(--transition);
}

.nav-call-link:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    transform: translateY(-1px);
    color: var(--color-white);
}

.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

/* Mobile nav */
@media (max-width: 768px) {
    .site-header {
        padding: 0.85rem 0;
    }

    .header-inner {
        padding: 0 1rem;
        min-height: 48px;
    }

    .logo {
        gap: 0.6rem;
        min-width: 0;
        max-width: calc(100% - 56px);
    }

    .logo-icon {
        width: 34px;
        height: 34px;
    }

    .logo-text {
        font-size: 1rem;
        line-height: 1.15;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-primary);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right var(--transition);
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        padding: 0.85rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-call-link {
        width: 100%;
        padding: 0.85rem 1rem;
        margin-top: 1rem;
        border: 1px solid var(--color-accent);
        text-align: center;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 420px) {
    .logo-text {
        font-size: 0.9rem;
    }

    .nav-menu {
        width: min(280px, 84vw);
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (min-width: 769px) {
    .nav-cta-desktop {
        display: inline-flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27,42,74,0.85) 0%, rgba(27,42,74,0.6) 50%, rgba(27,42,74,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.hero-text h1 {
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.hero-text .subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-form-card {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-lg);
    text-align: left;
}

.hero-form-card h3 {
    margin-bottom: 1rem;
    text-align: left;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 500;
}

.hero-phone svg {
    width: 18px;
    height: 18px;
}

.hero-phone:hover {
    color: var(--color-accent-light);
}

@media (max-width: 900px) {
    .hero-content {
        padding-top: 7rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;
        padding: 7rem 1rem 3.5rem;
    }

    .hero-text .subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .hero-form-card {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-form-card h3 {
        text-align: center;
    }

    .hero-cta-group {
        width: 100%;
        flex-direction: column;
        gap: 0.85rem;
    }

    .hero-cta-group .btn,
    .hero-phone {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: clamp(1.95rem, 10vw, 2.6rem);
    }

    .container {
        padding: 0 1rem;
    }

    .section-padding,
    .map-section {
        padding: 3.75rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.25rem;
    }
}

/* ============================================
   CONTACT FORM STYLES
   ============================================ */
.feedback-form-container h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

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

.contact-form .form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(196,148,74,0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #A0A0A0;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
    margin-bottom: 0.75rem;
}

.contact-form .form-submit {
    text-align: center;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

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

#form-success {
    text-align: center;
    padding: 2rem 1rem;
}

#form-success p {
    color: var(--color-primary);
    font-size: 1.05rem;
    font-weight: 500;
}

.error-message {
    color: var(--color-error) !important;
    margin-top: 5px;
    font-size: 14px;
}

@media (max-width: 500px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BY THE NUMBERS
   ============================================ */
.numbers {
    background: var(--color-white);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.number-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.number-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.number-card .card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196,148,74,0.1);
    border-radius: 50%;
    color: var(--color-accent);
}

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

.number-card .stat {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.number-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.numbers-tagline {
    text-align: center;
    font-style: italic;
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ============================================
   QUOTE / PAIN-SOLUTION BLOCK
   ============================================ */
.quote-section {
    background: var(--color-bg-alt);
}

.quote-inner {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: center;
}

.quote-portrait {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.quote-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.quote-text {
    position: relative;
    padding-left: 2rem;
}

.quote-text .quote-mark {
    position: absolute;
    top: -10px;
    left: 0;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.3;
}

.quote-text blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--color-primary);
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-text .attribution {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-accent);
    font-weight: 600;
    font-style: normal;
}

@media (max-width: 768px) {
    .quote-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .quote-portrait {
        max-width: 300px;
        margin: 0 auto;
    }

    .quote-text {
        padding-left: 0;
    }

    .quote-text .quote-mark {
        position: static;
        font-size: 3rem;
    }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    background: var(--color-white);
}

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

.service-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

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

.service-card .card-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

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

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: var(--color-bg-alt);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-bottom: 3rem;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.66% + 1rem);
    right: calc(16.66% + 1rem);
    height: 2px;
    background: var(--color-accent);
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    color: var(--color-accent);
    transition: all var(--transition);
}

.step-number svg {
    width: 32px;
    height: 32px;
}

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

.step h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

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

.cta-call-block {
    text-align: center;
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.cta-call-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-phone-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    transition: color var(--transition);
}

.cta-phone-large:hover {
    color: var(--color-accent);
}

.cta-phone-large svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .steps-container::before {
        display: none;
    }

    .cta-call-block {
        padding: 1.75rem 1.25rem;
    }

    .cta-phone-large {
        font-size: 1.35rem;
        line-height: 1.3;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    background: var(--color-white);
}

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

.review-card {
    padding: 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    color: var(--color-star);
}

.review-card .review-text {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

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

/* Mobile carousel */
@media (max-width: 768px) {
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .review-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    background: var(--color-bg-dark);
    color: var(--color-text-on-dark);
}

.why-us h2 {
    color: var(--color-white);
}

.why-us h2::after {
    background: var(--color-accent);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition);
}

.why-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-accent);
}

.why-item .check-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196,148,74,0.15);
    border-radius: 50%;
    color: var(--color-accent);
}

.why-item .check-icon svg {
    width: 16px;
    height: 16px;
}

.why-item-text h3 {
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-family: var(--font-body);
}

.why-item-text p {
    color: rgba(240,237,232,0.75);
    font-size: 0.93rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.55;
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        padding: 1.25rem;
    }
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.service-areas {
    background: var(--color-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.area-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.area-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196,148,74,0.1);
    border-radius: 50%;
    color: var(--color-accent);
}

.area-icon svg {
    width: 22px;
    height: 22px;
}

.area-card h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0;
}

.areas-note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    margin-top: 2rem;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.final-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.final-cta .cta-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.final-cta .cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 2.5rem;
    transition: color var(--transition);
}

.final-cta .cta-phone:hover {
    color: var(--color-accent);
}

.final-cta .cta-phone svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.final-cta .feedback-form-container {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: left;
}

@media (max-width: 768px) {
    .final-cta .cta-phone {
        font-size: 1.25rem;
        line-height: 1.3;
        justify-content: center;
        flex-wrap: wrap;
    }

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
}

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

.footer-grid-2col {
    grid-template-columns: 1.5fr 1fr;
}

.footer-info .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

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

.footer-links h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

.footer-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.footer-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer {
        padding-top: 3rem;
    }
}

/* ============================================
   STICKY CTA BUTTON
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

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

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.sticky-cta-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.sticky-cta-btn svg {
    width: 20px;
    height: 20px;
}

.sticky-cta-btn .btn-text-mobile {
    display: none;
}

@media (max-width: 600px) {
    .sticky-cta {
        right: 1rem;
        bottom: 1rem;
    }

    .sticky-cta-btn .btn-text-desktop {
        display: none;
    }
    .sticky-cta-btn .btn-text-mobile {
        display: inline;
    }
    .sticky-cta-btn {
        padding: 1rem;
        border-radius: 50%;
    }
    .sticky-cta-btn .btn-text-mobile {
        display: none;
    }
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    max-width: 550px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-text);
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--color-error);
    color: var(--color-white);
    border-color: var(--color-error);
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 0.75rem;
    }

    .modal-content {
        padding: 1.25rem;
        max-height: calc(100vh - 1.5rem);
    }

    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .sticky-cta,
    .modal-overlay {
        display: none !important;
    }
}
