/* ============================
   KAPIMDA KURYE — Elegant Design
   ============================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --primary-glow: rgba(99, 102, 241, 0.15);
    --secondary: #0f172a;
    --accent: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.12);
    --dark: #0b0f1a;
    --dark-card: #111827;
    --dark-surface: #1f2937;
    --surface: #ffffff;
    --bg: #f9fafb;
    --text: #111827;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --white: #fff;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-full: 100px;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow: 0 4px 24px rgba(0, 0, 0, .07);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .10);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, .12);
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
    --speed: .3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

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

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-d1 {
    transition-delay: .08s;
}

.reveal-d2 {
    transition-delay: .16s;
}

.reveal-d3 {
    transition-delay: .24s;
}

.reveal-d4 {
    transition-delay: .32s;
}

.reveal-d5 {
    transition-delay: .40s;
}

.reveal-d6 {
    transition-delay: .48s;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb-container {
    background: #f8fafc;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    margin-top: 76px;
    /* Header height */
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    justify-content: flex-start;
    /* Ensure left alignment */
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumb .separator {
    color: #cbd5e1;
    font-size: 0.75rem;
}

.breadcrumb .current {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ---------- HEADER ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    transition: box-shadow var(--speed) var(--ease);
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--dark);
    letter-spacing: -.5px;
}

.logo i {
    font-size: 1.5rem;
    color: var(--primary);
}

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

.nav-links li a {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--speed) var(--ease);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary);
    background: var(--primary-glow);
}

/* Mobile btn */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: background var(--speed);
}

.mobile-menu-btn:hover {
    background: var(--border-light);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: .92rem;
    border: none;
    cursor: pointer;
    transition: all var(--speed) var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(99, 102, 241, .25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 24px rgba(99, 102, 241, .35);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid rgba(99, 102, 241, .3);
}

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

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 2px 12px rgba(37, 211, 102, .25);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
}

.btn-glass {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-2px);
}

/* ---------- HERO ---------- */
.hero {
    padding: 150px 0 110px;
    background: linear-gradient(160deg, #0b0f1a 0%, #1a1040 40%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

/* Decorative orbs */
.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, .18) 0%, transparent 65%);
    top: -250px;
    right: -150px;
    border-radius: 50%;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, .10) 0%, transparent 65%);
    bottom: -200px;
    left: -100px;
    border-radius: 50%;
    animation: orbFloat 16s ease-in-out infinite reverse;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

/* Grid dots overlay */
.grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -.02em;
}

.hero-text h1 span {
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    font-size: .82rem;
    font-weight: 600;
    white-space: nowrap;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: all var(--speed) var(--ease);
}

.badge:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px);
}

.badge i {
    color: #818cf8;
    font-size: .85rem;
}

/* Hero Slider */
.hero-image-slider {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .06);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 50px;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 15, 26, .88) 0%, rgba(11, 15, 26, .25) 55%, transparent 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-1 {
    background-image: url('../img/hero1.png');
}

.slide-2 {
    background-image: url('../img/hero2.png');
}

.slide-3 {
    background-image: url('../img/hero3.png');
}

.branding-overlay {
    position: relative;
    z-index: 3;
    background: rgba(99, 102, 241, .85);
    backdrop-filter: blur(8px);
    color: white;
    padding: 12px 26px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(16px);
    opacity: 0;
    transition: all .6s var(--ease) .3s;
    box-shadow: 0 8px 30px rgba(99, 102, 241, .3);
}

.slide.active .branding-overlay {
    transform: translateY(0);
    opacity: 1;
}

.slider-nav {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: all var(--speed) var(--ease);
}

.slider-dot.active {
    background: var(--primary);
    width: 26px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(99, 102, 241, .5);
}

.badge-light {
    background: rgba(15, 23, 42, 0.05) !important;
    color: var(--text) !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
}

.badge-light:hover {
    background: rgba(15, 23, 42, 0.1) !important;
    transform: translateY(-2px);
}

/* ---------- SECTIONS (general) ---------- */
.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-title h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    background: var(--primary-glow);
    color: var(--primary);
}

/* ---------- SERVICES ---------- */
.services {
    padding: 100px 0;
    background: var(--surface);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    padding: 34px 30px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--speed) var(--ease);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow);
    opacity: 0;
    transition: opacity var(--speed);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, .25);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 22px;
    transition: transform .4s var(--ease-spring);
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-4deg);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.12rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.65;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1040 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item .stat-label {
    color: rgba(255, 255, 255, .5);
    font-size: .88rem;
    margin-top: 4px;
}

