/* =========================================================
   Radsin Motor
   Premium Light Automotive Theme
   RTL / Persian
   Bootstrap 5.3 Compatible
========================================================= */

/* =========================================================
   01. ROOT
========================================================= */

/* =========================================================
   FONT
========================================================= */


@font-face {
    font-family: "Vazirmatn";
    src: url("./Vazirmatn-Black.ttf");
}


:root {
    --primary: #c69a3a;
    --primary-dark: #a87d24;
    --primary-light: #dfbd70;

    --dark: #172033;
    --dark-2: #253047;
    --text: #3d4656;
    --muted: #737b89;

    --white: #ffffff;
    --light: #f7f8fa;
    --light-2: #f0f2f5;
    --light-3: #e8ebef;

    --border: rgba(23, 32, 51, 0.09);
    --border-gold: rgba(198, 154, 58, 0.25);

    --shadow-sm: 0 8px 25px rgba(23, 32, 51, 0.06);
    --shadow-md: 0 18px 50px rgba(23, 32, 51, 0.09);
    --shadow-lg: 0 30px 80px rgba(23, 32, 51, 0.13);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --transition: 0.35s ease;
}


/* =========================================================
   02. RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Vazirmatn";

    color: var(--text);
    background: var(--white);

    line-height: 1.9;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
}

::selection {
    color: var(--white);
    background: var(--primary);
}


/* =========================================================
   03. SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        var(--primary-light),
        var(--primary-dark)
    );

    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/* =========================================================
   04. GLOBAL
========================================================= */

.section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.section-heading {
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: var(--primary-dark);

    font-size: 0.82rem;
    font-weight: 800;

    letter-spacing: 0.5px;
}

.section-label::before {
    content: "";
    width: 30px;
    height: 2px;

    background: var(--primary);
}

.section-heading h2 {
    margin: 0 0 20px;

    color: var(--dark);

    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 500;

    line-height: 1.45;
}

.section-heading h2 strong {
    display: inline;
    color: var(--primary-dark);
    font-weight: 900;
}

.section-heading p {
    max-width: 700px;
    margin: 0 0 14px;

    color: var(--muted);

    font-size: 0.98rem;
    line-height: 2.15;
}


/* =========================================================
   05. BUTTONS
========================================================= */

.btn-primary-custom,
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 0 25px;

    border-radius: 12px;

    font-size: 0.88rem;
    font-weight: 800;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.btn-primary-custom {
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    box-shadow:
        0 10px 25px rgba(198, 154, 58, 0.22);
}

.btn-primary-custom:hover {
    color: var(--white);

    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(198, 154, 58, 0.3);
}

.btn-primary-custom i,
.btn-outline-custom i {
    transition: transform var(--transition);
}

.btn-primary-custom:hover i {
    transform: translateX(-4px);
}

.btn-outline-custom {
    color: var(--dark);
    background: rgba(255, 255, 255, 0.85);

    border: 1px solid var(--border);
}

.btn-outline-custom:hover {
    color: var(--primary-dark);

    background: var(--white);

    border-color: var(--border-gold);

    transform: translateY(-3px);

    box-shadow: var(--shadow-sm);
}

.btn-outline-custom:hover i {
    transform: translateX(-4px);
}


/* =========================================================
   06. HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    z-index: 1000;

    padding: 14px 0;

    background: rgba(255, 255, 255, 0.88);

    border-bottom: 1px solid rgba(23, 32, 51, 0.07);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        padding var(--transition),
        box-shadow var(--transition);
}

.site-header::before {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(198, 154, 58, 0.35),
        transparent
    );
}

.navbar {
    min-height: 62px;
    padding: 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin: 0;

    color: var(--dark);
}

.logo-mark {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    background: linear-gradient(
        145deg,
        var(--primary-light),
        var(--primary-dark)
    );

    border-radius: 13px;

    font-family: Georgia, serif;
    font-size: 1.45rem;
    font-weight: 900;

    box-shadow:
        0 8px 20px rgba(198, 154, 58, 0.2);
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-title {
    color: var(--dark);

    font-size: 1rem;
    font-weight: 900;

    line-height: 1.5;
}

.logo-subtitle {
    color: var(--muted);

    font-size: 0.68rem;
    font-weight: 500;

    line-height: 1.5;
}

.navbar-nav {
    align-items: center;
    gap: 4px;
}

.nav-link {
    position: relative;

    padding: 9px 13px !important;

    color: var(--text) !important;

    font-size: 0.83rem;
    font-weight: 700;

    transition: color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;

    right: 13px;
    bottom: 2px;
    left: 13px;

    height: 2px;

    background: var(--primary);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-actions {
    align-items: center;
}


/* =========================================================
   07. MOBILE MENU
========================================================= */

