:root {
    --topbar-bg: #2f3259;
    --nav-text: #222;
    --muted: #6e6e6e;
    --border-soft: #d8d8d8;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

.mr-topbar {
    background: var(--topbar-bg);
    color: #fff;
    font-size: 14px;
}

.mr-topbar .container {
    max-width: 1140px;
}

.mr-topbar .topbar-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mr-topbar .topbar-left,
.mr-topbar .topbar-right {
    display: flex;
    align-items: center;
    gap: 42px;
    flex-wrap: wrap;
}

.mr-topbar .info-item,
.mr-topbar .social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.mr-topbar i {
    font-size: 22px;
    line-height: 1;
}

.mr-topbar .social-item {
    font-size: 22px;
}

.mr-topbar .topbar-right {
    padding-left: 34px;
    border-left: 1px solid rgba(255, 255, 255, .35);
    gap: 34px;
}

.mr-navbar-wrap {
    background: #fff;
    border-bottom: 1px solid #efefef;
}

.mr-navbar {
    min-height: 155px;
}

.mr-navbar .container {
    max-width: 1140px;
}

.mr-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: var(--nav-text);
}

.mr-brand img {
    width: 86px;
    height: auto;
    object-fit: contain;
}

.mr-brand .tagline {
    color: var(--muted);
    font-size: 18px;
    margin-top: 10px;
}

.mr-menu-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mr-navbar .navbar-nav {
    gap: 20px;
}

.mr-navbar .nav-link {
    color: var(--nav-text);
    font-size: 17px;
    font-weight: 400;
    padding: 0;
}

.mr-navbar .nav-link:hover,
.mr-navbar .nav-link:focus,
.mr-search-btn:hover,
.mr-search-btn:focus {
    color: #000;
}

.mr-search-btn {
    border: 0;
    background: transparent;
    color: var(--nav-text);
    font-size: 28px;
    line-height: 1;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .mr-topbar .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .mr-topbar .topbar-left,
    .mr-topbar .topbar-right {
        gap: 16px;
    }

    .mr-topbar .topbar-right {
        padding-left: 0;
        border-left: 0;
    }

    .mr-navbar {
        min-height: auto;
        padding: 18px 0;
    }

    .mr-menu-center {
        position: static;
        transform: none;
        margin-top: 18px;
    }

    .mr-brand {
        align-items: flex-start;
    }

    .mr-brand .tagline {
        font-size: 16px;
        margin-top: 6px;
    }

    .mr-navbar .navbar-nav {
        gap: 14px;
        margin-top: 18px;
    }
}

.page-header {
    position: relative;
    min-height: 600px;
    color: #fff;
    overflow: hidden;
    background: url('../images/banner-web_1.png') center center / cover no-repeat;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(6, 18, 61, 0.78), rgba(17, 40, 88, 0.42)),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28));
    z-index: 1;
}

