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

/* Global styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF;
}

/* Custom font */
@font-face {
    font-family: 'Crenzo';
    src: url('fonts/CRENZO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

/* Alignment */
.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* =========== HEADER ============ */

.header {
    background-color: #0B1126;
    display: flex;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #D10A14;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

/* Logo */
.logo {
    flex-shrink: 0;
    padding-left: 40px;
}

.logo a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Crenzo', sans-serif;
    font-weight: normal;
}

.logo-box {
    background: #DE0A14;
    color: white;
    text-decoration: none;
    padding: 8px 40px;
    display: inline-block;
    transition: background 0.25s ease, transform 0.25s ease;
}

.logo-box:hover {
    background: #b80810;
}

/* Nav */
.nav {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    margin: 0 auto;
}

.nav a {
    color: #FFFFFF;
    margin: 0 16px;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.25s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #DE0A14;
    transition: width 0.25s ease;
}

.nav a:hover {
    color: #f0f0f0;
}

.nav a:hover::after {
    width: 100%;
}

/* Active page underline */
.nav .active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #FFFFFF;
}

.nav .active:hover::after {
    background: #FFFFFF;
}

/* Contact button */
.CTA-btn {
    background: #DE0A14;
    color: #FFFFFF;
    padding: 8px 64px;
    border-radius: 24px;
    border-width: 0;
    font-family: 'Crenzo', sans-serif;
    text-decoration: none;
    margin-right: 40px;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.CTA-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(222, 10, 20, 0.45);
    background: #f01c26;
}

.CTA-btn:active {
    transform: translateY(-1px);
}

/* ============= LANGUAGE SWITCHER ============= */

.lang-switch {
    position: relative;
    flex-shrink: 0;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.lang-current:hover {
    border-color: #DE0A14;
    background: rgba(222, 10, 20, 0.12);
}

.lang-current .chevron {
    font-size: 9px;
    transition: transform 0.25s ease;
}

.lang-switch.open .lang-current .chevron {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1200;
}

.lang-switch.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0B1126;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lang-menu button:hover {
    background: #f6f6f6;
}

.lang-menu button.active {
    color: #DE0A14;
    font-weight: 600;
}

/* ============= BURGER MENU ============= */

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1300;
}

.burger span {
    width: 26px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 82%);
    height: 100vh;
    background: #0B1126;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1250;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-drawer a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-drawer a:hover,
.mobile-drawer a.active {
    color: #DE0A14;
    padding-left: 8px;
}

.mobile-drawer .CTA-btn {
    margin: 24px 0 0;
    text-align: center;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 1200;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer .lang-switch-mobile {
    margin-top: 24px;
}

.mobile-drawer .lang-switch-mobile p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mobile-drawer .lang-options {
    display: flex;
    gap: 10px;
}

.mobile-drawer .lang-options button {
    flex: 1;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.mobile-drawer .lang-options button.active,
.mobile-drawer .lang-options button:hover {
    background: #DE0A14;
    border-color: #DE0A14;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    overflow: hidden;
}

/* Overlay block */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: #F6F6F6;
    height: 188px;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}

/* Big background text */
.hero-title {
    font-size: 56px;
    line-height: 62px;
    color: #FFFFFF;
    font-family: 'Crenzo', sans-serif;
    max-width: 1184px;
    max-height: 188px;
}

/* Small red text */
.hero-subtitle {
    color: #D10A14;
    font-size: 12px;
    position: absolute;
    right: 40px;
    top: 40px;
}

/* Full-width image */
.hero-img {
    width: 100%;
    height: 478px;
    display: block;
    object-fit: cover;
}


/* ============= SERVICES ============= */

.services {
    padding: 80px 0;
    text-align: center;
}

/* Section title */
.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Crenzo', sans-serif;

    max-width: 524px;

    margin-left: auto;
    margin-right: auto;
}

/* Grid layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    width: 80%;
    margin: auto;
}

/* Card */
.card {
    background: #0b1126;
    padding: 28px;
    text-align: left;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* Card image */
.card img {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 4px;
}

/* Card title */
.card h3 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    max-width: 280px;
}

/* Button */
.card button,
.card .card-link {
    background: #D10A14;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;

    border: none;
    padding: 12px 32px;
    border-radius: 16px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.card button:hover,
.card .card-link:hover {
    background: #FFFFFF;
    color: #0B1126;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}


/* ============ WHY SECTION ============*/
.why {
    background: #0B1126;
    color: white;
}


.why-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* left side */
.why-text {
    padding: 112px 40px;
    max-width: 40%;
    flex: 1;
}

/* right side */
.why-img {
    flex: 1;
}

.why-img img {
    width: 100%;
    display: block;
}

/* fonts */
.mont {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 600;
}

.crenzo {
    font-family: 'Crenzo', sans-serif;
    font-size: 32px;
}

/* line */
.line {
    width: 152px;
    height: 2px;
    background: #DE0A14;
    margin-top: 12px;
}

.why-text h3 {
    margin-top: 40px;
    font-size: 20px;

}

.why-text p {
    margin-top: 16px;
    font-size: 16px;
}


/* ======= CTA section ========= */

.CTA-section {
    background: #DE0A14;
    padding: 88px 40px;
    color: #ffffff;
}

.CTA-container {
    display: flex;
    gap: 12px;
}

.CTA-left {
    flex: 2;
}

.CTA-left h2 {
    font-size: 72px;
    line-height: 72px;
}

.CTA-right {
    padding: 40px;
    flex: 1;
}

.CTA-right p {
    font-size: 16px;
}

/* button */
.CTA-dark {
    margin-top: 40px;
    background-color: #0b1126;
    color: #ffffff;
    font-family: 'Crenzo', sans-serif;
    font-size: 16px;
    border: none;
    padding: 12px 64px;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.CTA-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}


/* =============== PROJECTS ================ */
.projects {
    padding: 80px 40px;
}

/* title */
.projects-title {
    font-family: 'Crenzo', sans-serif;
    font-size: 48px;
    margin-bottom: 12px;
}

.projects p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-top: 12px;
}

/* grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* images */
.projects-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.projects-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

/* ======== CONTACT ========= */
.contact {
    background: #DE0A14;
    padding: 160px 40px;
    color: white;
}

.contact-container {
    display: flex;
    gap: 56px;
}

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-family: 'Crenzo', sans-serif;
    font-size: 48px;
    color: #0b1126;
}

.contact-left p {
    margin-top: 16px;
    max-width: 380px;
    font-size: 16px;
}

.contact-right {
    flex: 1;
}

/*form*/
.row {
    display: flex;
    gap: 28px;
}

.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    flex: 1;
}

