/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #fcfbf7;
    --bg-secondary: #f4f1e8;
    --bg-card: #ffffff;
    --bg-card-hover: #f9f7f0;
    --text-primary: #1c1a17;
    --text-secondary: #423f38;
    --text-muted: #6e6b62;
    --accent: #8b6d51;
    --accent-hover: #6e543c;
    --border: #dfd9cb;
    --border-light: #eae5d9;
    --nav-bg: #ffffff;
    --top-bar-bg: #f4f1e8;
    --btn-bg: #1c1a17;
    --btn-border: #1c1a17;
    --hero-text-title: #1c1a17;
    --hero-text-desc: #423f38;
    --overlay-gradient: linear-gradient(135deg, rgba(252,251,247,0.85) 0%, rgba(252,251,247,0.55) 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.06);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 6px;
    --transition: 0.3s ease;
    --max-width: 1240px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    font-size: 17px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Rendering Performance Optimizations */
.services, .gallery-section, .about-section, .contact-section, .footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
}

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

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--top-bar-bg);
    border-bottom: 1px solid var(--border-light);
    padding: 0.6rem 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.top-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-item svg { flex-shrink: 0; }

/* ===== HEADER / NAV ===== */
.header {
    background: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled { box-shadow: var(--shadow-md); }

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

.logo img {
    height: 156px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    padding: 0.6rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active { color: var(--accent); }

.nav-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.dropdown-item:hover {
    color: var(--text-primary);
    background: rgba(0,0,0,0.04);
}

body.dark .dropdown-item:hover { background: rgba(255,255,255,0.04); }

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-cta {
    font-size: 0.8rem !important;
    padding: 0.6rem 1.4rem !important;
    letter-spacing: 0.08em;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
}

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

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

body.dark .btn-primary:hover {
    color: #000000;
    box-shadow: 0 4px 16px rgba(249,115,22,0.25);
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover { border-color: var(--accent); }

.theme-icon {
    position: absolute;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.theme-icon.sun { color: #fbbf24; opacity: 0; transform: rotate(90deg) scale(0.5); }
.theme-icon.moon { color: #94a3b8; opacity: 1; transform: rotate(0deg) scale(1); }
body.dark .theme-icon.sun { opacity: 1; transform: rotate(0deg) scale(1); }
body.dark .theme-icon.moon { opacity: 0; transform: rotate(-90deg) scale(0.5); }

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: flex;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 110px);
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 1.5rem 1.5rem 3rem 1.5rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

.mobile-link {
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-main);
    cursor: pointer;
}

.mobile-submenu-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.open .mobile-submenu-items { max-height: 500px; }

.mobile-submenu.open .mobile-submenu-toggle svg { transform: rotate(180deg); }

.mobile-sublink {
    display: block;
    padding: 0.7rem 0 0.7rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5rem 0;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,20,18,0.72) 0%, rgba(20,20,18,0.42) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

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

.hero-tagline {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #e5be9e;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.08;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    margin-bottom: 1.75rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero-feature-item svg {
    color: #e5be9e;
    flex-shrink: 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.about-feature-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Embedded Hero Form Card */
.hero-form-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
}

.hero-form-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.hero-form-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Consent Checkboxes */
.form-consent-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.85rem;
    margin-bottom: 1.25rem;
}

.consent-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.consent-checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--accent);
}

.consent-checkbox-item label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 500;
}

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

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,20,18,0.75) 0%, rgba(20,20,18,0.45) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-hero-content .hero-tagline {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #e5be9e;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.page-hero-content .hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    margin-bottom: 1rem;
}

.page-hero-content .hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    max-width: 640px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 1rem 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumb-inner a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

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

.breadcrumb-sep { color: var(--text-muted); }

.breadcrumb-current { color: var(--accent); }

/* ===== SECTION LABELS ===== */
.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.center { text-align: center; }
.center + .center { margin-left: auto; margin-right: auto; }