.page-header-container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    min-height: 600px;
    padding: 70px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-top {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand img {
    width: 92px;
    height: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 8px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumb span {
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}

.breadcrumb a:hover {
    color: #ffc107;
}

.header-search a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: 0.25s ease;
}

.header-search a:hover {
    color: #ffc107;
}

.hero-title-wrap {
    display: flex;
    align-items: center;
    gap: 38px;
    padding-bottom: 65px;
}

.hero-line {
    width: 8px;
    height: 110px;
    background: #f2b500;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}

@media (max-width: 1100px) {
    .header-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .header-search {
        display: none;
    }

    .hero-title-wrap {
        gap: 24px;
    }

    .hero-line {
        height: 88px;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 460px;
    }

    .page-header-container {
        min-height: 460px;
        padding: 36px 0 48px;
    }

    .brand img {
        width: 72px;
    }

    .brand-text {
        font-size: 16px;
        margin-top: 2px;
    }

    .breadcrumb a,
    .breadcrumb span {
        font-size: 15px;
    }

    .hero-title-wrap {
        align-items: flex-start;
        gap: 18px;
        padding-bottom: 20px;
    }

    .hero-line {
        width: 6px;
        height: 72px;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 46px);
        line-height: 1.15;
    }
}

.section-wrapper {
    padding-bottom: 100px;
}

.section-content-wrapper {
    max-width: 1024px;
    margin: 0 auto;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item {
    min-height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slider .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 25, 53, .38);
}

.hero-slider .slider-content {
    position: relative;
    z-index: 2;
    min-height: 600px;
    display: flex;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
}

.hero-slider .slider-panel {
    width: min(600px, 100%);
    background: rgba(45, 49, 91, .88);
    padding: 52px 42px 56px;
    color: #fff;
}

.hero-slider .slider-title {
    font-size: 3.2rem;
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 34px;
}

.hero-slider .title-line {
    width: 82px;
    height: 6px;
    background: #fff;
    margin-bottom: 34px;
}

.hero-slider .slider-text {
    font-size: 1.12rem;
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 56px;
    height: 92px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 1;
    background: rgba(43, 43, 43, .62);
}

.hero-slider .carousel-control-prev {
    left: 0
}

.hero-slider .carousel-control-next {
    right: 0
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    background-image: none;
    width: auto;
    height: auto;
    font-size: 2.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .carousel-indicators {
    bottom: 24px;
    margin-bottom: 0;
}

.hero-slider .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    opacity: .45;
}

.hero-slider .carousel-indicators .active {
    opacity: 1;
}

@media (max-width: 1199.98px) {
    .hero-slider .slider-panel {
        margin-left: 80px
    }

    .hero-slider .slider-title {
        font-size: 3.25rem
    }
}

@media (max-width: 991.98px) {

    .hero-slider .carousel-item,
    .hero-slider .slider-content {
        min-height: 720px
    }

    .hero-slider .slider-panel {
        margin: 0 auto;
        width: min(620px, calc(100% - 100px));
    }

    .hero-slider .slider-title {
        font-size: 3rem
    }
}

@media (max-width: 767.98px) {

    .hero-slider .carousel-item,
    .hero-slider .slider-content {
        min-height: 620px
    }

    .hero-slider .slider-panel {
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 34px 24px 38px;
    }

    .hero-slider .slider-title {
        font-size: 2.65rem;
        margin-bottom: 24px;
    }

    .hero-slider .title-line {
        height: 4px;
        margin-bottom: 24px;
    }

    .hero-slider .slider-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 42px;
        height: 72px;
    }

    .hero-slider .carousel-control-prev-icon,
    .hero-slider .carousel-control-next-icon {
        font-size: 2rem;
    }
}

