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

.required {
    display: inline !important;
    color: #dc2626 !important;
    background: transparent !important;
    padding: 0 !important;
    margin-left: 2px;
    border-radius: 0 !important;
    font-weight: 700;
}

:root {
    --gold: #d4af37;
    --gold-dark: #8b6508;
    --gold-deep: #5f4307;
    --gold-soft: #fff6dc;
    --gold-light: #f5d77b;
    --cream: #fffaf0;
    --bg: #fffaf2;
    --dark: #1f1a12;
    --text: #5f5442;
    --muted: #8b806d;
    --white: #ffffff;
    --line: #ead8a7;
    --shadow: 0 22px 60px rgba(139, 101, 8, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

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

section {
    scroll-margin-top: 110px;
}

.input-error {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #dc2626;
    min-height: 18px;
    font-weight: 500;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border: 2px solid #dc2626;
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border: 2px solid #16a34a;
}

.header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1240px, calc(100% - 36px));
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(234, 216, 167, 0.75);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(31, 26, 18, 0.08);
}

.header.scrolled {
    top: 8px;
    padding: 10px 16px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-mark {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(212, 175, 55, 0.32);
    border-radius: 18px;
}

.brand-mark img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.logo-text h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-dark);
    letter-spacing: 1px;
}

.logo-subline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1px;
}

.logo-subline span {
    width: 24px;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
}

.logo-subline p {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.nav a {
    position: relative;
    padding: 10px 0;
    text-decoration: none;
    color: var(--muted);
    font-size: 15px;
    font-weight: 800;
    transition: 0.25s ease;
}

.nav a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
    transition: 0.25s ease;
}

.nav a:hover {
    color: var(--gold-dark);
}

.nav a:hover::before,
.nav a.active::before {
    width: 100%;
}

.nav a.active {
    color: var(--gold-dark);
    background: transparent;
    box-shadow: none;
}

.primary-btn,
.outline-btn {
    position: relative;
    height: 54px;
    padding: 0 28px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    overflow: hidden;
    transition: 0.25s ease;
    box-shadow: 0 16px 30px rgba(139, 101, 8, 0.22);
}

.outline-btn {
    border: 1px solid var(--line);
    color: var(--gold-dark);
    background: var(--white);
}

.primary-btn:hover,
.outline-btn:hover {
    transform: translateY(-3px);
}

.menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-size: 20px;
}

.hero {
    min-height: 100vh;
    padding: 150px 7% 70px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 22%,
            rgba(212, 175, 55, 0.22),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 14%,
            rgba(139, 101, 8, 0.14),
            transparent 30%
        ),
        linear-gradient(135deg, #ffffff, #fff3d2);
}

.eyebrow,
.section-title span,
.benefit-content span,
.about-content span,
.contact span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 15px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 900;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 22px;
    font-size: clamp(42px, 5.6vw, 74px);
    line-height: 1.02;
    letter-spacing: -2.5px;
    color: #18120d;
}

.hero p {
    max-width: 650px;
    margin: 0 0 0;
    color: #5f4930;
    font-size: 18px;
    line-height: 1.75;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    min-width: 180px;
    height: 56px;
    padding: 0 28px;
    border-radius: 18px;
    text-decoration: none;
    background: linear-gradient(135deg, #9a6a00, #d4af37);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
    border: none;
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.28);
    transition: all 0.25s ease;
}

.header-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(212, 175, 55, 0.36);
    background: linear-gradient(135deg, #b8860b, #e6c14d);
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.hero-stats div {
    min-height: 98px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 16px 35px rgba(139, 101, 8, 0.09);
}

.hero-stats strong {
    display: block;
    color: var(--gold-dark);
    font-size: 32px;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.hero-right {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.image-panel {
    position: relative;
    width: min(470px, 92%);
    height: 560px;
    background: linear-gradient(145deg, var(--gold-dark), var(--gold));
    border-radius: 42% 58% 36% 64% / 42% 34% 66% 58%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(139, 101, 8, 0.25);
}

.image-panel::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 42% 58% 36% 64% / 42% 34% 66% 58%;
}

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

.float-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.float-card-btn {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        var(--gold-dark),
        var(--gold),
        var(--gold-light)
    );
    color: var(--white);
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.float-card-btn i {
    font-size: 18px;
}

.float-card-btn:hover {
    background: #d9a520;
    color: var(--white);
    transform: translateY(-3px);
}

.float-card-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.float-card p {
    color: var(--muted);
    margin: 3px 0 0;
    font-size: 12px;
    line-height: 1.3;
}

.top-card {
    top: 115px;
    left: 0;
}

.bottom-card {
    right: 0;
    bottom: 80px;
}

.service-strip {
    height: 82px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-dark));
}

