/* ========================================
   FIRST CHOICE CAR REPAIR — STYLESHEET
   Vibrant Modern | Emerald Green + Cream
   ======================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --emerald-300: #6ee7b7;
    --emerald-200: #a7f3d0;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;
    
    --cream-50:  #fefdf8;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --cream-300: #fef3c7;
    --cream:     #faf8f0;
    --cream-dark:#f5f0e1;
    
    --white:     #ffffff;
    --black:     #0a0a0a;
    --gray-900:  #111827;
    --gray-800:  #1f2937;
    --gray-700:  #374151;
    --gray-600:  #4b5563;
    --gray-500:  #6b7280;
    --gray-400:  #9ca3af;
    --gray-300:  #d1d5db;
    --gray-200:  #e5e7eb;
    --gray-100:  #f3f4f6;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.08);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-800);
    background-color: var(--cream);
    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;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--emerald-600);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
}

.btn-primary:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline-primary {
    background: transparent;
    color: var(--emerald-700);
    border: 2px solid var(--emerald-600);
}

.btn-outline-primary:hover {
    background: var(--emerald-50);
    border-color: var(--emerald-700);
    transform: translateY(-2px);
}

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

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

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

.btn-lg--light {
    background: var(--white);
    color: var(--emerald-800);
    border: none;
    box-shadow: var(--shadow-lg);
}

.btn-lg--light:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-full {
    width: 100%;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
}

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

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

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition-base);
}

.navbar.scrolled .nav-logo-text {
    color: var(--emerald-800);
}

.logo-dot {
    color: var(--emerald-400);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

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

.navbar.scrolled .nav-link {
    color: var(--gray-600);
}

.navbar.scrolled .nav-link:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.nav-link--cta {
    background: var(--emerald-500);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: var(--emerald-600);
}

.navbar.scrolled .nav-link--cta {
    background: var(--emerald-600);
}

.navbar.scrolled .nav-link--cta:hover {
    background: var(--emerald-700);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    z-index: 1001;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--emerald-900);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.mobile-menu-close:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

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

.mobile-link--cta {
    margin-top: 16px;
    background: var(--emerald-500);
    color: var(--white);
}

.mobile-menu-contact {
    text-align: center;
}

.mobile-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--emerald-300);
    padding: 14px 28px;
    border: 2px solid rgba(52, 211, 153, 0.3);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.mobile-phone:hover {
    background: rgba(52, 211, 153, 0.1);
    border-color: var(--emerald-400);
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-600);
    background: var(--emerald-100);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-tag--light {
    color: var(--emerald-300);
    background: rgba(52, 211, 153, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 20px;
}

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

.section-title .accent {
    color: var(--emerald-600);
}

.section-title .accent-light {
    color: var(--emerald-300);
}

.section-desc {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--emerald-900);
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 78, 59, 0.88) 0%,
        rgba(6, 95, 70, 0.75) 40%,
        rgba(4, 120, 87, 0.60) 70%,
        rgba(5, 150, 105, 0.50) 100%
    );
}

/* Geometric shapes */
.geo-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.geo-circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px solid rgba(52, 211, 153, 0.15);
    top: -100px;
    right: -100px;
    animation: float-slow 20s ease-in-out infinite;
}

.geo-circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.08);
    bottom: 15%;
    right: 10%;
    animation: float-slow 14s ease-in-out infinite reverse;
}

.geo-square-1 {
    width: 120px;
    height: 120px;
    background: rgba(254, 252, 232, 0.06);
    border: 2px solid rgba(254, 252, 232, 0.1);
    bottom: 20%;
    left: 5%;
    transform: rotate(45deg);
    animation: spin-slow 25s linear infinite;
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(52, 211, 153, 0.08);
    top: 30%;
    left: 8%;
    animation: float-slow 16s ease-in-out infinite;
}

.geo-dots {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(52, 211, 153, 0.3) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    top: 20%;
    right: 25%;
    animation: float-slow 12s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes spin-slow {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--emerald-200);
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald-400);
    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-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    max-width: 700px;
}

.headline-accent {
    color: var(--emerald-300);
}

.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 40px;
}

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

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.hero-scroll a:hover {
    color: var(--emerald-300);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), 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; }
}

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

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

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-500), var(--emerald-300));
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    border-radius: var(--radius-md);
    color: var(--emerald-700);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

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

.service-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--emerald-700);
    background: var(--emerald-100);
    padding: 4px 12px;
    border-radius: 50px;
}

/* Geometric decorations */
.geo-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.geo-decor-services {
    bottom: -60px;
    right: -60px;
}

.geo-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--emerald-100);
    animation: spin-slow 30s linear infinite;
}

.geo-cross {
    position: absolute;
    top: -30px;
    left: 40px;
    width: 40px;
    height: 40px;
}

.geo-cross::before,
.geo-cross::after {
    content: '';
    position: absolute;
    background: var(--emerald-200);
    border-radius: 2px;
}

