*,
*::before,
*::after { margin:0; padding:0; box-sizing:border-box; }

:root {
    --blue-900: #1e3a5f;
    --blue-800: #1a4971;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-300: #93c5fd;
    --blue-100: #dbeafe;
    --blue-50: #eff6ff;
    --gun-900: #0f172a;
    --gun-800: #1e293b;
    --gun-700: #334155;
    --gun-600: #475569;
    --gun-500: #64748b;
    --gun-400: #94a3b8;
    --gun-300: #cbd5e1;
    --gun-200: #e2e8f0;
    --gun-100: #f1f5f9;
    --gun-50: #f8fafc;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
    --shadow: 0 4px 24px rgba(15,23,42,0.08);
    --shadow-lg: 0 12px 48px rgba(15,23,42,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gun-700);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

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

.section { padding: 100px 0; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }

.section-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: var(--blue-600); background: var(--blue-50);
    padding: 8px 18px; border-radius: 100px; margin-bottom: 20px;
    border: 1px solid var(--blue-100);
}

.section-head h2 {
    font-size: 2.75rem; font-weight: 800; line-height: 1.15;
    color: var(--gun-900); margin-bottom: 16px; letter-spacing: -0.02em;
}

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

.section-desc { font-size: 1.1rem; color: var(--gun-500); line-height: 1.75; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; font-family: inherit; font-weight: 600;
    text-decoration: none; border-radius: var(--radius-sm);
    cursor: pointer; transition: var(--transition);
    border: 2px solid transparent;
}

.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-primary {
    background: var(--blue-600); color: var(--white); border-color: var(--blue-600);
}
.btn-primary:hover {
    background: var(--blue-700); border-color: var(--blue-700);
    transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}

.btn-outline {
    background: transparent; color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { background: var(--white); color: var(--gun-900); border-color: var(--white); }

.btn-outline-dark {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: inherit; font-weight: 600; text-decoration: none;
    border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition);
    border: 2px solid var(--gun-300); background: var(--white); color: var(--gun-800);
    padding: 14px 32px; font-size: 1.05rem;
}
.btn-outline-dark:hover { border-color: var(--blue-500); color: var(--blue-600); background: var(--blue-50); transform: translateY(-2px); }

.dir-btn { margin-top: 10px; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed; top: 0; left: 0; z-index: 1001;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
    transition: width 0.1s linear;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    transition:
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.35s ease,
        padding 0.35s ease,
        box-shadow 0.35s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 3px rgba(15,23,42,0.06);
    padding: 10px 0;
}