/* ===== SERVICES ===== */
.services {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: all var(--transition);
    cursor: default;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

a.service-card { cursor: pointer; }

.service-icon {
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.service-icon svg { stroke: var(--accent); }

/* Related Services Thumbnail Images */
.service-card-thumb {
    width: 100%;
    height: 165px;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    position: relative;
    background: var(--bg-secondary);
}

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

.service-card:hover .service-card-thumb img {
    transform: scale(1.06);
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-card:hover .service-card-link { gap: 0.7rem; }

/* ===== ABOUT ===== */
.about {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.about-image-wrap { position: relative; }

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    background: var(--bg-primary);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-text em {
    color: var(--text-primary);
    font-style: italic;
}

.about-content .btn { margin-top: 1rem; }

/* ===== PAGE CONTENT (inner pages) ===== */
.page-content {
    padding: 2.5rem 0 4.5rem;
    background: var(--bg-primary);
}

.page-content .container {
    max-width: 1440px;
}

.page-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.page-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.75rem 0 0.75rem;
    color: var(--text-primary);
}

.page-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.page-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.page-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.page-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin: 2rem 0;
}

.page-content-grid:first-child {
    margin-top: 0;
}

.page-content-grid-text > h1:first-child,
.page-content-grid-text > h2:first-child,
.page-content-grid-text > h3:first-child {
    margin-top: 0;
}

.page-content-grid-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.page-content-grid img {
    width: 100%;
    height: auto;
    min-height: 340px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.page-content-image {
    width: 100%;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    max-height: 520px;
    object-fit: cover;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.68) 50%, rgba(255,255,255,0.3) 100%);
}

body.dark .cta-banner-overlay {
    background: linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.68) 50%, rgba(255,255,255,0.3) 100%);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    max-width: 540px;
}

.cta-banner-content .section-label { color: var(--accent); font-weight: 800; }
.cta-banner-content .section-title { color: var(--text-primary); font-weight: 900; }

.cta-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* ===== INLINE CTA (for inner pages) ===== */
.inline-cta {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.inline-cta h2 {
    margin-top: 0 !important;
    font-size: 1.5rem !important;
}

.inline-cta p {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.reviews .section-label,
.reviews .section-title { text-align: center; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

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

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--border-light);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

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

/* ===== GALLERY ===== */
.gallery {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.gallery .section-label,
.gallery .section-title { text-align: center; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 0.75rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CONTACT ===== */
.contact {
    padding: 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 100%;
    padding: 0;
}

.contact .container {
    max-width: 100%;
    padding: 0;
}

.contact-map {
    min-height: 600px;
    background: var(--bg-card);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: none;
}

.contact-form-wrap {
    padding: 4rem 3rem;
    max-width: 560px;
}

.contact-intro {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 0.9rem) center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

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

.form-submit { align-self: flex-start; margin-top: 0.25rem; }

/* ===== RELATED SERVICES ===== */
.related-services {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.related-services .section-label,
.related-services .section-title { text-align: center; }

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--top-bar-bg);
    padding: 4rem 0 0;
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    height: 180px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #1c1a17;
    font-weight: 500;
    line-height: 1.65;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1c1a17;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.footer-links a,
.footer-links p {
    display: block;
    font-size: 0.93rem;
    color: #1c1a17;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 2rem;
}

.footer-bottom p { font-size: 0.9rem; color: #1c1a17; font-weight: 600; }

/* ===== CHAT WIDGET ===== */
.chat-prompt {
    position: fixed;
    bottom: 6.2rem;
    right: 1.5rem;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 0.75rem 1.1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    max-width: 280px;
    cursor: pointer;
}

.chat-prompt::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transform: rotate(45deg);
}

.chat-prompt-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition);
}

.chat-prompt-close:hover {
    color: var(--text-primary);
}

@keyframes popIn {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-bubble {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(249,115,22,0.35);
    z-index: 2000;
    transition: all 0.3s ease;
}

.chat-bubble:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(249,115,22,0.5);
}

.chat-bubble-icon { stroke: #fff; transition: all 0.3s ease; }
.chat-bubble-close { stroke: #fff; position: absolute; opacity: 0; transition: all 0.3s ease; transform: rotate(-90deg) scale(0.5); }

.chat-bubble.active .chat-bubble-icon { opacity: 0; transform: rotate(90deg) scale(0.5); }
.chat-bubble.active .chat-bubble-close { opacity: 1; transform: rotate(0deg) scale(1); }

.chat-panel {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    width: 380px;
    max-height: 520px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-panel-header {
    background: linear-gradient(135deg, #0b1120, #1a2332);
    padding: 1.25rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-primary);
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chat-header-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.15rem;
}

.chat-header-status {
    font-size: 0.72rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.chat-status-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.chat-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 4px;
    border-radius: 50%;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }

.chat-panel-body {
    padding: 1.25rem;
    overflow-y: auto;
    flex: 1;
}

.chat-msg {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.55;
}

.chat-msg-bot {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-bottom-left-radius: 4px;
}

.chat-msg p { margin-bottom: 0; color: inherit; }

.chat-form {
    margin-top: 0.75rem;
}

.chat-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.chat-input,
.chat-textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 0.83rem;
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition);
    resize: none;
}

.chat-input::placeholder,
.chat-textarea::placeholder { color: var(--text-muted); }

.chat-input:focus,
.chat-textarea:focus { border-color: var(--accent); }

.chat-send-btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.83rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition);
}

.chat-send-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(146,64,14,0.3);
}