/* ---------- GUIDES ---------- */
.guides-section {
    padding: 100px 0;
    background: var(--bg);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.guide-card {
    display: block;
    padding: 32px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--speed) var(--ease);
    position: relative;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(99, 102, 241, .2);
}

.guide-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 18px;
    transition: transform .4s var(--ease-spring);
}

.guide-card:hover .guide-icon {
    transform: scale(1.06) rotate(-3deg);
}

.guide-card h4 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.guide-card p {
    color: var(--text-secondary);
    font-size: .88rem;
    line-height: 1.6;
}

/* ---------- QUOTE FORM ---------- */
.quote-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #0b0f1a 0%, #1a1040 50%, #0f172a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, .12) 0%, transparent 65%);
    top: -150px;
    left: -100px;
    border-radius: 50%;
}

.quote-container {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .04);
    padding: 48px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    position: relative;
    z-index: 2;
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1/-1;
}

label {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    gap: 8px;
}

label i {
    color: #818cf8;
    font-size: .9rem;
}

input,
select,
textarea {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .25);
    color: var(--white);
    font-size: .92rem;
    font-family: inherit;
    transition: all var(--speed) var(--ease);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, .35);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, .12);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, .3);
}

select option {
    background: var(--dark);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    padding: 16px !important;
    font-size: 1rem !important;
    border-radius: var(--radius-sm) !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover)) !important;
    text-transform: uppercase;
    letter-spacing: .8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 18px rgba(99, 102, 241, .3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(99, 102, 241, .4);
}

/* ---------- PAGE HEADER (sub-pages) ---------- */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    background: var(--bg);
    color: var(--text);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.page-header::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(99, 102, 241, .12) 0%, transparent 65%);
    top: -120px;
    right: -80px;
    border-radius: 50%;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    color: var(--text);
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* ---------- FOOTER ---------- */
footer {
    padding: 72px 0 28px;
    background: var(--dark);
    color: rgba(255, 255, 255, .7);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #a78bfa, var(--accent));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 44px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin-bottom: 14px;
    letter-spacing: -.5px;
}

.footer-info p {
    color: rgba(255, 255, 255, .4);
    font-size: .88rem;
    line-height: 1.7;
}

.footer-links h4 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, .4);
    font-size: .88rem;
    transition: all var(--speed) var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: #818cf8;
    transform: translateX(3px);
}

.footer-links li i {
    color: rgba(255, 255, 255, .3);
    width: 14px;
    font-size: .8rem;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, .25);
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    font-size: .82rem;
}

/* ---------- FAQ / DETAILS ---------- */
details {
    cursor: pointer;
}

details summary {
    user-select: none;
}

details summary i {
    transition: transform var(--speed) var(--ease);
}

details[open] summary i {
    transform: rotate(180deg);
}

details p {
    animation: detailSlide .3s var(--ease) forwards;
}

@keyframes detailSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

/* ---------- BLOG ---------- */
.blog-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--speed) var(--ease);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(99, 102, 241, .15);
}

.blog-card-content {
    padding: 22px;
}

.blog-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: .88rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: .88rem;
    margin-top: 14px;
    transition: gap var(--speed);
}

.read-more:hover {
    gap: 10px;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
    transition: all var(--speed) var(--ease);
    animation: wpPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
}

@keyframes wpPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .35), 0 0 0 12px rgba(37, 211, 102, .08);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.6rem;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-image-slider {
        max-width: 480px;
        margin: 0 auto;
        height: 340px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 16px;
        gap: 2px;
        box-shadow: var(--shadow-lg);
        border-bottom: 3px solid var(--primary);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

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

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav .btn {
        display: none;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: .98rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

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

    .quote-container {
        padding: 28px 20px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .breadcrumb-container {
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }

    .hero-image-slider {
        height: 240px;
    }

    .service-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- GOOGLE REVIEWS SECTION ---------- */
.reviews-section {
    padding: 100px 0;
    background: #f8fafc;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.google-review-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.user-info {
    flex-grow: 1;
}

.user-name {
    display: block;
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.review-stats {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.star {
    color: #fbbf24;
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 16px;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.google-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.review-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
}