.navbar.hidden { transform: translateY(-100%); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
    flex-shrink: 0;
    opacity: 0; transform: translateX(-16px);
    animation: logoIn 0.5s 0.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes logoIn {
    to { opacity: 1; transform: translateX(0); }
}

.logo-img {
    width: 84px; height: 84px; border-radius: var(--radius-sm);
    object-fit: cover; flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo:hover .logo-img { transform: scale(1.06); }

.logo-type { display: flex; flex-direction: column; }

.logo-name {
    font-size: 1.05rem; font-weight: 700; color: var(--white);
    line-height: 1.2; transition: var(--transition);
}

.logo-loc {
    font-size: 0.7rem; color: rgba(255,255,255,0.55);
    font-weight: 500; transition: var(--transition);
}

.navbar.scrolled .logo-name { color: var(--gun-900); }
.navbar.scrolled .logo-loc { color: var(--gun-400); }

.nav-links {
    display: flex; list-style: none; gap: 4px;
    position: relative;
}

.nav-link-wrap {
    position: relative;
    opacity: 0; transform: translateY(-10px);
}
.nav-link-wrap:nth-child(1) { animation: navFadeIn 0.4s 0.15s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.nav-link-wrap:nth-child(2) { animation: navFadeIn 0.4s 0.22s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.nav-link-wrap:nth-child(3) { animation: navFadeIn 0.4s 0.29s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.nav-link-wrap:nth-child(4) { animation: navFadeIn 0.4s 0.36s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

@keyframes navFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.nav-link {
    text-decoration: none; font-size: 0.88rem; font-weight: 500;
    color: rgba(255,255,255,0.8); transition: var(--transition);
    position: relative; padding: 8px 18px; border-radius: 8px;
    display: block;
}

.nav-link::before {
    content: ''; position: absolute; inset: 0; border-radius: 8px;
    background: rgba(255,255,255,0.06);
    transform: scaleY(0.4) scaleX(0.85); opacity: 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.nav-link:hover::before {
    transform: scaleY(1) scaleX(1); opacity: 1;
}

.nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 50%;
    width: 0; height: 2px; background: var(--blue-400);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after { width: 40%; left: 50%; }
.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link { color: var(--gun-600); }
.navbar.scrolled .nav-link:hover { color: var(--blue-600); }
.navbar.scrolled .nav-link::after { background: var(--blue-600); }
.navbar.scrolled .nav-link::before { background: var(--blue-50); }

.nav-link.active { color: var(--white); }
.nav-link.active::after { width: 40%; left: 50%; }
.nav-link.active::before { transform: scaleY(1) scaleX(1); opacity: 1; }
.navbar.scrolled .nav-link.active { color: var(--blue-600); }
.navbar.scrolled .nav-link.active::after { background: var(--blue-600); }
.navbar.scrolled .nav-link.active::before { background: rgba(37,99,235,0.08); }

.nav-actions {
    display: flex; align-items: center; gap: 6px;
}

.nav-icon-btn {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px;
    color: rgba(255,255,255,0.85);
    transition: var(--transition); text-decoration: none;
}
.nav-icon-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.navbar.scrolled .nav-icon-btn { color: var(--gun-600); }
.navbar.scrolled .nav-icon-btn:hover { background: var(--gun-100); color: var(--blue-600); }

.menu-toggle {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 8px; z-index: 1001;
    border-radius: 8px; transition: background 0.2s ease;
}
.menu-toggle:hover { background: rgba(255,255,255,0.08); }
.navbar.scrolled .menu-toggle:hover { background: var(--gun-100); }

.menu-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--white); transition: var(--transition); border-radius: 2px;
}

.navbar.scrolled .menu-toggle span { background: var(--gun-800); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: var(--gun-800); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: var(--gun-800); }

.mobile-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(15,23,42,0.6); backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998; opacity: 0; transition: opacity 0.4s ease;
}
.mobile-overlay.open { opacity: 1; display: block; }

.mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(15,23,42,0.97);
    padding: 100px 40px 40px;
    opacity: 0; transform: scale(0.96);
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
}
.mobile-menu.open {
    opacity: 1; transform: scale(1); display: block;
}
.mobile-menu ul {
    list-style: none; display: flex; flex-direction: column;
    align-items: center; gap: 8px;
}
.mobile-menu li {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.open li:nth-child(1) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.mobile-menu.open li:nth-child(2) { transition-delay: 0.14s; opacity: 1; transform: translateY(0); }
.mobile-menu.open li:nth-child(3) { transition-delay: 0.20s; opacity: 1; transform: translateY(0); }
.mobile-menu.open li:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.mobile-menu.open li:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }

.mobile-link {
    text-decoration: none; font-size: 1.3rem; font-weight: 600;
    color: rgba(255,255,255,0.75); transition: var(--transition);
    display: block; padding: 16px 32px; border-radius: 12px;
    text-align: center; letter-spacing: -0.01em;
}
.mobile-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.mobile-call {
    margin-top: 16px; display: flex !important; text-align: center;
    background: var(--blue-600) !important; color: var(--white) !important;
    border-radius: 12px !important;
}
.mobile-call:hover { background: var(--blue-700) !important; }

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

.hero-bg {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse 90% 60% at 30% 40%, rgba(37,99,235,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 70% 70%, rgba(96,165,250,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(37,99,235,0.1) 0%, transparent 50%);
}

.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 41px);
}

.hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; padding-top: 80px;
}

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

.hero-badge {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--blue-300); background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.25);
    padding: 8px 20px; border-radius: 100px; margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 4.2rem; font-weight: 900; line-height: 1.05;
    color: var(--white); margin-bottom: 20px; letter-spacing: -0.03em;
}

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

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

.hero-rating {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.55); font-size: 0.9rem;
}