.chat-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.chat-success { animation: fadeInUp 0.4s ease; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.5s; }

.reviews-grid .review-card:nth-child(1) { transition-delay: 0s; }
.reviews-grid .review-card:nth-child(2) { transition-delay: 0.15s; }
.reviews-grid .review-card:nth-child(3) { transition-delay: 0.3s; }

.gallery-grid .gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.16s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.24s; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 0.32s; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid,
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 3rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .page-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav { display: none; }
    .header-inner { min-height: 110px; padding: 0.5rem 1rem; }
    .logo img { height: 95px; }
    .footer-logo { height: 120px; }
    .header-cta { display: none !important; }
    .mobile-toggle { display: flex !important; cursor: pointer !important; z-index: 10001 !important; }
    
    /* MOBILE MENU: POSITIONED CLEANLY BELOW MOBILE HEADER BAR */
    .mobile-menu {
        top: 110px !important;
        padding: 1.5rem 1.25rem 3rem 1.25rem !important;
        background: var(--bg-secondary) !important;
        z-index: 9999 !important;
        height: calc(100vh - 110px) !important;
        overflow-y: auto !important;
    }
    
    /* HERO SECTION STACKED AND SIZED PROPERLY ON MOBILE */
    .hero {
        min-height: auto !important;
        height: auto !important;
        padding: 2.5rem 0 3.5rem 0 !important;
    }
    .hero-container {
        padding: 0 1rem !important;
        width: 100% !important;
    }
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
    }
    .hero-content {
        margin-left: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .hero-title {
        font-size: 1.9rem !important;
        line-height: 1.15 !important;
    }
    .hero-description {
        font-size: 0.95rem !important;
        margin-bottom: 1.25rem !important;
    }
    .hero-form-card {
        padding: 1.5rem 1.1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-top: 0.5rem !important;
    }
    .hero-form-title {
        font-size: 1.25rem !important;
    }
    .hero-form-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }

    /* FORM USABILITY & EXPANDED RESPONSIVE LAYOUT */
    .contact-form-wrap,
    .booking-form-grid,
    .booking-calendar-container,
    .contact-form {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .contact-form-wrap {
        padding: 1.5rem 1rem !important;
    }
    .booking-form-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .form-row {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
        width: 100% !important;
    }
    .form-group {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .form-group input,
    .form-group select,
    .form-group textarea,
    .form-row input,
    .form-row select {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important; /* Prevents auto-zoom on mobile */
    }
    .consent-checkbox-item {
        align-items: flex-start !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }
    .consent-checkbox-item label {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        max-width: calc(100% - 28px) !important;
    }
    .btn, .form-submit, .btn-primary {
        white-space: normal !important;
        word-break: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 0.88rem !important;
        padding: 0.85rem 0.5rem !important;
        box-sizing: border-box !important;
    }
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    .time-slot-btn {
        font-size: 0.85rem !important;
        padding: 0.65rem 0.4rem !important;
    }

    /* CHAT BUBBLE POSITIONED SAFELY BELOW FORMS */
    .chat-bubble {
        width: 48px !important;
        height: 48px !important;
        bottom: 1rem !important;
        right: 1rem !important;
        z-index: 100 !important;
    }
    .chat-prompt {
        display: none !important;
    }

    .services-grid,
    .related-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { height: 320px; }
    .about-image-wrap::before { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 350px; }
    .contact-map iframe { min-height: 350px; }
    .footer-inner { grid-template-columns: 1fr; }
    .section-title { font-size: 1.7rem; }
    .cta-banner { min-height: 420px; }
    .cta-banner-content { max-width: 100%; }
    .chat-panel { width: calc(100vw - 2rem); right: 1rem; bottom: 4.5rem; max-height: 75vh; }
    .page-hero { min-height: 280px; }
    .inline-cta { padding: 2rem 1.25rem; }
}

@media (max-width: 480px) {
    .hero { min-height: auto !important; height: auto !important; }
    .hero-title { font-size: 1.65rem !important; }
    .gallery-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.45rem; }
    .chat-panel { max-height: 80vh; }
}

