
:root {
    --primary: #FF9933;
    --primary-strong: #eb820f;
    --primary-soft: #fff4e8;
    --dark: #111827;
    --dark-2: #1f2937;
    --muted: #6b7280;
    --bg: #f8fafc;
    --white: #ffffff;
    --line: #e5e7eb;
    --success: #20b26b;
    --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

p {
    margin-bottom: 1rem;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section-gap {
    padding: 96px 0;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--primary-soft);
    color: var(--primary-strong);
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 800;
    margin-bottom: 18px;
}

.section-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.2;
    color: var(--dark);
    font-weight: 800;
}

.lead {
    font-size: 1.06rem;
    color: var(--muted);
    max-width: 720px;
}

.site-topbar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 20;
}

.site-topbar .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.site-topbar .mini-links,
.site-topbar .mini-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.site-topbar a {
    color: var(--white);
    opacity: 0.95;
}

.site-topbar i {
    margin-right: 8px;
}

.site-header {
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.site-header.scrolled .site-nav a,
.site-header.scrolled .brand-text,
.site-header.scrolled .brand-tag {
    color: var(--dark) !important;
}

.navbar-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.brand-mark {
    width: 190px;
    height: 52px;
    display: block;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
}

.brand-text {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white);
}

.brand > span {
    display: none;
}

.brand-tag {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    margin-top: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 0.97rem;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 12px;
    transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    padding: 10px 8px;
    cursor: pointer;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #eb820f;
    margin: 5px 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(255, 153, 51, 0.22);
}

.nav-cta:hover {
    background: var(--primary-strong);
    color: var(--white);
}

.hero {
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.87), rgba(17, 24, 39, 0.38)), url('../img/hero-1.jpg') center/cover no-repeat;
    min-height: 760px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 48px;
    padding: 96px 0 64px;
}

.hero-copy {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.05;
    margin: 0 0 18px;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.hero-text {
    font-size: 1.08rem;
    max-width: 620px;
    color: rgba(255,255,255,0.82);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
}

.button-primary,
.button-secondary,
.inline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 16px 28px;
    font-size: 0.98rem;
    font-weight: 800;
    transition: 0.25s ease;
    border: 1px solid transparent;
    white-space: nowrap;
    line-height: 1.2;
    vertical-align: middle;
}

.button-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 16px 32px rgba(255, 153, 51, 0.3);
}

.button-primary:hover {
    background: var(--primary-strong);
    color: var(--white);
}

.button-secondary {
    background: transparent;
    border-color: rgba(255,255,255,0.28);
    color: var(--white);
}

.button-secondary:hover {
    background: rgba(255,255,255,0.08);
}

.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 36px;
}

.hero-stat strong {
    font-size: clamp(1.5rem, 2vw, 2.3rem);
    display: block;
    line-height: 1.1;
}

.hero-stat span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
}

.hero-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 26px;
    padding: 28px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.card-header .small-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 153, 51, 0.14);
    color: var(--white);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-intro {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
}

.service-list li::before {
    content: "✓";
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.18);
    color: var(--white);
    font-weight: 800;
}

.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--bg);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.call-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
    color: var(--dark);
    font-weight: 800;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(17, 24, 39, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.1);
}

.service-card__image {
    height: 210px;
    position: relative;
    background: linear-gradient(135deg, rgba(255,153,51,.18), rgba(255,255,255,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__content {
    padding: 22px 20px 20px;
}

.service-card__content h3 {
    margin: 0 0 10px;
    font-size: 1.46rem;
    line-height: 1.3;
    color: var(--dark);
}

.service-card__content p {
    color: var(--muted);
    margin: 0 0 16px;
}

.inline-button {
    background: var(--primary-soft);
    color: var(--primary-strong);
    padding: 11px 16px;
    border: 1px solid rgba(255,153,51,0.18);
    width: fit-content;
    font-size: 0.9rem;
}

.inline-button:hover {
    background: var(--primary);
    color: var(--white);
}

.trust-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 42px;
}

.trust-figure {
    position: relative;
    min-height: 0;
    background: linear-gradient(135deg, rgba(255,153,51,0.15), rgba(17,24,39,0.08));
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.trust-figure img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.trust-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px 22px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.trust-badge strong {
    display: block;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--primary-strong);
}

.trust-badge span {
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.trust-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.trust-item__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary-strong);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-item h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.trust-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
    align-items: center;
}

.story-visual {
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, var(--primary-soft), rgba(255,255,255,1));
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 460px;
}