.mobile-menu-btn {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--dark);
    background: var(--light);

    border: 1px solid var(--border);
    border-radius: 12px;

    font-size: 1.4rem;
}

.mobile-menu {
    width: min(360px, 88vw);

    color: var(--white) !important;

    background: var(--dark);

    border: 0 !important;
}

.mobile-menu .offcanvas-header {
    padding: 25px;
}

.mobile-menu .btn-close {
    opacity: 1;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu .logo-title {
    color: var(--white);
}

.mobile-menu .logo-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.mobile-navigation {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 16px;

    color: rgba(255, 255, 255, 0.72);

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;

    font-size: 0.9rem;
    font-weight: 700;

    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--white);

    background: rgba(198, 154, 58, 0.14);

    border-color: rgba(198, 154, 58, 0.25);
}

.mobile-nav-link i {
    color: var(--primary-light);
}

.mobile-menu-bottom {
    padding-top: 30px;
}

.mobile-menu-bottom p {
    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.82rem;
}


/* =========================================================
   08. HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--dark);
}

.hero-background {
    position: absolute;
    inset: 0;

    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(23, 32, 51, 0.78) 0%,
            rgba(23, 32, 51, 0.48) 40%,
            rgba(23, 32, 51, 0.15) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    padding-top: 100px;
}

.hero-content {
    max-width: 780px;

    color: var(--white);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: var(--primary-light);

    font-size: 0.85rem;
    font-weight: 800;
}

.hero-label span {
    width: 34px;
    height: 2px;

    background: var(--primary-light);
}

.hero-content h1 {
    margin: 0 0 22px;

    color: var(--white);

    font-size: clamp(2.6rem, 6vw, 5.4rem);
    font-weight: 500;

    line-height: 1.28;
}

.hero-content h1 strong {
    display: block;

    color: var(--primary-light);

    font-weight: 900;
}

.hero-content > p {
    max-width: 700px;

    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 1rem;

    line-height: 2.2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 34px;
}

.hero-actions .btn-outline-custom {
    color: var(--white);

    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline-custom:hover {
    color: var(--dark);

    background: var(--white);

    border-color: var(--white);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.hero-features > div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.78rem;
    font-weight: 600;
}

.hero-features i {
    color: var(--primary-light);

    font-size: 1.1rem;
}

.scroll-down {
    position: absolute;

    right: 50%;
    bottom: 28px;

    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.68rem;

    transform: translateX(50%);

    transition: var(--transition);
}

.scroll-down:hover {
    color: var(--white);

    transform:
        translateX(50%)
        translateY(-4px);
}

.scroll-down i {
    font-size: 1rem;
}


/* =========================================================
   09. TRUST
========================================================= */

.trust-section {
    position: relative;

    padding: 0;

    background: var(--white);

    border-bottom: 1px solid var(--border);

    z-index: 5;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;

    min-height: 105px;

    padding: 20px 25px;

    border-left: 1px solid var(--border);

    transition: background var(--transition);
}

.trust-item:first-child {
    border-left: 0;
}

.trust-item:hover {
    background: var(--light);
}

.trust-item > i {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-dark);

    background: rgba(198, 154, 58, 0.1);

    border-radius: 14px;

    font-size: 1.25rem;
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--dark);

    font-size: 0.84rem;
    font-weight: 900;
}

.trust-item span {
    color: var(--muted);

    font-size: 0.72rem;
}


/* =========================================================
   10. ABOUT
========================================================= */

.about-section {
    background: var(--white);
}

.about-images {
    position: relative;

    padding: 15px 30px 30px 0;
}

.about-main-image {
    width: 100%;
    height: 560px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);
}

.about-images::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 70%;
    height: 80%;

    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);

    z-index: 0;
}

.about-main-image {
    position: relative;
    z-index: 1;
}

