/* ============================================
   CORE GROUP — Brand Stylesheet
   Burgundy + Blush | Geometric Modern
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --burgundy: #7B1E2B;
    --burgundy-dark: #5C161E;
    --burgundy-deep: #3D0F15;
    --blush: #F4C2C2;
    --blush-light: #FDE8E8;
    --blush-pale: #FFF5F5;
    --blush-muted: #E8A0A0;
    --cream: #FFF9F9;
    --white: #FFFFFF;
    --off-white: #FEF6F6;
    --charcoal: #1A1A1A;
    --dark: #2D2D2D;
    --gray: #6B6B6B;
    --gray-light: #9A9A9A;
    --gray-pale: #E8E8E8;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(123, 30, 43, 0.08);
    --shadow-md: 0 8px 30px rgba(123, 30, 43, 0.12);
    --shadow-lg: 0 20px 60px rgba(123, 30, 43, 0.15);
    --shadow-xl: 0 30px 80px rgba(123, 30, 43, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    color: var(--charcoal);
}

.accent-text {
    color: var(--burgundy);
}

.accent-text-light {
    color: var(--blush);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.938rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
    box-shadow: 0 4px 20px rgba(123, 30, 43, 0.3);
}

.btn-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 30, 43, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.btn-outline:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: var(--blush-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 249, 249, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 30, 43, 0.08);
    transition: var(--transition);
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--burgundy);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.logo:hover .logo-mark {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.logo-light .logo-mark {
    background: var(--blush);
    color: var(--burgundy);
}

.logo-light .logo-text {
    color: var(--white);
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    padding: 8px 16px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--burgundy);
    background: var(--blush-pale);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* --- Mobile Overlay --- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-pale) 50%, var(--blush-light) 100%);
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.geo-shape {
    position: absolute;
    opacity: 0.15;
}

.geo-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--burgundy);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    background: var(--blush);
    border-radius: 50%;
    bottom: 10%;
    left: -80px;
}

.geo-circle-3 {
    width: 150px;
    height: 150px;
    background: var(--burgundy);
    border-radius: 50%;
    top: 40%;
    right: 15%;
    opacity: 0.1;
}

.geo-tri-1 {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid var(--blush);
    top: 20%;
    left: 5%;
    opacity: 0.2;
    transform: rotate(15deg);
}

.geo-tri-2 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--burgundy);
    bottom: 20%;
    right: 8%;
    opacity: 0.12;
    transform: rotate(-20deg);
}

.geo-rect-1 {
    width: 200px;
    height: 80px;
    background: var(--burgundy);
    top: 30%;
    right: 5%;
    opacity: 0.08;
    transform: rotate(45deg);
    border-radius: var(--radius-sm);
}

.geo-rect-2 {
    width: 120px;
    height: 120px;
    background: var(--blush);
    bottom: 30%;
    left: 15%;
    opacity: 0.12;
    transform: rotate(30deg);
    border-radius: var(--radius-md);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--burgundy);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-headline .accent-text {
    display: block;
    color: var(--burgundy);
    font-style: italic;
    font-weight: 700;
}

.hero-subheadline {
    font-size: clamp(1.063rem, 2vw, 1.25rem);
    color: var(--gray);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.813rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: var(--blush-muted);
    border-radius: 2px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--burgundy), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

.section-tag {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--burgundy);
    margin-bottom: 16px;
    position: relative;
    padding: 0 16px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--blush-muted);
}

.section-tag::before { left: -16px; }
.section-tag::after { right: -16px; }

.section-tag-light {
    color: var(--blush);
}

.section-tag-light::before,
.section-tag-light::after {
    background: rgba(244, 194, 194, 0.4);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.063rem;
    color: var(--gray);
    line-height: 1.7;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Services Section --- */
.services {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid rgba(123, 30, 43, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--blush-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--burgundy);
    color: var(--white);
    transform: scale(1.05) rotate(-3deg);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.service-desc {
    font-size: 0.938rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--burgundy);
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* Section decorative shapes */
.section-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
}

.decor-circle-1 {
    width: 300px;
    height: 300px;
    background: var(--blush-pale);
    bottom: -100px;
    right: -80px;
    opacity: 0.6;
}