.field label {
    font-size: 16px;
    margin-bottom: 8px;
}

.field input,
.field textarea {
    padding: 12px;
    border: 2px solid transparent;
    background: #EAEAEA;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: #0B1126;
    background: #FFFFFF;
}

.field textarea {
    height: 102px;
    resize: none;
}

/* button */
.send-btn {
    margin-top: 28px;
    width: 100%;
    padding: 12px 64px;
    background: #0B1126;
    color: white;
    font-family: 'Crenzo', sans-serif;
    font-size: 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    background: #19213D;
}

.form-success {
    display: none;
    margin-top: 20px;
    padding: 16px 20px;
    background: #0B1126;
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 14px;
}

.form-success.visible {
    display: block;
}

/* STATS */
.stats {
    background: #19213D;
    padding: 54px 40px;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat h3 {
    font-family: 'Crenzo', sans-serif;
    font-size: 47px;
    color: #D10A14;
}

.stat p {
    font-size: 20px;
    color: white;
}


/* =============== FOOTER =============== */
.footer {
    background: #0B1126;
    padding: 80px 40px;
    color: white;
}

/* top */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* logo */
.footer-logo {
    font-family: 'Crenzo', sans-serif;
    font-size: 20px;
}

/* socials */
.socials a {
    margin-left: 10px;
    text-decoration: none;
    color: white;
    display: inline-block;
    transition: transform 0.25s ease;
}

.socials a:hover {
    transform: translateY(-4px);
}


.socials img {
    width: 32px;
    height: 32px;
    margin-left: 12px;
}

/* bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/* texts */
.footer-bottom .left {
    font-size: 16px;
    color: #aaa;
}

.footer-bottom .right {
    font-size: 20px;
    color: #aaa;
}

/* =========== ABOUT US =================*/

/* HERO */
.about-hero {
    background: #0B1126;
    color: white;
    text-align: center;
    padding: 120px 40px;
}

.mission {
    color: #D10A14;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-hero h1 {
    font-family: 'Crenzo', sans-serif;
    font-size: 48px;
    margin-bottom: 24px;
}

.about-desc {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
}

/* ABOUT */
.about-split {
    padding: 80px 40px;
}

.split-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-title {
    font-size: 40px;
    color: #0B1126;
    font-family: 'Crenzo', sans-serif;
    margin-bottom: 24px;
}

.text {
    flex: 1;
}

.text p {
    line-height: 1.7;
}

.image {
    flex: 1;
}

.image img {
    width: 100%;
    display: block;
    border-radius: 6px;
}


/* EXPERIENCE */

.experience {
    background: #0B1126;
    padding: 80px 40px;
    color: #ffffff;
}

.experience h2 {
    font-family: 'Crenzo', sans-serif;
    font-size: 40px;
}

.experience p {
    margin-top: 24px;
    max-width: 600px;
}


/* PORTFOLIO */
.hall {
    padding: 80px 40px;
    background: #F6F6F6;
}

.main-img {
    width: 100%;
    margin-top: 40px;
    border-radius: 6px;
}

/* top row */
.hall-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hall-title {
    font-family: 'Crenzo', sans-serif;
    font-size: 40px;
}

.hall-text {
    max-width: 400px;
}

.hall-text p {
    font-size: 14px;
}

.line {
    height: 2px;
    background: #D10A14;
    margin-top: 8px;
}

/* images */
.hall-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    margin-top: 40px;
}