.mrg-harga {
    position: relative;
    background: url('../images/mrg-table.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 55%;
}

.mrg-tgl {
    position: absolute;
    font-size: 9px;
    top: 23.5%;
    right: 7%;
    font-weight: bold;
    color: #000;
}

.mrg-harga-tabel {
    font-size: .65rem;
    color: #fff;
    padding: 0.15rem 1rem;
}

.mrg-table td {
    padding: .25rem .5rem;
    text-align: right;
}

.mrg-table td.td-title {
    text-align: left;
}

@media(min-width: 400px) {
    .mrg-tgl {
        top: 23%;
        font-size: .65rem;
    }

    .mrg-harga-tabel {
        font-size: .75rem;
    }

    .mrg-harga {
        padding-bottom: 2%;
    }
}

@media(min-width: 480px) {
    .mrg-table td {
        padding: .25rem 1rem;
    }

    .mrg-harga-tabel {
        font-size: 1rem;
    }
}

@media(min-width:600px) {
    .mrg-tgl {
        font-size: .85rem;
    }

    .mrg-harga {
        padding-top: 280px;
    }
}

@media(min-width:801px) {
    .mrg-tgl {
        font-size: .625rem;
        top: 22.5%;
    }

    .mrg-harga {
        padding-top: 55%;
        padding-bottom: 3%;
    }

    .mrg-harga-tabel {
        font-size: .75rem;
    }
}

@media(min-width:1025px) {
    .mrg-tgl {
        font-size: .8rem;
        top: 23.25%;
    }

    .mrg-harga {
        padding-top: 280px;
        padding-bottom: 45px;
    }

    .mrg-harga-tabel {
        font-size: 1rem;
    }
}

.visi-section {
    padding: 90px 20px 80px;
    background: #262c5b;
    color: #fff;
}

.visi-container {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.visi-header h2 {
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
}

.visi-header p {
    color: #d9d9d9;
    max-width: 850px;
    margin: 0 auto 90px;
    line-height: 1.7;
}

.visi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    align-items: start;
}

.visi-card {
    position: relative;
    background: #efefef;
    padding: 80px 35px 0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.visi-icon {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #f2b705;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 46px;
}

.visi-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #3c4db3;
    margin-bottom: .5rem;
    line-height: 1.35;
}

.visi-card p {
    font-size: 15px;
    color: #666;
}

@media (max-width: 991px) {
    .visi-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .visi-header p {
        margin-bottom: 70px;
    }

    .visi-card {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .visi-section {
        padding: 70px 16px 60px;
    }

    .visi-card {
        padding: 85px 24px 30px;
    }

    .visi-icon {
        width: 95px;
        height: 95px;
        font-size: 38px;
        top: -48px;
    }

    .visi-card h3 {
        font-size: 18px;
    }
}

.stats-section {
    position: relative;
    overflow: hidden;
    padding: 30px 24px;
    isolation: isolate;
    background-image: url('../images/banner-web_1.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 0;
}

/*
.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 1px, transparent 1.6px),
        radial-gradient(circle, rgba(255, 255, 255, 0.45) 1px, transparent 1.8px),
        radial-gradient(circle, rgba(243, 180, 0, 0.28) 1px, transparent 2px);
    background-size: 34px 34px, 56px 56px, 120px 120px;
    background-position: 0 0, 12px 18px, 20px 10px;
    opacity: 0.5;
    z-index: -2;
}

.stats-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3, 15, 35, 0.08), rgba(3, 15, 35, 0.35));
    z-index: -1;
} */

.stats-container {
    max-width: 1024px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.stat-item {
    text-align: center;
    padding: 16px 12px;
}

.stat-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 30px;
}

.stat-number {
    font-size: clamp(48px, 5vw, 50px);
    line-height: 1;
    font-weight: 700;
    color: #ffba00;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
}

.stat-line {
    width: 42px;
    height: 5px;
    margin: 0 auto 28px;
    background: #ffba00;
    border-radius: 999px;
}

.stat-label {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 18px;
    }

    .stats-section {
        padding: 70px 20px;
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 10px 8px;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
        font-size: 34px;
        margin-bottom: 14px;
    }

    .stat-line {
        margin-bottom: 18px;
    }
}

.youtube-section {
    padding: 20px 20px 40px;
    background: #0f172a;
}

.youtube-container {
    max-width: 1024px;
    margin: 0 auto;
}

.youtube-text {
    text-align: center;
    margin-bottom: 36px;
}

.youtube-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f4b400;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.youtube-text h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
}

.youtube-text p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
}

.youtube-player-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    background: #000;
}

.youtube-player-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .youtube-section {
        padding: 60px 16px;
    }

    .youtube-text h2 {
        font-size: 30px;
    }

    .youtube-text p {
        font-size: 16px;
    }

    .youtube-player-wrap {
        border-radius: 14px;
    }
}

.production-section {
    background: #f3f4fa;
    padding: 80px 20px 90px;
}

.production-container {
    max-width: 1024px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    margin: 0 0 14px;
    font-size: 42px;
    color: #2f2f2f;
    font-weight: 700;
}

.section-heading p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #6c6c6c;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background: #fff;
    padding: 24px 18px;
    text-align: center;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.product-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.35;
    color: #2f2f2f;
    font-weight: 700;
}

.product-card p {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #777;
    min-height: 58px;
}

.product-card img {
    width: 120px;
    height: 86px;
    object-fit: cover;
    margin-bottom: 18px;
}

.btn-catalog {
    display: inline-block;
    padding: 10px 16px;
    background: #f0b400;
    color: #1f1f1f;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.production-action {
    text-align: center;
    margin-top: 50px;
}

.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid #7483c7;
    color: #5b68a8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    background: transparent;
}

@media (max-width: 991px) {
    .production-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .production-section {
        padding: 60px 16px 70px;
    }

    .production-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .section-heading p {
        font-size: 14px;
    }
}

.testimonial-section {
    background: #252b59;
    padding: 80px 20px 90px;
    overflow: hidden;
}

.testimonial-container {
    max-width: 1024px;
    margin: 0 auto;
}

.testimonial-title {
    text-align: center;
    color: #fff;
    font-weight: 700;
    margin: 0 0 55px;
}

.testimonial-swiper {
    padding-bottom: 70px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: start;
}

.testimonial-item {
    color: #fff;
}