.about-floating-card {
    position: absolute;

    right: -5px;
    bottom: 5px;

    z-index: 3;

    min-width: 170px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: var(--white);

    background: var(--dark);

    border: 5px solid var(--white);
    border-radius: 20px;

    box-shadow: var(--shadow-md);
}

.about-floating-card strong {
    color: var(--primary-light);

    font-size: 2rem;
    font-weight: 900;

    line-height: 1.2;
}

.about-floating-card span {
    color: rgba(255, 255, 255, 0.7);

    font-size: 0.72rem;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;

    margin: 30px 0;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 12px 0;

    color: var(--text);

    font-size: 0.82rem;
    font-weight: 700;
}

.about-point i {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-dark);

    background: rgba(198, 154, 58, 0.12);

    border-radius: 50%;

    font-size: 0.8rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--primary-dark);

    font-size: 0.84rem;
    font-weight: 900;

    transition: var(--transition);
}

.text-link:hover {
    color: var(--dark);

    gap: 15px;
}

.text-link i {
    transition: var(--transition);
}


/* =========================================================
   11. STATS
========================================================= */

.stats-section {
    position: relative;

    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #f8f9fb,
            #eef1f5
        );

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    position: relative;

    padding: 10px 25px;

    text-align: center;

    border-left: 1px solid var(--border);
}

.stat-item:first-child {
    border-left: 0;
}

.stat-item strong {
    display: block;

    color: var(--dark);

    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;

    line-height: 1.2;
}

.stat-item strong .counter {
    color: var(--primary-dark);
}

.stat-item > span {
    color: var(--muted);

    font-size: 0.78rem;
    font-weight: 700;
}


/* =========================================================
   12. SERVICES
========================================================= */

.services-section {
    background: var(--light);
}

.services-section .section-heading {
    max-width: 750px;
}

.service-card {
    position: relative;

    height: 100%;

    padding: 35px 30px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 4px;
    height: 0;

    background: linear-gradient(
        180deg,
        var(--primary-light),
        var(--primary-dark)
    );

    transition: height var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: var(--border-gold);

    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    height: 100%;
}

.service-number {
    position: absolute;

    top: 20px;
    left: 22px;

    color: rgba(23, 32, 51, 0.07);

    font-family: Georgia, serif;
    font-size: 2.5rem;
    font-weight: 900;

    line-height: 1;
}

.service-card > i {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    color: var(--primary-dark);

    background: rgba(198, 154, 58, 0.1);

    border-radius: 16px;

    font-size: 1.45rem;

    transition: var(--transition);
}

.service-card:hover > i {
    color: var(--white);

    background: var(--primary);

    transform: scale(1.06);
}

.service-card h3 {
    margin: 0 0 12px;

    color: var(--dark);

    font-size: 1.05rem;
    font-weight: 900;
}

.service-card p {
    min-height: 72px;

    margin: 0 0 20px;

    color: var(--muted);

    font-size: 0.79rem;

    line-height: 2;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary-dark);

    font-size: 0.75rem;
    font-weight: 900;

    transition: var(--transition);
}

.service-card a:hover {
    gap: 13px;
    color: var(--dark);
}


/* =========================================================
   13. WHY US
========================================================= */

.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.why-card {
    padding: 30px;

    background: var(--light);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    transition: var(--transition);
}

.why-card:hover {
    background: var(--white);

    border-color: var(--border-gold);

    box-shadow: var(--shadow-md);

    transform: translateY(-5px);
}

.why-card > i {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    color: var(--primary-dark);

    background: rgba(198, 154, 58, 0.1);

    border-radius: 13px;

    font-size: 1.2rem;
}

.why-card h4 {
    margin: 0 0 8px;

    color: var(--dark);

    font-size: 0.95rem;
    font-weight: 900;
}

.why-card p {
    margin: 0;

    color: var(--muted);

    font-size: 0.75rem;
    line-height: 2;
}


/* =========================================================
   14. PROJECTS
========================================================= */

.projects-section {
    background: var(--light);
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading-row > p {
    max-width: 360px;

    margin-bottom: 20px;
}

.project-card {
    position: relative;

    height: 100%;
    min-height: 450px;

    overflow: hidden;

    background: var(--dark);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}

.project-card img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}