/* images inside grid */
.hall-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hall-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}


/* =========== SERVICE DETAIL PAGES =========== */

.service-hero {
    background: #0B1126;
    color: #ffffff;
    padding: 100px 40px 80px;
    text-align: center;
}

.service-hero .breadcrumb {
    color: #D10A14;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.service-hero .breadcrumb:hover {
    text-decoration: underline;
}

.service-hero h1 {
    font-family: 'Crenzo', sans-serif;
    font-size: 48px;
    margin: 16px 0 20px;
}

.service-hero p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.service-body {
    padding: 80px 40px;
}

.service-split {
    display: flex;
    gap: 48px;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
}

.service-split .image {
    flex: 1;
}

.service-split .text {
    flex: 1;
}

.service-split .text h2 {
    font-family: 'Crenzo', sans-serif;
    font-size: 32px;
    color: #0B1126;
    margin-bottom: 16px;
}

.service-split .text p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.service-features {
    max-width: 1320px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-feature {
    background: #F6F6F6;
    padding: 28px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.service-feature .num {
    color: #D10A14;
    font-family: 'Crenzo', sans-serif;
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.service-feature h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #0B1126;
}

.service-feature p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.related-services {
    background: #F6F6F6;
    padding: 80px 40px;
    text-align: center;
}

.related-services h2 {
    font-family: 'Crenzo', sans-serif;
    font-size: 32px;
    margin-bottom: 40px;
    color: #0B1126;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.related-grid a {
    background: #0B1126;
    color: #ffffff;
    text-decoration: none;
    padding: 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: block;
}

.related-grid a:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    background: #DE0A14;
}


/* ================== RESPONSIVE ================== */

@media (max-width: 1024px) {

    /* NAV */
    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* HEADER */
    .header .container {
        justify-content: flex-end;
        gap: 16px;
    }

    .CTA-btn {
        display: none;
    }

    .lang-switch {
        display: none;
    }

    /* HERO */
    .hero-title {
        font-size: 40px;
        line-height: 42px;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* WHY */
    .why-container {
        flex-direction: column;
    }

    .why-text {
        max-width: 100%;
        padding: 80px 40px;
    }

    /* CTA */
    .CTA-container {
        flex-direction: column;
    }

    .CTA-left h2 {
        font-size: 48px;
        line-height: 52px;
    }

    /* PROJECTS */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CONTACT */
    .contact-container {
        flex-direction: column;
    }

    /* STATS */
    .stats-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat {
        width: 48%;
    }

    /* ABOUT */
    .split-container {
        flex-direction: column;
    }

    /* PORTFOLIO */
    .hall-top {
        flex-direction: column;
        gap: 20px;
    }

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

    /* SERVICE DETAIL */
    .service-split {
        flex-direction: column;
    }

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

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* TABLET */
@media (max-width: 900px) {

    .logo-box {
        padding: 8px 20px;
        font-size: 14px;
    }

}

/* MOBILE */

@media (max-width: 768px) {

    /* GENERAL */
    body {
        font-size: 14px;
    }

    .header {
        padding: 18px 0;
    }

    .logo {
        padding-left: 20px;
    }

    .header .container {
        padding-right: 20px;
    }

    .nav {
        display: none;
    }

    /* HERO */
    .hero-title {
        font-size: 28px;
        line-height: 32px;
    }

    .hero-overlay {
        height: 140px;
        padding-left: 20px;
    }

    .hero-subtitle {
        font-size: 10px;
        right: 20px;
        top: 20px;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* PROJECTS */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    /* PORTFOLIO */
    .hall-grid {
        grid-template-columns: 1fr;
    }

    /* FORM */
    .row {
        flex-direction: column;
        gap: 16px;
    }

    /* STATS */
    .stat {
        width: 100%;
    }

    /* FOOTER */
    .footer-top {
        flex-direction: column;
        gap: 20px;
    }

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

    /* SERVICE DETAIL */
    .service-hero h1 {
        font-size: 32px;
    }

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