.story-copy {
    padding: 12px 0;
}

.story-copy p {
    color: var(--muted);
    font-size: 1.03rem;
}

.story-points {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.story-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--dark);
    font-weight: 600;
}

.story-points li::before {
    content: "✓";
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary-strong);
    font-weight: 900;
    flex-shrink: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 12px 30px rgba(17,24,39,0.04);
}

.pricing-card.featured {
    background: linear-gradient(180deg, #fff4e8, #ffffff);
    border-color: rgba(255,153,51,0.28);
    transform: translateY(-8px);
}

.pricing-card h3 {
    margin: 0 0 8px;
    font-size: 1.45rem;
}

.pricing-card .price {
    color: var(--primary-strong);
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.pricing-card ul {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.pricing-card li::before {
    content: "•";
    color: var(--primary-strong);
    margin-right: 10px;
    font-weight: 900;
}

.pricing-card .button-primary,
.pricing-card .button-secondary {
    width: 100%;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: 0 12px 30px rgba(17,24,39,0.04);
}

.review-stars {
    color: var(--primary);
    font-size: 1.05rem;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
}

.review-quote {
    color: var(--dark-2);
    margin-bottom: 24px;
    font-size: 1.02rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ffd3a9);
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 900;
}

.review-author strong {
    display: block;
    color: var(--dark);
}

.review-author span {
    color: var(--muted);
    font-size: 0.88rem;
}

.footer {
    background: #101828;
    color: rgba(255,255,255,0.8);
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
    padding-bottom: 36px;
}

.footer h3,
.footer h4 {
    color: var(--white);
    margin: 0 0 18px;
    font-size: 1.1rem;
}

.footer p,
.footer li,
.footer a {
    color: rgba(255,255,255,0.7);
    font-size: 0.97rem;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-brand .brand-mark {
    width: 190px;
    height: 52px;
}

.footer-brand > div {
    display: none;
}

.footer-meta {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.footer-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-meta-item i {
    color: var(--primary);
    margin-top: 4px;
}

.socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.06);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0 26px;
    color: rgba(255,255,255,0.62);
}

.page-hero {
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.52)), url('../img/hero-1.jpg') center/cover no-repeat;
    min-height: 320px;
    display: grid;
    place-items: center;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 4vw, 4rem);
    margin: 0;
    letter-spacing: -0.05em;
}

.page-main {
    padding: 90px 0;
}

.content-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(17,24,39,0.04);
    padding: 30px;
}

.content-box h2,
.content-box h3,
.content-box h4 {
    color: var(--dark);
    margin-top: 0;
}

.content-box p,
.content-box li {
    color: var(--muted);
}

.content-box ul {
    padding-left: 18px;
    margin: 0 0 18px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
}

.info-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(17,24,39,0.04);
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary-strong);
    font-size: 1.1rem;
}

.info-item h4 {
    margin: 0 0 6px;
    font-size: 1.08rem;
}

.info-item p,
.info-item a {
    margin: 0;
    color: var(--muted);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(17,24,39,0.04);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.field {
    display: grid;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-weight: 700;
    color: var(--dark);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    background: #fff;
    color: var(--dark);
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .button-primary {
    margin-top: 12px;
    border: none;
    cursor: pointer;
}

.map-placeholder {
    min-height: 240px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,153,51,.18), rgba(17,24,39,.06));
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--dark-2);
    margin-top: 24px;
}