.project-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(8, 13, 24, 0.9),
            rgba(8, 13, 24, 0.15) 65%,
            rgba(8, 13, 24, 0.02)
        );

    z-index: 1;
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-overlay {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    z-index: 2;

    padding: 35px;
}

.project-overlay > span {
    display: inline-block;

    margin-bottom: 9px;

    color: var(--primary-light);

    font-size: 0.72rem;
    font-weight: 800;
}

.project-overlay h3 {
    margin: 0 0 8px;

    color: var(--white);

    font-size: 1.6rem;
    font-weight: 900;
}

.project-overlay p {
    margin: 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.78rem;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;

    margin-top: 25px;
}

.carousel-navigation button {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--dark);

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 50%;

    box-shadow: var(--shadow-sm);

    cursor: pointer;

    transition: var(--transition);
}

.carousel-navigation button:hover {
    color: var(--white);

    background: var(--primary);

    border-color: var(--primary);

    transform: translateY(-3px);
}


/* =========================================================
   15. PROCESS
========================================================= */

.process-section {
    background: var(--white);
}

.process-timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(6, 1fr);

    gap: 15px;

    margin-top: 55px;
}

.process-timeline::before {
    content: "";

    position: absolute;

    top: 38px;
    right: 8%;
    left: 8%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--border-gold),
            transparent
        );
}

.process-step {
    position: relative;

    z-index: 1;

    text-align: center;
}

.process-step > span {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    color: var(--primary-dark);

    background: var(--white);

    border: 1px solid var(--border-gold);
    border-radius: 50%;

    font-family: Georgia, serif;
    font-size: 1rem;
    font-weight: 900;

    box-shadow: 0 0 0 8px var(--white);

    transition: var(--transition);
}

.process-step:hover > span {
    color: var(--white);

    background: var(--primary);

    transform: translateY(-5px);

    box-shadow:
        0 0 0 8px var(--white),
        0 10px 25px rgba(198, 154, 58, 0.2);
}

.process-step div > i {
    color: var(--primary-dark);

    font-size: 1.3rem;
}

.process-step h4 {
    margin: 8px 0 5px;

    color: var(--dark);

    font-size: 0.88rem;
    font-weight: 900;
}

.process-step p {
    margin: 0;

    color: var(--muted);

    font-size: 0.68rem;
}


/* =========================================================
   16. CTA
========================================================= */

.cta-section {
    padding: 70px 0;

    background: var(--white);
}

.cta-box {
    position: relative;

    display: grid;
    grid-template-columns: 1.35fr 0.65fr;

    gap: 40px;

    min-height: 400px;

    padding: 55px;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(198, 154, 58, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #172033,
            #202b40
        );

    border-radius: 32px;

    box-shadow: var(--shadow-lg);
}

.cta-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    top: -180px;
    left: -150px;

    background: rgba(198, 154, 58, 0.13);

    border-radius: 50%;

    filter: blur(10px);
}

.cta-grid {
    position: absolute;
    inset: 0;

    opacity: 0.08;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.4) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.4) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image: linear-gradient(
        to left,
        black,
        transparent
    );
}

.cta-content,
.cta-action {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 20px;

    color: var(--primary-light);

    font-size: 0.76rem;
    font-weight: 800;
}

.cta-badge-dot {
    width: 8px;
    height: 8px;

    background: var(--primary);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(198, 154, 58, 0.12);
}

.cta-content h2 {
    max-width: 700px;

    margin: 0 0 20px;

    color: var(--white);

    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 500;

    line-height: 1.45;
}

.cta-content h2 span {
    display: block;

    color: var(--primary-light);

    font-weight: 900;
}

.cta-content > p {
    max-width: 680px;

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 0.82rem;

    line-height: 2.1;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 0.72rem;
}

.cta-feature i {
    color: var(--primary-light);
}

.cta-action {
    align-self: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 35px;

    text-align: center;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 25px;

    backdrop-filter: blur(15px);
}

.cta-action-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    color: var(--primary-light);

    background: rgba(198, 154, 58, 0.1);

    border: 1px solid rgba(198, 154, 58, 0.2);

    border-radius: 20px;

    font-size: 1.8rem;
}

.cta-action-text {
    display: flex;
    flex-direction: column;

    margin-bottom: 20px;
}

.cta-action-text small {
    color: rgba(255, 255, 255, 0.5);

    font-size: 0.68rem;
}