.geo-cross::before {
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.geo-cross::after {
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.geo-decor-about {
    top: 80px;
    right: -40px;
}

.geo-square-accent {
    width: 100px;
    height: 100px;
    background: var(--emerald-100);
    border-radius: var(--radius-lg);
    transform: rotate(30deg);
    animation: float-slow 18s ease-in-out infinite;
}

.geo-decor-testimonials {
    bottom: -40px;
    left: -40px;
}

.geo-circle-accent {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--emerald-50);
    animation: float-slow 15s ease-in-out infinite reverse;
}

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

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

.about-visual {
    position: relative;
}

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

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

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.about-img-float img {
    width: 260px;
    height: 220px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--emerald-700);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-badge-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--emerald-300);
}

.about-badge-text {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

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

.about-content .section-tag {
    margin-bottom: 20px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

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

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.stat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.stat-number {
    font-size: 24px;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.4;
    padding-top: 4px;
}

/* ---------- Why Us ---------- */
.why-us {
    position: relative;
    padding: 120px 0;
    background: var(--emerald-800);
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(52, 211, 153, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(110, 231, 183, 0.1) 0%, transparent 50%);
}

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

.why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    backdrop-filter: blur(8px);
    transition: all var(--transition-base);
}

.why-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateY(-4px);
}

.why-card-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(52, 211, 153, 0.25);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

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

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald-200);
}

.testimonial-quote-mark {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--emerald-100);
    line-height: 1;
    margin-bottom: -12px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--emerald-600);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-location {
    font-size: 13px;
    color: var(--gray-500);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    padding: 100px 0;
    background: var(--emerald-700);
    position: relative;
    overflow: hidden;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-geo {
    position: absolute;
    pointer-events: none;
}

.geo-cta-circle-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(52, 211, 153, 0.15);
    top: -80px;
    left: -80px;
    animation: float-slow 18s ease-in-out infinite;
}

.geo-cta-circle-2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.08);
    bottom: -40px;
    right: 20%;
    animation: float-slow 12s ease-in-out infinite reverse;
}

.geo-cta-bar {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.3), transparent);
    bottom: 30px;
    right: 5%;
    animation: float-slow 10s ease-in-out infinite;
}

.cta-content {
    flex: 1;
    min-width: 280px;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

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

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--emerald-200);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    border-radius: var(--radius-md);
    color: var(--emerald-700);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.contact-card:hover .contact-card-icon {
    background: var(--emerald-600);
    color: var(--white);
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.contact-card-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-card-text a {
    color: var(--emerald-700);
    transition: color var(--transition-fast);
}

.contact-card-text a:hover {
    color: var(--emerald-500);
    text-decoration: underline;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--emerald-600);
    transition: all var(--transition-fast);
}

.contact-card-link:hover {
    color: var(--emerald-700);
    gap: 10px;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-800);
    background: var(--cream);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--emerald-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.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='%236b7280' 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 16px center;
    padding-right: 44px;
    cursor: pointer;
}

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

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

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

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--emerald-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.success-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.btn-send-again {
    font-size: 14px;
    padding: 12px 24px;
}

/* ---------- Map ---------- */
.map-section {
    background: var(--gray-200);
}

.map-container {
    width: 100%;
    height: 400px;
    filter: grayscale(30%);
    transition: filter var(--transition-base);
}

.map-container:hover {
    filter: grayscale(0%);
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 0;
    overflow: hidden;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 24px;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    transition: color var(--transition-fast);
}

.footer-contact-item:hover {
    color: var(--emerald-400);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: all var(--transition-fast);
}

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

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
}

.hours-closed span:last-child {
    color: var(--emerald-400);
}

.hours-note {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.hours-note a {
    color: var(--emerald-400);
    transition: color var(--transition-fast);
}

.hours-note a:hover {
    color: var(--emerald-300);
    text-decoration: underline;
}

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

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-location {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

.footer-geo {
    position: absolute;
    bottom: 100px;
    right: 60px;
    display: flex;
    gap: 12px;
    pointer-events: none;
}

.geo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald-500);
    opacity: 0.3;
}

.geo-dot:nth-child(2) { opacity: 0.5; width: 8px; height: 8px; }
.geo-dot:nth-child(3) { opacity: 0.2; }

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--emerald-700);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--emerald-600);
    transform: translateY(-4px);
}

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

[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) {
    .about-grid {
        gap: 48px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-headline {
        font-size: clamp(32px, 8vw, 52px);
    }
    
    .hero-trust {
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .about-img-float {
        right: 0;
        bottom: -30px;
    }
    
    .about-badge {
        left: 0;
        top: -16px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .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-content {
        padding: 100px 16px 60px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .services, .about, .why-us, .testimonials, .contact {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .about-img-main img {
        height: 350px;
    }
    
    .about-img-float {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        border: none;
        box-shadow: none;
    }
    
    .about-img-float img {
        width: 100%;
        height: 200px;
    }
    
    .about-badge {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
        display: inline-flex;
    }
    
    .contact-form-wrap {
        padding: 28px 20px;
    }
    
    .cta-banner {
        padding: 80px 0;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}