/* ===== INTERACTIVE BOOKING CALENDAR WIDGET ===== */
.booking-calendar-container {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.calendar-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: capitalize;
}

.cal-nav-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.cal-nav-btn:hover:not(:disabled) {
    background: var(--btn-bg);
    color: #ffffff;
    border-color: var(--btn-bg);
}

.cal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.cal-day:hover:not(.disabled):not(.empty) {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-1px);
}

.cal-day.today {
    font-weight: 800;
    border: 2px solid var(--accent);
}

.cal-day.selected {
    background: var(--btn-bg) !important;
    color: #ffffff !important;
    border-color: var(--btn-bg) !important;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.cal-day.disabled {
    opacity: 0.3;
    background: transparent;
    border-color: transparent;
    color: var(--text-muted);
    cursor: not-allowed;
}

.cal-day.empty {
    background: transparent;
    border-color: transparent;
    cursor: default;
}

/* Time Slots Grid */
.time-slots-section {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--border);
}

.time-slots-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.6rem;
}

.time-slot-btn {
    padding: 0.75rem 0.6rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.time-slot-btn:hover:not(.selected) {
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.time-slot-btn.selected {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* Selection Summary Badge */
.booking-selection-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(150, 148, 136, 0.12);
    border: 1px solid var(--accent);
    border-radius: 6px;
    margin-top: 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== SERVICE PAGE PHOTO GALLERY & SHOWCASE ===== */
.service-photo-gallery {
    margin: 3rem 0;
}

.service-photo-gallery-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.service-photo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-photo-img-wrap {
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
}

.service-photo-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-photo-card:hover .service-photo-img {
    transform: scale(1.03);
}

.service-photo-caption {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* ===== BOOKING FORM 2-COLUMN SIDE-BY-SIDE LAYOUT ===== */
.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UNIFORM SERVICE CARD IMAGE RATIO ===== */
.service-card-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    background: var(--bg-secondary);
}

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

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

/* ===== GREENE HAVEN HOMES PARTNERSHIP SECTION ===== */
.partnership-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(150, 148, 136, 0.15);
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.partnership-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.partnership-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.partnership-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.partnership-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.partnership-feature-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.partnership-image-stack {
    position: relative;
}

.partnership-img-main {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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