.cta-action-text strong {
    color: var(--white);

    font-size: 1rem;
}


/* =========================================================
   17. MAKU
========================================================= */

.maku-section {
    background: var(--light);
}

.maku-image {
    position: relative;

    padding: 15px;
}

.maku-image::before {
    content: "";

    position: absolute;

    inset: 0;

    border: 1px solid var(--border-gold);

    border-radius: var(--radius-lg);

    transform: rotate(2deg);
}

.maku-image img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 470px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);
}


/* =========================================================
   18. LICENSES
========================================================= */

.licenses-section {
    background: var(--white);
}

.license-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin: 45px 0 30px;
}

.license-info-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 22px;

    background: var(--light);

    border: 1px solid var(--border);
    border-radius: 16px;

    transition: var(--transition);
}

.license-info-card:hover {
    background: var(--white);

    border-color: var(--border-gold);

    box-shadow: var(--shadow-sm);

    transform: translateY(-4px);
}

.license-info-card > i {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 48px;

    color: var(--primary-dark);

    background: rgba(198, 154, 58, 0.1);

    border-radius: 13px;

    font-size: 1.2rem;
}

.license-info-card span {
    display: block;

    color: var(--muted);

    font-size: 0.7rem;
}

.license-info-card strong {
    display: block;

    color: var(--dark);

    font-size: 0.82rem;
    font-weight: 900;
}

.license-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.license-image {
    position: relative;

    height: 340px;

    overflow: hidden;

    background: var(--light);

    border: 1px solid var(--border);
    border-radius: 20px;

    box-shadow: var(--shadow-sm);
}

.license-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(23, 32, 51, 0.15),
        transparent
    );

    pointer-events: none;
}

.license-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.license-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   19. FAQ
========================================================= */

.faq-section {
    background: var(--light);
}

.custom-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-accordion .accordion-item {
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border) !important;
    border-radius: 15px !important;

    box-shadow: none;

    transition: var(--transition);
}

.custom-accordion .accordion-item:hover {
    border-color: var(--border-gold) !important;
}

.custom-accordion .accordion-button {
    padding: 21px 24px;

    color: var(--dark);

    background: var(--white);

    box-shadow: none !important;

    font-size: 0.83rem;
    font-weight: 800;
}

.custom-accordion .accordion-button::after {
    width: 13px;
    height: 13px;

    background-size: 13px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-dark);

    background: rgba(198, 154, 58, 0.04);
}

.custom-accordion .accordion-body {
    padding: 0 24px 22px;

    color: var(--muted);

    background: rgba(198, 154, 58, 0.04);

    font-size: 0.77rem;

    line-height: 2.1;
}


/* =========================================================
   20. CONTACT
========================================================= */

.contact-section {
    background: var(--white);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 11px;

    margin-top: 30px;
}

.contact-item {
    position: relative;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 15px 17px;

    background: var(--light);

    border: 1px solid var(--border);
    border-radius: 15px;

    transition: var(--transition);
}

.contact-item:hover {
    background: var(--white);

    border-color: var(--border-gold);

    box-shadow: var(--shadow-sm);

    transform: translateX(-5px);
}

.contact-item-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-dark);

    background: rgba(198, 154, 58, 0.1);

    border-radius: 13px;

    font-size: 1.15rem;
}

.contact-item > div:not(.contact-item-icon) {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.contact-item span {
    color: var(--muted);

    font-size: 0.67rem;
}

.contact-item strong {
    color: var(--dark);

    font-size: 0.82rem;
    font-weight: 900;
}

.contact-arrow {
    margin-right: auto;

    color: var(--primary);

    transition: var(--transition);
}

.contact-item:hover .contact-arrow {
    transform: translate(-4px, -4px);
}

.contact-whatsapp .contact-item-icon {
    color: #168c48;
    background: rgba(22, 140, 72, 0.09);
}

.contact-instagram .contact-item-icon {
    color: #b04483;
    background: rgba(176, 68, 131, 0.09);
}

.contact-experience {
    position: relative;

    min-height: 100%;

    padding: 45px;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(198, 154, 58, 0.18),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #172033,
            #222e44
        );

    border-radius: 30px;

    box-shadow: var(--shadow-lg);
}