.testimonial-bubble {
    position: relative;
    background: #f2f2f2;
    color: #666;
    padding: 28px 26px;
    line-height: 1.7;
    min-height: 178px;
    box-sizing: border-box;
}

.testimonial-bubble::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: -14px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #f2f2f2;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
    padding-left: 12px;
}

.testimonial-user img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-user h3 {
    margin: 0 0 10px;
    color: #f0b400;
    font-size: 20px;
    font-weight: 700;
}

.testimonial-user p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-swiper .swiper-pagination {
    bottom: 0 !important;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
    margin: 0 8px !important;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: #f0b400;
}

@media (max-width: 991px) {
    .testimonial-title {
        font-size: 42px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .testimonial-bubble {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 60px 16px 80px;
    }

    .testimonial-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .testimonial-bubble {
        padding: 22px 20px;
        line-height: 1.65;
    }

    .testimonial-user img {
        width: 64px;
        height: 64px;
    }

    .testimonial-user h3 {
        font-size: 18px;
    }

    .testimonial-user p {
        font-size: 15px;
    }
}

.logo-carousel-section {
    background: #f2f3f8;
    padding: 20px;
    overflow: hidden;
}

.logo-carousel-container {
    max-width: 1024px;
    margin: 0 auto;
}

.logo-swiper {
    padding-bottom: 25px;
}

.logo-item {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-swiper .swiper-slide {
    height: auto;
}

.logo-swiper .swiper-pagination {
    bottom: 0 !important;
}

.logo-swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #d6d6d6;
    opacity: 1;
    margin: 0 8px !important;
}

.logo-swiper .swiper-pagination-bullet-active {
    background: #f0b400;
}

@media (max-width: 991px) {
    .logo-item {
        height: 120px;
    }

    .logo-item img {
        max-height: 95px;
    }
}

@media (max-width: 576px) {
    .logo-carousel-section {
        padding: 16px;
    }

    .logo-item {
        height: 100px;
    }

    .logo-item img {
        max-height: 78px;
    }

    .logo-swiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 6px !important;
    }
}

.footer {
    background: #252b59;
    color: #ffffff;
    padding: 70px 0 40px;
}

.footer-container {
    width: min(1024px, calc(100% - 40px));
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.footer-col h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #ffffff;
}

.footer-col p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
    max-width: 360px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
}

.contact-list i {
    width: 22px;
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    flex-shrink: 0;
}

.newsletter-text {
    margin-bottom: 22px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
}

.newsletter-form input {
    width: 58%;
    height: 58px;
    border: none;
    outline: none;
    padding: 0 14px;
    background: #efefef;
    color: #333;
    font-size: 15px;
}

.newsletter-form button {
    width: 42%;
    height: 58px;
    border: none;
    outline: none;
    background: #f4b400;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.25s ease;
}

.newsletter-form button:hover {
    background: #d89f00;
}

.footer-bottom {
    text-align: center;
    margin-top: 95px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-bottom: 26px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 22px;
    transition: 0.25s ease;
}

.social-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.copyright {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-bottom {
        margin-top: 60px;
    }

    .social-links {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 50px 0 30px;
    }

    .footer-col h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .footer-col p,
    .contact-list li {
        font-size: 16px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .newsletter-form button {
        height: 54px;
    }

    .social-links a {
        font-size: 22px;
    }

    .copyright {
        font-size: 15px;
        line-height: 1.7;
    }
}

.serial-check-form {
  width: 100%;
}

.serial-form {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.serial-input {
  flex: 1;
  height: 50px;
  border: 2px solid #d8d8d8;
  background: #f4f4f4;
  padding: 0 38px;
  font-size: 20px;
  font-weight: 400;
  color: #6d6d6d;
  outline: none;
}

.serial-input::placeholder {
  color: #6d6d6d;
  opacity: 1;
}

.serial-button {
  border: none;
  border-radius: 12px;
  background: #74b9dd;
  color: #1b1b1b;
  padding: 0 38px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.25s ease;
}

.serial-button:hover {
  background: #63add4;
}

.serial-button:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .serial-form {
    flex-direction: column;
  }

  .serial-input {
    height: 78px;
    font-size: 22px;
    padding: 0 20px;
  }

  .serial-button {
    width: 100%;
    padding: 3px 38px;
  }
}