.decor-circle-2 {
    width: 150px;
    height: 150px;
    background: var(--burgundy);
    top: 10%;
    left: -50px;
    opacity: 0.05;
}

.decor-tri {
    position: absolute;
    width: 0;
    height: 0;
}

.decor-tri-1 {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--blush);
    top: 20%;
    right: 5%;
    opacity: 0.15;
    transform: rotate(-15deg);
}

/* --- About Section --- */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

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

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

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--white);
}

.about-image-accent img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.about-experience-badge .exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.about-experience-badge .exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1.063rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--blush-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--burgundy);
    color: var(--white);
}

.value-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.value-desc {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
}

/* --- Process Section --- */
.process {
    padding: 120px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.process-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.proc-geo {
    position: absolute;
    opacity: 0.06;
}

.proc-geo-1 {
    width: 400px;
    height: 400px;
    background: var(--white);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.proc-geo-2 {
    width: 250px;
    height: 250px;
    background: var(--blush);
    border-radius: 50%;
    bottom: -80px;
    right: 10%;
}

.proc-geo-3 {
    width: 120px;
    height: 120px;
    background: var(--white);
    top: 30%;
    right: 5%;
    transform: rotate(45deg);
    border-radius: var(--radius-sm);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.step-content {
    padding: 24px 0;
}

.step-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    top: 50px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--blush);
    border-radius: 50%;
}

/* --- Testimonials Section --- */
.testimonials {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush), var(--burgundy));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(123, 30, 43, 0.06);
}

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

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--blush);
    position: absolute;
    top: 16px;
    left: 28px;
    pointer-events: none;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--blush-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.author-name {
    display: block;
    font-weight: 700;
    font-size: 0.938rem;
    color: var(--charcoal);
}

.author-location {
    display: block;
    font-size: 0.813rem;
    color: var(--gray-light);
}

/* --- CTA Section --- */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, #9B2D3D 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    opacity: 0.08;
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--blush);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--white);
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--blush);
    top: 40%;
    left: 20%;
    transform: rotate(45deg);
    border-radius: var(--radius-sm);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Contact Section --- */
.contact {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    padding: 20px 0;
}

.contact-desc {
    font-size: 1.063rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--blush-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--burgundy);
    color: var(--white);
    transform: rotate(-5deg);
}

.contact-label {
    font-family: var(--font-body);
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--burgundy);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 0.938rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--burgundy);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid rgba(123, 30, 43, 0.06);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--charcoal);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-pale);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.938rem;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 4px rgba(123, 30, 43, 0.1);
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--blush-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--burgundy);
}

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.form-success p {
    color: var(--gray);
    font-size: 0.938rem;
}

/* --- Map Section --- */
.map-section {
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 28px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    z-index: 10;
    max-width: 400px;
    width: 90%;
}

.map-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.map-overlay p {
    font-size: 0.938rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.map-section iframe {
    display: block;
    width: 100%;
}

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    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.08);
}

.footer-brand p {
    font-size: 0.938rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: var(--blush);
    padding-left: 4px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-contact svg {
    min-width: 16px;
    margin-top: 3px;
    color: var(--blush);
}

.footer-contact a:hover {
    color: var(--blush);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
    color: var(--blush);
}

/* --- Animations --- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos].aos-delay-1 { transition-delay: 0.1s; }
[data-aos].aos-delay-2 { transition-delay: 0.2s; }
[data-aos].aos-delay-3 { transition-delay: 0.3s; }
[data-aos].aos-delay-4 { transition-delay: 0.4s; }

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

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

    .step-connector {
        display: none;
    }

    .about-grid {
        gap: 60px;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        padding: 100px 32px 40px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav a {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

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

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

    .about-image-accent {
        right: 20px;
        bottom: -20px;
        width: 200px;
    }

    .about-image-main img {
        height: 450px;
    }

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

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

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

    .contact-form-wrap {
        padding: 32px 24px;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .map-overlay {
        top: 20px;
        padding: 20px 24px;
    }
}

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

    .hero {
        padding-top: 80px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services,
    .about,
    .process,
    .testimonials,
    .contact {
        padding: 80px 0;
    }

    .service-card {
        padding: 28px 24px;
    }
}