.contact-glow {
    position: absolute;

    width: 280px;
    height: 280px;

    right: -120px;
    bottom: -150px;

    background: rgba(198, 154, 58, 0.14);

    border-radius: 50%;

    filter: blur(5px);
}

.contact-grid {
    position: absolute;
    inset: 0;

    opacity: 0.06;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.5) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
}

.contact-experience-content {
    position: relative;
    z-index: 2;
}

.contact-experience-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 45px;
}

.contact-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.7rem;
}

.contact-status span {
    width: 8px;
    height: 8px;

    background: #5bc27a;

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(91, 194, 122, 0.1);
}

.contact-car-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-light);

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 15px;

    font-size: 1.4rem;
}

.experience-label {
    display: block;

    margin-bottom: 12px;

    color: var(--primary-light);

    font-size: 0.72rem;
    font-weight: 800;
}

.contact-experience-text h3 {
    max-width: 650px;

    margin: 0 0 18px;

    color: var(--white);

    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    font-weight: 500;

    line-height: 1.5;
}

.contact-experience-text h3 strong {
    color: var(--primary-light);

    font-weight: 900;
}

.contact-experience-text p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 0.8rem;

    line-height: 2.2;
}

.communication-actions {
    display: flex;
    align-items: stretch;
    gap: 12px;

    margin-top: 30px;
}

.communication-main {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 15px 18px;

    color: var(--white);

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;

    transition: var(--transition);
}

.communication-main:hover {
    color: var(--white);

    background: rgba(255, 255, 255, 0.11);

    transform: translateY(-3px);
}

.communication-main > div:first-child {
    display: flex;
    flex-direction: column;
}

.communication-main span {
    color: rgba(255, 255, 255, 0.5);

    font-size: 0.65rem;
}

.communication-main strong {
    color: var(--white);

    font-size: 0.78rem;
}

.communication-action-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-light);

    background: rgba(198, 154, 58, 0.12);

    border-radius: 11px;
}

.communication-secondary {
    display: flex;
    gap: 8px;
}

.communication-secondary a {
    width: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.7);

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 14px;

    font-size: 1.1rem;

    transition: var(--transition);
}

.communication-secondary a:hover {
    color: var(--white);

    background: var(--primary);

    border-color: var(--primary);

    transform: translateY(-3px);
}

.contact-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 35px;
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-trust-row > div {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.65rem;
}

.contact-trust-row i {
    color: var(--primary-light);
}

.contact-watermark {
    position: absolute;

    left: -25px;
    bottom: -50px;

    z-index: 1;

    color: rgba(255, 255, 255, 0.025);

    font-family: Arial, sans-serif;
    font-size: 10rem;
    font-weight: 900;

    line-height: 1;
}


/* =========================================================
   21. FOOTER
========================================================= */

.site-footer {
    position: relative;

    color: rgba(255, 255, 255, 0.7);

    background: #111827;

    overflow: hidden;
}

.site-footer::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;

    padding: 70px 0 55px;
}

.footer-brand .navbar-brand {
    margin-bottom: 20px;
}

.site-footer .logo-title {
    color: var(--white);
}

.site-footer .logo-subtitle {
    color: rgba(255, 255, 255, 0.45);
}

.footer-brand p {
    max-width: 320px;

    margin: 0;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.75rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links h4 {
    margin: 0 0 10px;

    color: var(--white);

    font-size: 0.82rem;
    font-weight: 900;
}

.footer-links a {
    width: fit-content;

    color: rgba(255, 255, 255, 0.5);

    font-size: 0.72rem;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);

    transform: translateX(-4px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.35);

    font-size: 0.64rem;
}


/* =========================================================
   22. BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--dark);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;

    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    cursor: pointer;

    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--white);

    background: var(--primary);

    transform: translateY(-4px);
}


/* =========================================================
   23. REVEAL ANIMATION
========================================================= */

/*
   مهم:
   محتوا در حالت عادی VISIBLE است.
   بنابراین اگر main.js اجرا نشود، سایت خالی نمی‌شود.
*/

.reveal {
    opacity: 1;
    visibility: visible;

    transform: none;
}

/*
   اگر main.js کلاس reveal-active اضافه کند،
   انیمیشن فعال می‌شود.
*/