@media (max-width: 1080px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .hero-inner,
    .trust-layout,
    .story-grid,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-topbar {
        padding: 6px 0;
    }

    .site-topbar .topbar-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .site-topbar .mini-links,
    .site-topbar .mini-meta {
        justify-content: center;
        gap: 10px;
    }

    .navbar-shell {
        position: relative;
        min-height: auto;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 12px 0 14px;
    }

    .brand {
        margin-right: auto;
    }

    .brand-mark {
        width: 164px;
        height: 46px;
    }

    .brand-text {
        font-size: 1.35rem;
    }

    .brand-tag {
        letter-spacing: 0.08em;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 14px 0 0;
        order: 3;
        gap: 8px;
    }

    .site-header.menu-open .site-nav {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        background: rgba(255,255,255,0.04);
    }

    .site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-cta {
        display: none;
    }

    .service-grid,
    .pricing-grid,
    .reviews-grid,
    .trust-list,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 74px 0 52px;
    }

    .hero {
        min-height: 660px;
        background: linear-gradient(180deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.72)), url('../img/hero-1.jpg') center/cover no-repeat;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-badge {
        padding: 8px 12px;
        letter-spacing: 0.08em;
        font-size: 0.68rem;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
        line-height: 1.1;
    }

    .hero-text {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-card {
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: none;
        padding: 18px 16px;
    }

    .card-header {
        margin-bottom: 12px;
    }

    .service-intro {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .service-list {
        gap: 8px;
    }

    .service-list li {
        font-size: 0.94rem;
        line-height: 1.5;
    }

    .service-list li::before {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }

    .hero-actions,
    .section-head {
        align-items: stretch;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary,
    .inline-button,
    .call-badge {
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-stat strong {
        font-size: 1.45rem;
    }

    .hero-card {
        padding: 20px 18px;
    }
}

@media (max-width: 560px) {
    .hero {
        min-height: 660px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-gap,
    .section,
    .page-main {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .content-box,
    .info-panel,
    .contact-form,
    .review-card,
    .pricing-card {
        padding: 22px 18px;
    }
}

#spinner {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
    place-items: center;
}

#spinner.show {
    display: grid;
}

.spinner-border {
    width: 46px;
    height: 46px;
    border: 4px solid rgba(255,153,51,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}


.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h2,
.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h2::after,
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--bs-primary);
}

.footer-logo h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-col.about p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-contact-info {
    margin: 20px 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--bs-primary);
    transform: translateX(5px);
}

.footer-contact-item i {
    color: white;
    font-size: 16px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--bs-primary);
    transform: translateY(-5px);
    border-color: var(--bs-primary);
    box-shadow: 0 5px 15px rgba(19, 53, 123, 0.4);
}

.footer-col.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col.links ul li {
    margin-bottom: 12px;
}

.footer-col.links ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-col.links ul li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    left: -20px;
}

.footer-col.links ul li a:hover {
    color: var(--bs-primary);
    padding-left: 20px;
}

.footer-col.links ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--bs-primary);
    transition: all 0.3s ease;
}

.hour-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.hour-day {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.hour-time {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
}

.hizli-ara-buton {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 16px 35px rgba(255, 153, 51, 0.36);
    z-index: 999;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hizli-ara-buton:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 20px 38px rgba(255, 153, 51, 0.42);
    color: var(--white);
}

.hizli-ara-buton i {
    font-size: 1rem;
    animation: phoneRing 2s infinite;
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hizli-ara-buton {
        bottom: 16px;
        width: calc(100% - 32px);
        max-width: 320px;
        min-width: 0;
        padding: 15px 20px;
        font-size: 0.92rem;
    }
}

/*** Services Section Start ***/
.section-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
}

.services-header {
    margin-bottom: 50px;
}

.header-title {
    position: relative;
}

.header-title .subtitle {
    color: var(--bs-primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.header-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--bs-primary), #1a4a9e);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(19, 53, 123, 0.3);
    transition: all 0.3s ease;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(19, 53, 123, 0.5);
    color: white;
}