.strip-track {
    min-width: max-content;
    display: flex;
    gap: 60px;
    padding-left: 60px;
    animation: scrollServices 25s linear infinite;
}

.strip-track span {
    position: relative;
    color: var(--white);
    font-size: 17px;
    font-weight: 900;
    white-space: nowrap;
}

.strip-track span::before {
    content: "✦";
    color: var(--gold-light);
    margin-right: 14px;
}

.services,
.steps {
    padding: 95px 7%;
}

.section-title {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-title h2,
.benefit-content h2,
.about-content h2,
.contact h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -1.3px;
}

.section-title p {
    margin-top: 14px;
    color: var(--text);
    line-height: 1.7;
}

.services {
    padding: 110px 8%;
    background: #ffffff;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    margin-top: 10px;
    color: var(--dark);
    font-size: 54px;
    font-weight: 900;
}

.section-title p {
    max-width: 720px;
    margin: 14px auto 0;
    color: var(--text);
    font-size: 19px;
    line-height: 1.6;
}

.service-carousel {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-stack {
    position: relative;
    width: 760px;
    height: 560px;
}

.service-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 330px;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 28px 55px rgba(139, 101, 8, 0.18);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.75);
    transition: 0.45s ease;
}

.service-card.show {
    opacity: 1;
    pointer-events: auto;
}

.service-card.active {
    z-index: 5;
    width: 390px;
    height: 520px;
    transform: translate(-50%, -50%) scale(1);
}

.service-card.prev {
    z-index: 2;
    transform: translate(-120%, -50%) rotate(-12deg) scale(0.86);
    filter: blur(2px);
    opacity: 0.55;
}

.service-card.next {
    z-index: 2;
    transform: translate(20%, -50%) rotate(12deg) scale(0.86);
    filter: blur(2px);
    opacity: 0.55;
}

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

.service-card span {
    position: absolute;
    top: 24px;
    right: 22px;
    padding: 12px 22px;
    border-radius: 12px;
    background: var(--gold);
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(139, 101, 8, 0.28);
}

.service-arrow {
    position: absolute;
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--gold);
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 18px;
    transition: 0.25s ease;
    box-shadow: 0 12px 25px rgba(139, 101, 8, 0.28);
}

.service-arrow:hover {
    background: var(--gold-dark);
    transform: scale(1.08);
}

.service-arrow.left {
    left: 4%;
}

.service-arrow.right {
    right: 4%;
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(31, 26, 18, 0.62);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.service-modal.active {
    display: flex;
}

.service-modal-card {
    position: relative;
    width: min(680px, 100%);
    background: #ffffff;
    border-radius: 18px;
    padding: 34px 38px 30px;
    box-shadow: 0 30px 80px rgba(31, 26, 18, 0.28);
    animation: modalPop 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 35px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold-dark);
    cursor: pointer;
    font-size: 18px;
}

.service-modal-card h2 {
    padding-right: 40px;
    color: var(--gold-dark);
    font-size: 44px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.modal-img-box {
    width: 100%;
    height: 290px;
    padding: 10px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(31, 26, 18, 0.15);
    margin-bottom: 24px;
}

.modal-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.service-modal-card p {
    color: #171717;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.quote-btn {
    width: fit-content;
    min-width: 70px;
    height: 48px;
    margin-top: 18px;
    margin-left: auto;
    padding: 0 22px;
    border: 1px solid var(--gold-dark);
    border-radius: 12px;
    background: #ffffff;
    color: var(--gold-dark);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.quote-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #ffffff;
    transform: translateY(-2px);
}

.benefits {
    position: relative;
    overflow: hidden;
    padding: 110px 8%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
    background: linear-gradient(180deg, #ffffff, #fffaf2);
}

.benefits::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
}

.benefit-img {
    position: relative;
}

.benefit-bg {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 88%;
    height: 88%;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    opacity: 0.08;
}

.benefit-img img {
    position: relative;
    width: 100%;
    max-width: 560px;
    display: block;
    margin: auto;
    border-radius: 34px;
    border: 8px solid #ffffff;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
    transition: 0.35s ease;
}

.benefit-img img:hover {
    transform: translateY(-10px) scale(1.02);
}

.benefit-floating-card {
    position: absolute;
    right: -10px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.benefit-floating-card i {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #ffffff;
    font-size: 22px;
}

.benefit-floating-title {
    margin-bottom: 4px;
    color: #111827;
    font-size: 18px;
    font-weight: 800;
}

.benefit-floating-card span {
    color: #64748b;
    font-size: 14px;
}

.benefit-content .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.benefit-content h2 {
    margin: 18px 0 22px;
    color: #111827;
    font-size: 50px;
    font-weight: 900;
    line-height: 1.15;
}

.benefit-content > p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 40px;
}

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

.benefit-card {
    position: relative;
    padding: 32px 32px 32px 42px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: 0.35s ease;
}

.benefit-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 8px;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(
        180deg,
        var(--gold),
        var(--gold-dark)
    );
}