.reveal.reveal-hidden {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.reveal-hidden.reveal-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   24. PAGE LOADER
========================================================= */

#page-loader {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #f5f6f8 55%,
            #eceff3 100%
        );

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-scene {
    position: relative;

    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-wheel {
    position: relative;

    width: 105px;
    height: 105px;

    z-index: 3;

    animation: loaderWheelRotate 1.2s linear infinite;
}

.wheel-outer {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        145deg,
        #252f43,
        #111827
    );

    border-radius: 50%;

    box-shadow:
        0 15px 35px rgba(23, 32, 51, 0.18);
}

.wheel-outer::before {
    content: "";

    position: absolute;

    inset: 8px;

    border: 3px solid var(--primary);

    border-radius: 50%;
}

.wheel-inner {
    position: relative;

    width: 60px;
    height: 60px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);

    gap: 3px;

    padding: 7px;

    border-radius: 50%;
}

.wheel-inner span {
    display: block;

    background: var(--primary-light);

    border-radius: 50%;
}

.wheel-center {
    position: absolute;

    width: 22px;
    height: 22px;

    background: var(--primary);

    border: 5px solid #111827;

    border-radius: 50%;
}

.loader-shadow {
    position: absolute;

    right: 50%;
    bottom: 2px;

    width: 115px;
    height: 13px;

    background: rgba(23, 32, 51, 0.12);

    border-radius: 50%;

    filter: blur(4px);

    transform: translateX(50%);
}

.smoke {
    position: absolute;

    border-radius: 50%;

    background: rgba(160, 166, 176, 0.15);

    filter: blur(3px);

    animation: smokeMove 2s ease-in-out infinite;
}

.smoke-1 {
    width: 20px;
    height: 20px;

    right: 5px;
    bottom: 22px;
}

.smoke-2 {
    width: 28px;
    height: 28px;

    right: -8px;
    bottom: 38px;

    animation-delay: 0.3s;
}

.smoke-3 {
    width: 16px;
    height: 16px;

    right: -18px;
    bottom: 55px;

    animation-delay: 0.6s;
}

.smoke-4 {
    width: 25px;
    height: 25px;

    right: -25px;
    bottom: 70px;

    animation-delay: 0.9s;
}

.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 18px;
}

.loader-brand strong {
    color: var(--dark);

    font-size: 1rem;
    font-weight: 900;
}

.loader-brand span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 0.67rem;
}

@keyframes loaderWheelRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes smokeMove {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.7);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-35px, -20px) scale(1.5);
    }
}


/* =========================================================
   25. OLD PRELOADER
========================================================= */

/*
   HTML فعلی یک preloader قدیمی هم دارد.
   Loader اصلی همان #page-loader است.
*/

.preloader {
    display: none !important;
}


/* =========================================================
   26. BOOTSTRAP OVERRIDES
========================================================= */

.container {
    position: relative;
}

.carousel-item {
    transition:
        transform 0.7s ease-in-out;
}

.offcanvas {
    visibility: hidden;
}

.offcanvas.show {
    visibility: visible;
}


/* =========================================================
   27. RESPONSIVE - XL
========================================================= */

@media (max-width: 1199.98px) {

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding-right: 9px !important;
        padding-left: 9px !important;
    }

    .hero-content h1 {
        font-size: clamp(2.6rem, 6vw, 4.5rem);
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 45px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step > span {
        margin-bottom: 15px;
    }

    .footer-top {
        gap: 45px;
    }
}


/* =========================================================
   28. RESPONSIVE - LG
========================================================= */

