/* ============================================
   Tipton's Glass Service — Custom Styles
   Palette: Charcoal (#2D2D2D) + Coral (#E8644C)
   Fonts: Playfair Display + Inter
============================================ */

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

:root {
    --charcoal: #2D2D2D;
    --charcoal-dark: #1A1A1A;
    --charcoal-light: #3D3D3D;
    --coral: #E8644C;
    --coral-dark: #D4533A;
    --coral-light: #F0856E;
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #EAEAEB;
    --neutral-300: #D4D4D5;
    --neutral-400: #A1A1A6;
    --neutral-500: #71717A;
    --neutral-600: #52525B;
    --neutral-700: #3F3F46;
    --neutral-800: #27272A;
    --neutral-900: #18181B;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.06), 0 10px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 20px 50px rgba(0,0,0,0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.938rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
    box-shadow: 0 4px 14px rgba(232, 100, 76, 0.35);
}

.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(232, 100, 76, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

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

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

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

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(26, 26, 26, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

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

.nav-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-link--cta {
    background: var(--coral);
    color: var(--white) !important;
    margin-left: 8px;
    padding: 10px 22px;
}

.nav-link--cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    background: var(--charcoal-dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232, 100, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(232, 100, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 100, 76, 0.12);
    border: 1px solid rgba(232, 100, 76, 0.25);
    color: var(--coral-light);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--coral);
    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-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.hero-title em {
    color: var(--coral);
    font-style: normal;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    min-height: 480px;
}

.hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.hero-card--main {
    width: 100%;
    aspect-ratio: 520/380;
}

.hero-card--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.hero-card-tag {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(232, 100, 76, 0.9);
    padding: 6px 14px;
    border-radius: 100px;
    display: inline-block;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.float-card--top {
    top: -20px;
    right: -30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation-delay: 0s;
}

.float-card-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
}

.float-card-number span {
    font-size: 1.2rem;
    font-weight: 700;
}

.float-card--bottom {
    bottom: 40px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation-delay: -3s;
}

.float-card-icon {
    width: 48px;
    height: 48px;
    background: var(--charcoal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.float-card-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.2;
}

.float-card-label {
    font-size: 0.813rem;
    color: var(--neutral-500);
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

@keyframes scroll-line {
    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-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

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

.section-subtitle {
    font-size: 1.063rem;
    color: var(--neutral-500);
    line-height: 1.75;
    max-width: 560px;
}

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

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

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

.section-header--center .section-subtitle {
    margin: 0 auto;
}

/* ---------- Services Section ---------- */
.services {
    padding: 100px 0;
    background: var(--neutral-100);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

.service-card--featured {
    border: 2px solid var(--coral);
}

.service-card--featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 100, 76, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.service-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--coral);
    color: var(--white);
    font-size: 0.688rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    z-index: 2;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--charcoal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin: 28px 28px 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: var(--coral);
    color: var(--white);
    transform: scale(1.05);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.313rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 20px 28px 12px;
    letter-spacing: -0.015em;
}

.service-card-desc {
    font-size: 0.938rem;
    color: var(--neutral-500);
    line-height: 1.7;
    padding: 0 28px;
    margin-bottom: 20px;
}

.service-card-img {
    margin: 0 28px 28px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 400/220;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ---------- Why Us Section ---------- */
.why-us {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 100, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.why-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 100, 76, 0.12);
    border: 1px solid rgba(232, 100, 76, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.why-feature-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

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

/* Why Visual */
.why-visual {
    position: relative;
    min-height: 560px;
}

.why-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 520/640;
}

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

.why-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--charcoal);
    aspect-ratio: 280/200;
}

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

.why-stat-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: var(--coral);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.why-stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.why-stat-number span {
    font-size: 1.4rem;
}

.why-stat-label {
    font-size: 0.813rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ---------- Process Section ---------- */
.process {
    padding: 100px 0;
    background: var(--white);
}

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

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

.process-step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--neutral-200);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.process-step-line {
    width: 40px;
    height: 2px;
    background: var(--neutral-200);
    margin: 0 auto 24px;
}

.process-step:last-child .process-step-line,
.process-step:last-child .process-step-content {
    display: none;
}

.process-step-icon {
    width: 64px;
    height: 64px;
    background: var(--neutral-100);
    border: 2px solid var(--neutral-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--coral);
    transition: all 0.3s ease;
}

.process-step:hover .process-step-icon {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
    transform: scale(1.1);
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 1.188rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.process-step-desc {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto;
}

/* ---------- Service Area Section ---------- */
.service-area {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.service-area::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 100, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.area-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.area-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
    margin: 36px 0 24px;
}

.area-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.938rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.area-note {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

.area-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 420px;
    position: relative;
}

.area-map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.area-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: var(--radius-lg);
}

.area-map-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.area-map-pin {
    animation: bounce-pin 2s ease-in-out infinite;
}

@keyframes bounce-pin {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* ---------- CTA Section ---------- */
.cta {
    padding: 100px 0;
    background: var(--coral);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

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

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

/* ---------- Contact Section ---------- */
.contact {
    padding: 100px 0;
    background: var(--neutral-100);
}

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

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

.contact-detail {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neutral-400);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--charcoal);
    transition: color 0.2s ease;
}

.contact-detail-value a:hover {
    color: var(--coral);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.015em;
}

.contact-form-subtitle {
    font-size: 0.938rem;
    color: var(--neutral-500);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neutral-600);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.938rem;
    color: var(--charcoal);
    background: var(--white);
    transition: all 0.25s ease;
    outline: none;
}

.form-input:hover {
    border-color: var(--neutral-300);
}

.form-input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232, 100, 76, 0.1);
}

.form-input::placeholder {
    color: var(--neutral-400);
}

.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='%2371717A' stroke-width='2.5' 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 16px center;
    padding-right: 44px;
    cursor: pointer;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    animation: fadeInUp 0.5s ease;
}

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

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 16px 0 8px;
}

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

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

/* ---------- Footer ---------- */
.footer {
    background: var(--neutral-900);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.938rem;
    color: rgba(255,255,255,0.65);
    transition: all 0.2s ease;
}

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

.footer-contact p {
    font-size: 0.938rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255,255,255,0.55);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a {
    color: rgba(255,255,255,0.3);
    transition: color 0.2s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        max-width: 520px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-visual {
        max-width: 480px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-step:nth-child(2) .process-step-line,
    .process-step:nth-child(4) .process-step-content {
        display: none;
    }
    
    .area-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--charcoal-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .nav-link--cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        width: 100%;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    
    .hero-visual {
        min-height: 360px;
    }
    
    .float-card--top {
        right: -10px;
        top: -10px;
    }
    
    .float-card--bottom {
        left: -10px;
        bottom: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card--featured {
        border-width: 1px;
    }
    
    .why-image-accent {
        width: 200px;
        right: -10px;
        bottom: -20px;
    }
    
    .why-stat-card {
        right: -10px;
        top: 20px;
        padding: 18px 24px;
    }
    
    .why-stat-number {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-step:last-child .process-step-line,
    .process-step:last-child .process-step-content {
        display: block;
    }
    
    .process-step-line {
        display: none;
    }
    
    .area-locations {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .float-card {
        display: none;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .service-card-icon {
        margin: 20px 20px 0;
    }
    
    .service-card-title {
        margin: 16px 20px 10px;
    }
    
    .service-card-desc {
        padding: 0 20px;
        margin-bottom: 16px;
    }
    
    .service-card-img {
        margin: 0 20px 20px;
    }
}

/* ---------- Animations on Scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