.hero-stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; }

.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.hero-card {
    background: rgba(255,255,255,0.04); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 28px 24px; transition: var(--transition);
}

.hero-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(37,99,235,0.3); transform: translateY(-4px);
}

.hero-card-icon {
    width: 48px; height: 48px; background: rgba(37,99,235,0.2);
    color: var(--blue-300); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}

.hero-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.hero-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ===== STATS ===== */
.stats { background: var(--gun-800); padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }

.stats-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; min-width: 120px; }

.stat-num { font-size: 2.25rem; font-weight: 800; color: var(--blue-400); line-height: 1; }

.stat-label {
    font-size: 0.8rem; color: var(--gun-400); font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px; text-align: center;
}

.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.08); }

/* ===== ABOUT ===== */
.about { background: var(--gun-50); }

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

.about-card {
    background: var(--white); border-radius: var(--radius); padding: 32px 28px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gun-200); transition: var(--transition);
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }

.about-card-icon {
    width: 52px; height: 52px; background: var(--blue-50); color: var(--blue-600);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; margin-bottom: 20px; transition: var(--transition);
}
.about-card:hover .about-card-icon { background: var(--blue-600); color: var(--white); }

.about-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gun-900); margin-bottom: 10px; }
.about-card p { font-size: 0.92rem; color: var(--gun-500); line-height: 1.65; }

/* ===== SERVICES ===== */
.services { background: var(--white); }

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

.service-card {
    background: var(--gun-50); border-radius: var(--radius); padding: 32px 24px;
    border: 1px solid var(--gun-200); transition: var(--transition); position: relative; overflow: hidden;
}

.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
    transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); background: var(--white); }

.service-card-icon {
    width: 56px; height: 56px; background: var(--blue-50); color: var(--blue-600);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; margin-bottom: 18px; transition: var(--transition);
}
.service-card:hover .service-card-icon { background: var(--blue-600); color: var(--white); }

.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gun-900); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--gun-500); line-height: 1.6; }

/* ===== REVIEWS ===== */
.reviews { background: var(--gun-50); overflow: hidden; }

.reviews-hero { text-align: center; margin-bottom: 48px; }

.reviews-hero-stars { font-size: 2.5rem; color: #fbbf24; letter-spacing: 4px; margin-bottom: 8px; }
.reviews-hero-rating { font-size: 1.6rem; font-weight: 800; color: var(--gun-900); }
.reviews-hero-count { color: var(--gun-500); font-size: 0.95rem; margin-top: 4px; }

.reviews-carousel {
    position: relative; max-width: 820px; margin: 0 auto;
    padding: 0 52px;
}

.carousel-track-wrap { overflow: hidden; border-radius: var(--radius); }

.carousel-track {
    display: flex; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: grab;
}
.carousel-track.dragging { transition: none; cursor: grabbing; }

.carousel-slide {
    flex: 0 0 100%; min-width: 0; padding: 0 12px;
}

.review-card {
    background: var(--white); border-radius: var(--radius); padding: 36px 32px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gun-200);
    height: 100%; display: flex; flex-direction: column;
}

.review-card-stars {
    color: #fbbf24; font-size: 1.2rem; letter-spacing: 2px;
    margin-bottom: 14px; flex-shrink: 0;
}

.review-card p {
    font-size: 0.95rem; color: var(--gun-600); line-height: 1.8;
    margin-bottom: 20px; font-style: italic; flex: 1;
}

.review-card-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }

.review-avatar {
    width: 42px; height: 42px; background: var(--blue-50); color: var(--blue-600);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}

.review-card-author div { display: flex; flex-direction: column; }
.review-card-author strong { font-size: 0.9rem; color: var(--gun-900); }
.review-card-author span { font-size: 0.8rem; color: var(--gun-400); }

.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--gun-200);
    color: var(--gun-700); cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    font-size: 1.1rem; transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.carousel-btn:hover { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); box-shadow: 0 4px 16px rgba(37,99,235,0.3); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 28px;
}

.carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gun-300); border: none; cursor: pointer;
    transition: var(--transition); padding: 0;
}
.carousel-dot.active { background: var(--blue-600); width: 24px; border-radius: 4px; }
.carousel-dot:hover { background: var(--gun-400); }
.carousel-dot.active:hover { background: var(--blue-600); }

.contact-map-wrap {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 16px; box-shadow: var(--shadow);
    border: 1px solid var(--gun-200);
}
.contact-map-wrap .map-embed { border-radius: var(--radius-sm); }

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 140px 0 60px; background: var(--gun-900);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(37,99,235,0.15) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero-inner h1 {
    font-size: 3rem; font-weight: 900; color: var(--white);
    letter-spacing: -0.02em; margin-bottom: 12px;
}
.page-hero-desc {
    font-size: 1.05rem; color: rgba(255,255,255,0.55);
    max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px 32px; box-shadow: var(--shadow);
    border: 1px solid var(--gun-200);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.contact-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.contact-form .form-group label {
    font-size: 0.85rem; font-weight: 600; color: var(--gun-700);
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    font-family: inherit; font-size: 0.95rem; padding: 12px 16px;
    border: 1px solid var(--gun-200); border-radius: var(--radius-sm);
    background: var(--gun-50); color: var(--gun-800);
    transition: var(--transition); outline: none;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
    background: var(--white);
}
.contact-form .form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; margin-top: 4px; }

/* ===== STATUS MESSAGE ===== */
.status-msg {
    padding: 14px 18px; border-radius: var(--radius-sm);
    font-size: 0.92rem; font-weight: 600; margin-bottom: 24px;
}
.status-msg.sent { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.status-msg.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.contact { background: var(--white); }

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

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

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

.contact-block-icon {
    width: 48px; height: 48px; background: var(--blue-50); color: var(--blue-600);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}

.contact-block h4 {
    font-size: 0.8rem; font-weight: 600; color: var(--gun-400);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}

.contact-block a { font-size: 1.05rem; color: var(--gun-800); text-decoration: none; font-weight: 600; transition: var(--transition); }
.contact-block a:hover { color: var(--blue-600); }
.contact-block p { font-size: 1rem; color: var(--gun-700); line-height: 1.5; }

.hours-block {
    background: var(--gun-50); border-radius: var(--radius);
    padding: 28px; border: 1px solid var(--gun-200); margin-top: 8px;
}

.hours-block h4 { font-size: 1rem; font-weight: 700; color: var(--gun-900); margin-bottom: 16px; }

.hours-row {
    display: flex; justify-content: space-between; padding: 9px 0;
    border-bottom: 1px solid var(--gun-200); font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--gun-600); font-weight: 500; }
.hours-row span:last-child { color: var(--gun-800); font-weight: 600; }
.hours-off span:last-child { color: #ef4444; }

.map-embed {
    width: 100%; height: 480px; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gun-200);
}

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

.map-directions { width: 100%; margin-top: 16px; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: var(--gun-900); padding: 60px 0 0; }

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

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo .logo-name { font-size: 1rem; }
.footer-brand p { font-size: 0.9rem; color: var(--gun-400); line-height: 1.7; max-width: 360px; }

.footer-col h4 {
    color: var(--white); font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--gun-400); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--blue-400); }
.footer-col span { color: var(--gun-400); font-size: 0.9rem; line-height: 1.6; display: inline-block; }

.footer-bottom { text-align: center; padding: 24px 0; font-size: 0.85rem; color: var(--gun-500); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-rating { justify-content: center; }
    .hero-visual { max-width: 500px; margin: 0 auto; }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .mobile-overlay { display: block; }
    .mobile-menu { display: block; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-visual { display: none; }
    .section { padding: 64px 0; }
    .section-head h2 { font-size: 2rem; }
    .stats-inner { justify-content: center; }
    .stat-divider { display: none; }
    .stat-item { min-width: 100px; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-carousel { padding: 0 36px; }
    .carousel-btn { width: 34px; height: 34px; font-size: 1rem; }
    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .contact-form-wrap { padding: 24px 20px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-details { gap: 16px; }
    .contact-map-wrap { padding: 10px; }
    .map-embed { height: 280px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-actions .btn-lg { width: 100%; }
    .section-head h2 { font-size: 1.6rem; }
}