.call-btn i {
    font-size: 20px;
    animation: phoneRing 2s infinite;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(19, 53, 123, 0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border: 2px solid var(--bs-primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-link:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateX(5px);
}

.service-link i {
    font-size: 14px;
}

@media (max-width: 991px) {
    .header-title h2 {
        font-size: 32px;
    }
    
    .call-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .section-bg {
        padding: 50px 0;
    }
    
    .header-title h2 {
        font-size: 28px;
    }
    
    .services-header .text-right {
        text-align: left !important;
        margin-top: 20px;
    }
    
    .service-image {
        height: 200px;
    }
}

/*** Services Section End ***/

/*** Why Choose Us Section Start ***/
#why-choose-us {
    padding: 80px 0;
    background: white;
    position: relative;
}

.why-choose-content {
    padding-right: 30px;
}

.section-title-left .subtitle {
    color: var(--bs-primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.why-choose-content .description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.features-grid {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bs-primary), #1a4a9e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(19, 53, 123, 0.3);
}

.feature-icon i {
    color: white;
    font-size: 24px;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.experience-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.experience-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.experience-image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--bs-primary), #1a4a9e);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(19, 53, 123, 0.4);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.experience-badge .number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.3;
    margin-top: 5px;
}

@media (max-width: 991px) {
    .section-title-left h2 {
        font-size: 32px;
    }
    
    .why-choose-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        bottom: 20px;
        left: 20px;
    }
    
    .experience-badge .number {
        font-size: 40px;
    }
    
    .experience-badge .text {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    #why-choose-us {
        padding: 50px 0;
    }
    
    .section-title-left h2 {
        font-size: 28px;
    }
    
    .feature-item {
        gap: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
}

/*** Why Choose Us Section End ***/

/*** About Section Start ***/
#about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

#about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
}

.about-content {
    padding-left: 30px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(19, 53, 123, 0.15);
}

.about-feature-item i {
    color: var(--bs-primary);
    font-size: 20px;
    width: 24px;
    flex-shrink: 0;
}

.about-feature-item span {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    #about-section {
        padding: 50px 0;
    }
    
    .about-feature-item {
        padding: 12px 15px;
    }
    
    .about-feature-item span {
        font-size: 14px;
    }
}

/*** About Section End ***/

/*** copyright Start ***/
/*** Pricing Policy Section Start ***/
#pricing-policy {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

#pricing-policy .pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

#pricing-policy .pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #13357B;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

#pricing-policy .pricing-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #13357B 0%, #1a4a9e 100%);
    border-radius: 2px;
}

#pricing-policy .section-description {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

#pricing-policy .policy-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

#pricing-policy .policy-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(19, 53, 123, 0.15);
    border-top-color: #13357B;
}

#pricing-policy .policy-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #13357B;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

#pricing-policy .policy-box h3::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 28px;
    background: linear-gradient(180deg, #13357B 0%, #1a4a9e 100%);
    margin-right: 15px;
    border-radius: 3px;
}

#pricing-policy .policy-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

#pricing-policy .policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#pricing-policy .policy-list li {
    padding: 12px 0;
    color: #444;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f0f0f0;
}

#pricing-policy .policy-list li:last-child {
    border-bottom: none;
}

#pricing-policy .policy-list li i {
    color: #1a4a9e;
    margin-right: 12px;
    font-size: 18px;
    margin-top: 2px;
}

#pricing-policy .policy-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #13357B 0%, #1a4a9e 100%);
    color: white;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 0 5px 15px rgba(19, 53, 123, 0.3);
}

@media (max-width: 991px) {
    #pricing-policy {
        padding: 60px 0;
    }
    
    #pricing-policy .pricing-header h2 {
        font-size: 30px;
    }
    
    #pricing-policy .policy-box {
        padding: 25px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    #pricing-policy {
        padding: 50px 0;
    }
    
    #pricing-policy .pricing-header h2 {
        font-size: 26px;
    }
    
    #pricing-policy .section-description {
        font-size: 15px;
    }
    
    #pricing-policy .policy-box h3 {
        font-size: 20px;
    }
}
/*** Pricing Policy Section End ***/

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/