.benefit-card:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
    border-color: rgba(212, 175, 55, 0.25);
}

.benefit-card h3 {
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
}

.benefit-card p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 55px;
}

.step-card {
    position: relative;
    overflow: hidden;
    padding: 36px 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fffcf7 100%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 18px 40px rgba(139, 101, 8, 0.08);
    transition: all 0.35s ease;
    isolation: isolate;
}

.step-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.16),
        transparent 70%
    );
    transition: 0.4s ease;
}

.step-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid transparent;
    background: linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.15),
            transparent 40%
        )
        border-box;
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 28px 55px rgba(139, 101, 8, 0.16);
}

.step-card:hover::before {
    transform: scale(1.15);
}

.step-number {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 58px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
    user-select: none;
    transition: 0.35s ease;
}

.step-card:hover .step-number {
    color: rgba(212, 175, 55, 0.18);
    transform: scale(1.08);
}

.step-icon-btn {
    position: relative;
    width: 72px;
    height: 72px;
    border: none;
    border-radius: 22px;
    background: linear-gradient(145deg, var(--gold-dark), var(--gold));
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 14px 35px rgba(212, 175, 55, 0.28);
    z-index: 2;
}

.step-icon-btn::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 26px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.step-card:hover .step-icon-btn {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 20px 42px rgba(212, 175, 55, 0.38);
}

.step-icon-btn:hover {
    transform: scale(1.12);
}

.step-card h3 {
    margin: 28px 0 14px;
    font-size: 31px;
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
    transition: 0.3s ease;
}

.step-card:hover h3 {
    color: var(--gold-dark);
}

.step-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #64748b;
    transition: 0.3s ease;
}

.step-card:hover p {
    color: #475569;
}

.step-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(15, 12, 8, 0.58);
    backdrop-filter: blur(6px);
}

.step-modal.show {
    display: flex;
}

.step-modal-card {
    position: relative;
    width: 100%;
    max-width: 560px;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at top right,
            rgba(217, 184, 95, 0.18),
            transparent 34%
        ),
        #ffffff;
    border: 1px solid rgba(217, 184, 95, 0.22);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    animation: stepModalShow 0.25s ease;
}

.step-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 14px;
    background: #f6f2e8;
    color: var(--dark);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: 0.25s ease;
}

.step-modal-close:hover {
    background: var(--gold);
    color: #ffffff;
    transform: rotate(90deg);
}

.step-modal-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 44px;
    margin-bottom: 20px;
}

.step-modal-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 24px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-size: 30px;
    box-shadow: inset 0 0 0 1px rgba(217, 184, 95, 0.35);
}

.step-modal-tag {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f6f2e8;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
}

.step-modal-card h3 {
    margin: 0;
    color: var(--dark);
    font-size: 27px;
    line-height: 1.2;
}

.step-modal-card p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}

.step-modal-info {
    margin: 18px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
}

.step-modal-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.5;
}

.step-modal-info span i {
    width: 18px;
    color: var(--gold-dark);
    font-size: 15px;
    flex-shrink: 0;
}

.step-modal-info i {
    color: var(--gold-dark);
    font-size: 15px;
}

.step-feature-list {
    margin: 0 0 22px;
    display: grid;
    gap: 10px;
}

