/* ============================================
   Bedell Automotive — Brand Styles
   Burgundy + Blush | Space Grotesk + Inter
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --burgundy: #8B1A2B;
    --burgundy-deep: #6D1520;
    --burgundy-light: #A82438;
    --blush: #F4C2C2;
    --blush-light: #FDE8E8;
    --blush-pale: #FFF5F5;
    --blush-mid: #F9D4D4;
    --cream: #FFF9F9;
    --dark: #1A0A0E;
    --dark-soft: #2D1518;
    --gray-900: #1C1014;
    --gray-700: #4A3038;
    --gray-500: #7A5560;
    --gray-300: #C4A0A8;
    --gray-100: #F0E0E4;
    --white: #FFFFFF;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 72px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(139, 26, 43, 0.08);
    --shadow-md: 0 8px 30px rgba(139, 26, 43, 0.12);
    --shadow-lg: 0 20px 60px rgba(139, 26, 43, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; }
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--blush-light);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.section-title-accent { color: var(--burgundy); }
.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 560px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(139, 26, 43, 0.3);
}
.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 26, 43, 0.4);
}
.btn-outline {
    background: var(--white);
    color: var(--burgundy);
    border: 2px solid var(--blush);
}
.btn-outline:hover {
    border-color: var(--burgundy);
    background: var(--blush-light);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--burgundy);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(255, 249, 249, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--blush);
    transition: all var(--transition);
}
.nav.scrolled {
    background: rgba(255, 249, 249, 0.95);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
}
.nav-logo-text { letter-spacing: -0.01em; }
.nav-logo-accent { color: var(--burgundy); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition);
    position: relative;
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: width var(--transition);
}
.nav-links a:not(.nav-cta):hover { color: var(--burgundy); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    background: var(--burgundy);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-weight: 600 !important;
    transition: all var(--transition) !important;
}
.nav-cta:hover {
    background: var(--burgundy-deep) !important;
    transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--dark);
    padding: 8px;
}
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-menu-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--blush);
    transition: color var(--transition);
}
.mobile-menu-link:hover { color: var(--burgundy); }
.mobile-menu-cta {
    color: var(--burgundy) !important;
    border-bottom: none !important;
    margin-top: 16px;
}
.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--burgundy);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-pale) 50%, var(--blush-light) 100%);
    display: flex;
    align-items: center;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--blush);
    top: -200px;
    right: -100px;
}
.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--blush-mid);
    bottom: -100px;
    left: -100px;
    opacity: 0.4;
}
.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--burgundy);
    top: 40%;
    left: 30%;
    opacity: 0.08;
}
.hero-shape-4 {
    width: 150px;
    height: 150px;
    background: var(--blush);
    bottom: 20%;
    right: 20%;
    opacity: 0.3;
}
.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 540px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--blush);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 28px;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.08;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}
.hero-title-accent {
    color: var(--burgundy);
    position: relative;
}
.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--blush);
    z-index: -1;
    border-radius: 4px;
}
.hero-desc {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 460px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}
.hero-stat-label {
    font-size: 0.78rem;
    color: var(--gray-500);
}
.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--blush);
}
/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}
.hero-image-wrapper img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--burgundy);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.15;
}
.hero-float-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-float-icon {
    width: 40px;
    height: 40px;
    background: var(--blush-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}
.hero-float-label {
    display: block;
    font-size: 0.72rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-float-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}
/* Geometric decorations */
.hero-geo {
    position: absolute;
    pointer-events: none;
}
.hero-geo-1 {
    width: 80px;
    height: 80px;
    border: 3px solid var(--burgundy);
    opacity: 0.12;
    top: 15%;
    left: 5%;
    transform: rotate(30deg);
}
hero-geo-2 {
    width: 60px;
    height: 60px;
    background: var(--blush);
    opacity: 0.4;
    top: 25%;
    left: 2%;
    border-radius: 8px;
    transform: rotate(45deg);
}
.hero-geo-3 {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--burgundy);
    opacity: 0.08;
    bottom: 20%;
    right: 3%;
    transform: rotate(-15deg);
}
/* Fix: the above had a typo — re-declaring properly */
.hero-geo-2 {
    width: 60px;
    height: 60px;
    background: var(--blush);
    opacity: 0.4;
    top: 25%;
    left: 2%;
    border-radius: 8px;
    transform: rotate(45deg);
}