@media (max-width: 991.98px) {

    .section {
        padding: 85px 0;
    }

    .hero-section {
        min-height: 850px;
    }

    .hero-container {
        padding-top: 120px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(23, 32, 51, 0.82),
                rgba(23, 32, 51, 0.45)
            );
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .trust-item:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .about-images {
        max-width: 700px;

        margin: 0 auto 25px;
    }

    .about-main-image {
        height: 500px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .stat-item:nth-child(3) {
        border-left: 0;
    }

    .stat-item:nth-child(n + 3) {
        padding-top: 30px;
        border-top: 1px solid var(--border);
    }

    .why-grid {
        margin-top: 15px;
    }

    .cta-box {
        grid-template-columns: 1fr;

        padding: 45px;
    }

    .cta-action {
        max-width: 500px;

        width: 100%;

        margin: 0 auto;
    }

    .license-info-grid,
    .license-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .license-gallery .license-image:last-child {
        grid-column: 1 / -1;

        max-width: 500px;
        width: 100%;

        margin: 0 auto;
    }

    .contact-experience {
        min-height: 550px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand p {
        max-width: 550px;
    }
}


/* =========================================================
   29. RESPONSIVE - MD
========================================================= */

@media (max-width: 767.98px) {

    .section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 780px;
    }

    .hero-container {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: clamp(2.35rem, 11vw, 3.5rem);
    }

    .hero-content > p {
        font-size: 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-primary-custom,
    .hero-actions .btn-outline-custom {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .scroll-down {
        display: none;
    }

    .trust-item {
        padding: 18px 15px;
    }

    .trust-item > i {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        font-size: 1rem;
    }

    .trust-item strong {
        font-size: 0.75rem;
    }

    .trust-item span {
        font-size: 0.62rem;
    }

    .about-images {
        padding: 10px 15px 25px 0;
    }

    .about-main-image {
        height: 420px;
    }

    .about-floating-card {
        right: -3px;
        bottom: 0;
    }

    .about-points {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stats-section {
        padding: 55px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding-right: 10px;
        padding-left: 10px;
    }

    .stat-item strong {
        font-size: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-heading-row {
        display: block;
    }

    .section-heading-row > p {
        margin-top: 15px;
    }

    .project-card {
        min-height: 390px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-box {
        padding: 35px 25px;

        border-radius: 24px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 9px;
    }

    .maku-image img {
        height: 400px;
    }

    .license-info-grid,
    .license-gallery {
        grid-template-columns: 1fr;
    }

    .license-gallery .license-image:last-child {
        grid-column: auto;

        max-width: none;
    }

    .license-image {
        height: 320px;
    }

    .contact-experience {
        padding: 30px 25px;

        min-height: auto;
    }

    .contact-experience-top {
        margin-bottom: 30px;
    }

    .communication-actions {
        flex-direction: column;
    }

    .communication-secondary {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .communication-secondary a {
        width: 100%;
        height: 50px;
    }

    .contact-trust-row {
        flex-direction: column;
        gap: 9px;
    }

    .contact-watermark {
        font-size: 7rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .footer-links > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}


/* =========================================================
   30. RESPONSIVE - SM
========================================================= */

@media (max-width: 575.98px) {

    .container {
        --bs-gutter-x: 1.25rem;
    }

    .section {
        padding: 60px 0;
    }

    .hero-section {
        min-height: 760px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(23, 32, 51, 0.88),
                rgba(23, 32, 51, 0.58)
            );
    }

    .hero-content h1 {
        font-size: 2.35rem;
    }

    .hero-content > p {
        font-size: 0.78rem;
    }

    .hero-label {
        font-size: 0.75rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-left: 0 !important;
        border-top: 1px solid var(--border);
    }

    .trust-item:first-child {
        border-top: 0;
    }

    .about-main-image {
        height: 350px;
    }

    .about-floating-card {
        min-width: 145px;

        padding: 15px;
    }

    .about-floating-card strong {
        font-size: 1.7rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        border-left: 0;
    }

    .stat-item:nth-child(odd) {
        border-left: 1px solid var(--border);
    }

    .stat-item:nth-child(n + 3) {
        border-top: 1px solid var(--border);
    }

    .service-card {
        padding: 28px 23px;
    }

    .service-card p {
        min-height: auto;
    }

    .project-card {
        min-height: 330px;
    }

    .project-overlay {
        padding: 24px;
    }

    .project-overlay h3 {
        font-size: 1.25rem;
    }

    .process-timeline {
        grid-template-columns: 1fr 1fr;

        gap: 30px 10px;
    }

    .process-step > span {
        width: 62px;
        height: 62px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-action {
        padding: 25px 18px;
    }

    .maku-image {
        padding: 8px;
    }

    .maku-image img {
        height: 300px;
    }

    .license-image {
        height: 280px;
    }

    .contact-experience-text h3 {
        font-size: 1.8rem;
    }

    .contact-watermark {
        font-size: 5rem;
    }

    .footer-top {
        padding: 55px 0 40px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;

        width: 44px;
        height: 44px;
    }
}


/* =========================================================
   31. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}