.step-feature-list div {
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 15px;
    background: #faf7f1;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-feature-list i {
    color: #22c55e;
    font-size: 15px;
    flex-shrink: 0;
}

.step-modal-footer {
    display: flex;
    gap: 12px;
}

.step-modal-btn {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 15px;
    background: var(--gold);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.step-modal-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(180, 138, 44, 0.22);
}

.about {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
    padding: 120px 8%;
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 175, 55, 0.08),
            transparent 35%
        ),
        linear-gradient(180deg, #fffdf9, #fff6e7);
}

.about-gallery {
    position: relative;
    min-height: 620px;
}

.gallery-bg {
    position: absolute;
    top: 35px;
    left: 35px;
    width: 88%;
    height: 88%;
    border-radius: 42px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    opacity: 0.08;
}

.about-gallery img {
    position: absolute;
    object-fit: cover;
    border-radius: 32px;
    border: 8px solid #fff;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
    transition: 0.35s ease;
}

.main-image {
    width: 74%;
    height: 560px;
    left: 0;
    top: 0;
}

.floating-image {
    width: 48%;
    height: 340px;
    right: 0;
    bottom: 20px;
}

.about-gallery img:hover {
    transform: translateY(-10px) scale(1.02);
}

.experience-card {
    position: absolute;
    left: 25px;
    bottom: 30px;
    padding: 22px 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.experience-card h3 {
    margin: 0;
    font-size: 42px;
    color: var(--gold-dark);
    font-weight: 900;
}

.experience-card span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 15px;
}

.about-content {
    position: relative;
    padding: 48px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.06);
}

.section-tag {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff2cf;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-content h2 {
    margin: 22px 0;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    color: #111827;
}

.about-content p {
    margin-top: 18px;
    color: #64748b;
    line-height: 1.9;
    font-size: 16px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    box-shadow: 0 18px 40px rgba(139, 101, 8, 0.28);
    transition: 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 55px rgba(139, 101, 8, 0.36);
}

.about {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
    padding: 120px 8%;
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 175, 55, 0.08),
            transparent 35%
        ),
        linear-gradient(180deg, #ffffff, #fff8eb);
}

.about::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -220px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
}

.about::after {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -180px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
}

.about-gallery {
    position: relative;
    min-height: 640px;
}

.gallery-bg {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 85%;
    height: 88%;
    border-radius: 42px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    opacity: 0.08;
}

.gallery-pattern {
    position: absolute;
    right: 35px;
    top: 35px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px dashed rgba(212, 175, 55, 0.18);
}

.about-gallery img {
    position: absolute;
    object-fit: cover;
    border-radius: 32px;
    border: 8px solid #ffffff;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.14);
    transition: 0.35s ease;
}

.about-gallery img:hover {
    transform: translateY(-10px) scale(1.02);
}

.main-image {
    width: 74%;
    height: 600px;
    top: 0;
    left: 0;
}

.floating-image {
    width: 48%;
    height: 500px;
    right: 0;
    bottom: 35px;
}

.experience-card {
    position: absolute;
    left: 60px;
    bottom: 5px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
    z-index: 5;
}

.experience-number {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        var(--gold-dark),
        var(--gold)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
}

.experience-text h4 {
    margin-bottom: 6px;
    color: #111827;
    font-size: 18px;
    font-weight: 800;
}

.experience-text p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.faq-section {
    padding: 105px 7%;
    background:
        radial-gradient(
            circle at top left,
            rgba(212, 175, 55, 0.18),
            transparent 30%
        ),
        linear-gradient(135deg, #1f1a12, #5f4307, #b48a2c);
}

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

.section-title.light span {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    align-items: start;
}

.faq-left {
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.15);
}

.faq-item button {
    width: 100%;
    padding: 23px 26px;
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
}

.faq-item button span {
    font-size: 17px;
    font-weight: 900;
}

.faq-answer {
    display: none;
    padding: 0 26px 24px;
}

.faq-answer p {
    color: #fff3d0;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-right {
    display: grid;
    gap: 22px;
}

.help-card,
.hours-card,
.call-card {
    padding: 30px;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}

.help-card > i {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: var(--gold-dark);
    color: var(--white);
    font-size: 26px;
    margin-bottom: 20px;
}

.help-card h3 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.help-card p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.help-card a {
    display: inline-flex;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(139, 101, 8, 0.25);
    transform: translateY(-2px);
}