/* --- Services Section --- */
.services {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}
.services-deco {
    position: absolute;
    pointer-events: none;
}
.services-deco-1 {
    width: 200px;
    height: 200px;
    background: var(--blush-light);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    opacity: 0.5;
}
.services-deco-2 {
    width: 100px;
    height: 100px;
    background: var(--burgundy);
    bottom: 40px;
    left: -30px;
    opacity: 0.06;
    border-radius: 20px;
    transform: rotate(30deg);
}
.services-header {
    text-align: center;
    margin-bottom: 64px;
}
.services-header .section-desc { margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.service-card {
    background: var(--cream);
    border: 1px solid var(--blush);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--burgundy);
    background: var(--white);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--blush-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 20px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--burgundy);
    color: var(--white);
}
.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.service-desc {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--burgundy);
    transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* --- About Section --- */
.about {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--cream);
}
.about-image-secondary img {
    width: 260px;
    height: 180px;
    object-fit: cover;
}
.about-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--burgundy);
    border-radius: var(--radius-md);
    opacity: 0.1;
    transform: rotate(20deg);
}
.about-content { max-width: 480px; }
.about-text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}
.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.about-value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--blush-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}
.about-value-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.about-value-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* --- Why Us Section --- */
.why-us {
    padding: 120px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}
.why-deco {
    position: absolute;
    pointer-events: none;
}
.why-deco-1 {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}
.why-deco-2 {
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    bottom: -40px;
    left: 5%;
    transform: rotate(25deg);
}
.why-us-header {
    text-align: center;
    margin-bottom: 64px;
}
.why-us-header .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--blush);
}
.why-us-header .section-title { color: var(--white); }
.why-us-header .section-title-accent { color: var(--blush); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.why-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.why-card-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.12);
    line-height: 1;
    margin-bottom: 16px;
}
.why-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.why-card-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* --- Reviews Section --- */
.reviews {
    padding: 120px 0;
    background: var(--blush-pale);
    position: relative;
}
.reviews-header {
    text-align: center;
    margin-bottom: 64px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    border: 1px solid var(--blush);
    transition: all var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.review-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}
.review-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-author-avatar {
    width: 40px;
    height: 40px;
    background: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}
.review-author-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--dark);
}
.review-author-location {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* --- CTA Section --- */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
    position: relative;
    overflow: hidden;
}
.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.06);
    top: -80px;
    left: 10%;
}
.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(244,194,194,0.15);
    bottom: -60px;
    right: 15%;
}
.cta-shape-3 {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.05);
    top: 30%;
    right: 5%;
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 40px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact Section --- */
.contact {
    padding: 120px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info { max-width: 460px; }
.contact-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--blush-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}
.contact-detail-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 4px;
}
.contact-detail-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
}
.contact-detail-value:hover { color: var(--burgundy); }
/* Form wrapper */
.contact-form-wrapper { max-width: 500px; }
.contact-form-card {
    background: var(--cream);
    border: 1px solid var(--blush);
    border-radius: var(--radius-xl);
    padding: 40px;
}
.contact-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--blush);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}
.form-input:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(139, 26, 43, 0.1);
}
.form-input::placeholder { color: var(--gray-300); }
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B1A2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-textarea {
    resize: vertical;
    min-height: 100px;
}
/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--blush-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--burgundy);
}
.form-success-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.form-success-text {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* --- Map Section --- */
.map-section {
    background: var(--cream);
}
.map-container {
    width: 100%;
    height: 320px;
    filter: grayscale(30%);
}
.map-container iframe {
    width: 100%;
    height: 100%;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { max-width: 280px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo-text { letter-spacing: -0.01em; }
.footer-logo-accent { color: var(--blush); }
.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--blush); }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    transition: color var(--transition);
    margin-bottom: 12px;
}
.footer-contact-item:hover { color: var(--blush); }
.footer-contact-item svg {
    min-width: 16px;
    margin-top: 3px;
    color: var(--blush);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* --- Scroll animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .hero-image-wrapper img { height: 460px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid .review-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
    .about-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero-grid {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        text-align: center;
    }
    .hero-content { max-width: 100%; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; justify-content: center; }
    .hero-image-wrapper { max-width: 360px; }
    .hero-image-wrapper img { height: 360px; }
    .hero-float-card { left: 50%; transform: translateX(-50%); bottom: -20px; }
    .hero-geo { display: none; }
    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .about { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-secondary { right: 0; }
    .why-us { padding: 80px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .reviews { padding: 80px 0; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-grid .review-card:last-child { grid-column: span 1; max-width: 100%; }
    .cta { padding: 80px 0; }
    .contact { padding: 80px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-card { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .btn { padding: 12px 22px; font-size: 0.9rem; }
}