.help-card a:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(139, 101, 8, 0.32);
}

.hours-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.hours-card p {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
}

.hours-card p:last-child {
    border-bottom: 0;
}

.hours-card b {
    color: var(--gold-dark);
}

.call-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 40px rgba(31, 26, 18, 0.12);
}

.call-content small {
    display: block;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 10px;
}

.call-content h4,
.call-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}

.call-content h4 i,
.call-email i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.call-email {
    font-size: 16px;
    word-break: break-word;
}

.contact {
    margin: 45px 7% 90px;
    padding: 60px;
    border-radius: 46px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 35px;
    align-items: center;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 255, 255, 0.22),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--gold-deep),
            var(--gold-dark),
            var(--gold)
        );
    color: var(--white);
    box-shadow: var(--shadow);
}

.contact-content {
    text-align: left;
}

.contact span {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 999px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
}

.contact h2 {
    color: var(--white);
    margin-top: 18px;
    line-height: 1.2;
}

.contact p {
    max-width: 650px;
    margin: 18px 0 0;
    color: #fff3d0;
    line-height: 1.8;
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.contact-socials a {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--white);
    font-size: 24px;
    transition: 0.3s ease;
}

.facebook-social {
    background: #1877f2;
    box-shadow: 0 14px 25px rgba(24, 119, 242, 0.28);
}

.contact-socials a:hover {
    transform: translateY(-6px) scale(1.05);
}

.inquiry-form {
    background: #ffffff;
    padding: 28px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(31, 26, 18, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group {
    width: 100%;
    margin-bottom: 16px;
}

.form-group.full {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 50px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    padding: 0 14px;
    color: var(--dark);
    font-size: 14px;
    outline: none;
}

.form-group input,
.form-group select {
    height: 52px;
    padding: 0 15px;
}

.form-group textarea {
    min-height: 120px;
    padding: 14px 15px;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-group textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.location-option {
    position: relative;
    min-height: 78px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: 0.25s ease;
}

.location-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-design {
    position: relative;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: #ffffff;
    flex-shrink: 0;
    transition: 0.25s ease;
}

.radio-design::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-dark);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.25s ease;
}

.location-option div {
    display: flex;
    align-items: center;
}

.location-option strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.location-option:hover {
    border-color: var(--gold);
    background: var(--gold-soft);
}

.location-option input:checked + .radio-design::after {
    transform: translate(-50%, -50%) scale(1);
}

.location-option.valid {
    border: 2px solid #16a34a;
}

.location-option.error {
    border: 2px solid #ef4444;
}

.phone-field {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.phone-field select {
    flex: 0 0 140px;
    width: 140px;
    height: 54px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    font-size: 15px;
}

.phone-field input {
    flex: 1;
    min-width: 0;
}

.inquiry-form button {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s ease;
}

.inquiry-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(139, 101, 8, 0.28);
}

#phoneNumber {
    text-align: left !important;
    padding-left: 20px !important;
}

.footer {
    padding: 70px 7% 30px;
    background: var(--dark);
    color: #ffffff;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
    width: 72px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #f8e7ba;
    margin-bottom: 18px;
    font-size: 17px;
}

.footer-brand h2 {
    max-width: 420px;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.3;
}

.footer-heading {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #f8e7ba;
    font-size: 17px;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column i {
    font-size: 16px;
}

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

.footer-bottom p {
    color: #f8e7ba;
    font-size: 16px;
}

.message-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.48);
}

.message-modal.show {
    display: flex;
}

.message-box {
    width: 100%;
    max-width: 460px;
    padding: 32px 30px 30px;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    animation: modalPop 0.25s ease;
}

#closeMessageModal,
#messageIcon {
    display: none;
}

.message-box h3 {
    color: #050505;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 0;
    margin-bottom: 18px;
}

.message-box p {
    padding-top: 20px;
    border-top: 1px solid #d6d6d6;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 27px;
}

#messageBtn {
    width: 100%;
    height: 37px;
    border: none;
    border-radius: 8px;
    background: var(--gold);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

#messageBtn:hover {
    filter: brightness(0.95);
}

#messageBtn:active {
    transform: scale(0.98);
}

.announcement-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    z-index: 99999;
    animation: fadeIn 0.25s ease;
}

.announcement-modal-content {
    width: min(680px, 100%);
    max-height: 85vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 22px;
    padding: 34px;
    position: relative;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
    animation: modalUp 0.3s ease;
}

.announcement-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f8fafc;
    color: #475569;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-close:hover {
    background: #8b6508;
    color: #fff;
    transform: rotate(90deg);
}

.announcement-item {
    padding: 22px 0;
    border-bottom: 1px solid #eef2f7;
}

.announcement-item:last-child {
    border-bottom: none;
}

.announcement-item h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #8b6508;
}

.announcement-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

.announcement-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.announcement-nav-btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #8b6508;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 8px 20px rgba(139, 101, 8, 0.25);
}

.announcement-nav-btn:hover:not(:disabled) {
    background: #6d4f05;
    transform: translateY(-2px);
}

.announcement-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.announcement-pagination span {
    min-width: 90px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.4px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalUp {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }

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

@keyframes modalPop {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }

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

@keyframes scrollServices {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes modalShow {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }

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

@media (max-width: 1400px) {
    .hero,
    .benefits,
    .about,
    .faq-wrapper,
    .contact,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 140px 6% 80px;
        text-align: center;
        gap: 60px;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero p,
    .section-title p,
    .contact p {
        margin-inline: auto;
    }

    .hero-actions,
    .contact-socials {
        justify-content: center;
    }

    .hero-right {
        min-height: auto;
    }

    .image-panel {
        width: min(500px, 100%);
        height: 560px;
    }

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

@media (max-width: 1200px) {
    .header {
        width: calc(100% - 28px);
    }

    .hero {
        gap: 50px;
    }

    .about,
    .benefits {
        gap: 60px;
    }

    .about-content {
        text-align: center;
    }

    .service-carousel {
        min-height: 560px;
        padding: 0 70px;
    }

    .service-stack {
        width: 100%;
        max-width: 720px;
        height: 500px;
    }

    .service-card {
        width: 290px;
        height: 410px;
    }

    .service-card.active {
        width: 340px;
        height: 470px;
    }

    .contact {
        padding: 45px 35px;
    }
}

@media (max-width: 992px) {
    .header {
        top: 12px;
        padding: 15px 18px;
        border-radius: 22px;
    }

    .menu-btn {
        display: grid;
        place-items: center;
    }

    .nav {
        position: absolute;
        top: 86px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        background: #fff;
        border-radius: 22px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    }

    .nav.show {
        display: flex;
    }

    .hero {
        padding-top: 145px;
    }

    .hero h1 {
        font-size: 48px;
    }

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

    .steps-grid,
    .benefit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-carousel {
        min-height: 500px;
        padding: 0 60px;
    }

    .service-stack {
        height: 430px;
    }

    .service-card {
        width: 240px;
        height: 340px;
    }

    .service-card.active {
        width: 290px;
        height: 400px;
    }

    .service-card.prev {
        transform: translate(-105%, -50%) scale(0.82);
    }

    .service-card.next {
        transform: translate(5%, -50%) scale(0.82);
    }

    .contact {
        margin: 40px 5%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero,
    .services,
    .steps,
    .benefits,
    .about,
    .faq-section,
    .contact {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero {
        min-height: auto;
        padding-top: 118px;
        padding-bottom: 52px;
        gap: 28px;
        text-align: center;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.65;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 22px;
    }

    .primary-btn,
    .outline-btn,
    .header-btn {
        width: 100%;
        max-width: none;
        height: 48px;
        border-radius: 14px;
        font-size: 14px;
    }

    .hero-stats,
    .steps-grid,
    .benefit-grid,
    .footer-top,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 10px;
        margin-top: 24px;
    }

    .hero-stats div {
        padding: 16px;
        border-radius: 18px;
    }

    .image-panel {
        width: 100%;
        max-width: 300px;
        height: 320px;
    }

    .float-card,
    .experience-card,
    .benefit-floating-card {
        display: none;
    }

    .about,
    .benefits {
        gap: 32px;
    }

    .about-gallery,
    .benefit-img {
        min-height: auto;
    }

    .gallery-bg,
    .gallery-pattern {
        display: none;
    }

    .main-image,
    .floating-image,
    .about-gallery img,
    .benefit-img img {
        position: static;
        width: 100%;
        height: clamp(320px, 45vh, 430px) !important;
        max-height: 430px;
        margin-bottom: 18px;
        border-width: 5px;
        object-fit: cover;
    }

    .about-content {
        padding: 24px 18px;
        border-radius: 24px;
        text-align: center;
    }

    .section-title h2,
    .benefit-content h2,
    .about-content h2,
    .contact h2 {
        font-size: 27px;
        line-height: 1.18;
    }

    .section-title p,
    .benefit-content > p,
    .about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-carousel {
        min-height: 455px;
        padding: 0 20px;
    }

    .service-stack {
        height: 405px;
    }

    .service-card {
        width: min(300px, calc(100vw - 80px));
        height: 335px;
    }

    .service-card.active {
        width: min(330px, calc(100vw - 64px));
        height: 385px;
    }

    .service-card.prev,
    .service-card.next {
        opacity: 0.18;
        filter: blur(4px);
    }

    .service-arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .service-card span {
        top: 16px;
        right: 14px;
        max-width: calc(100% - 28px);
        padding: 9px 14px;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.2;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .faq-item button {
        padding: 16px;
    }

    .faq-item button span {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .help-card,
    .hours-card,
    .call-card {
        padding: 18px;
        border-radius: 18px;
    }

    .hours-card p {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .call-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .call-content h4,
    .call-email {
        word-break: break-word;
        overflow-wrap: anywhere;
        font-size: 15px;
    }

    .contact {
        padding: 24px 16px;
        border-radius: 22px;
        gap: 22px;
        margin: 28px 5%;
    }

    .contact-content {
        text-align: center;
    }

    .contact-socials {
        justify-content: center;
    }

    .inquiry-form {
        padding: 20px 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 12px;
        border-radius: 18px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .logo-text h2 {
        font-size: 11px;
    }

    .logo-subline {
        display: none;
    }

    .hero {
        padding-top: 108px;
        padding-bottom: 44px;
    }

    .hero h1 {
        font-size: 25px;
        line-height: 1.18;
    }

    .hero p {
        font-size: 12.5px;
    }

    .hero-stats {
        gap: 9px;
    }

    .hero-stats div {
        padding: 14px;
        min-height: auto;
    }

    .hero-stats strong {
        font-size: 23px;
    }

    .image-panel {
        width: 100%;
        max-width: 240px;
        height: 255px;
    }

    .main-image,
    .floating-image,
    .about-gallery img,
    .benefit-img img {
        height: clamp(280px, 42vh, 360px) !important;
        max-height: 360px;
    }

    .about-content {
        padding: 24px 18px;
    }

    .section-title h2,
    .benefit-content h2,
    .about-content h2,
    .contact h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .service-carousel {
        min-height: 410px;
        padding: 0 18px;
    }

    .service-stack {
        height: 365px;
    }

    .service-card {
        width: min(280px, calc(100vw - 84px));
        height: 315px;
    }

    .service-card.active {
        width: min(308px, calc(100vw - 68px));
        height: 350px;
    }

    .service-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .faq-item button {
        padding: 16px;
    }

    .faq-item button span {
        font-size: 16px;
    }

    .help-card,
    .hours-card,
    .call-card {
        padding: 18px;
    }

    .help-card h3 {
        font-size: 22px;
    }

    .call-content h4,
    .call-email {
        font-size: 14px;
    }

    .contact {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .contact-socials a {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 23px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 12px;
    }

    .hero-stats strong {
        font-size: 20px;
    }

    .image-panel {
        max-width: 210px;
        height: 220px;
    }

    .main-image,
    .floating-image,
    .about-gallery img,
    .benefit-img img {
        height: clamp(260px, 40vh, 330px) !important;
        max-height: 330px;
    }

    .service-carousel {
        min-height: 380px;
        padding: 0 16px;
    }

    .service-stack {
        height: 340px;
    }

    .service-card {
        width: min(252px, calc(100vw - 86px));
        height: 290px;
    }

    .service-card.active {
        width: min(282px, calc(100vw - 70px));
        height: 325px;
    }

    .service-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .hours-card p,
    .call-content h4,
    .call-email {
        font-size: 13px;
    }

    .contact {
        padding: 18px 14px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) and (max-height: 700px) {
    .about-gallery {
        min-height: 390px;
    }

    .main-image,
    .floating-image,
    .about-gallery img,
    .benefit-img img {
        height: min(420px, 62vh) !important;
        max-height: 420px;
        object-fit: cover;
    }
}