/* Import Font mirip desain (Poppins) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-dark: #1a1a1a;
    --primary-orange: #fca311;
    /* Sesuaikan dengan warna jeruk di gambar */
    --bg-light: #f8f9fa;
    --text-grey: #6c757d;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-dark);
    overflow-x: hidden;
}

/* ========================================
   NAVBAR HOME - TOLONG JANGAN ANEH ANEH
======================================== */

.navbar-custom {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 28px 0;
    background: transparent;
    transition: all 0.3s ease;
}

/* Shrink on scroll */
.navbar-custom.scrolled {
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
}

/* Brand */
.navbar-brand {
    font-weight: 700;
    font-size: 1.7rem;
    color: #111 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Nav link */
.nav-link {
    position: relative;
    color: #111 !important;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
}

/* Underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #111;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Active state */
.nav-link.active {
    font-weight: 600;
}

/* Toggler */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar-custom {
        background: #fff;
        padding: 20px 0;
    }

    .navbar-collapse {
        margin-top: 20px;
    }

    .nav-link {
        margin: 12px 0;
        text-align: center;
    }

    .nav-link::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ===============================
   NAVBAR INNER INTINYA GITU
================================ */

.navbar-inner {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 28px 0;
    background: transparent;
}

/* Brand */
.navbar-inner .navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff !important;
}

/* Nav links */
.navbar-inner .nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 0.76rem;
    margin-left: 14px;
    letter-spacing: 1px;
    padding: 0;
    text-transform: uppercase;
    position: relative;
}

/* Underline putih */
.navbar-inner .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.navbar-inner .nav-link:hover::after,
.navbar-inner .nav-link.active::after {
    width: 100%;
}

/* Toggler icon putih */
.navbar-inner .navbar-toggler {
    border: none;
}

.navbar-inner .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-inner .navbar-collapse {
    margin-left: auto;
}

.navbar-inner .navbar-nav {
    margin-right: 20px;
}

/* Mobile */
@media (max-width: 991px) {
    .navbar-inner {
        padding: 20px 0;
    }
}

/* =========================
   MOBILE OFFCANVAS MENU
========================= */

.mobile-menu {
    width: 85%;
    max-width: 360px;
    border: none;
}

/* Top image strip (IDE C) */
.offcanvas-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) blur(1px);
    position: relative;
}

.offcanvas-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
}

/* Menu body */
.mobile-menu .offcanvas-body {
    position: relative;
    padding: 30px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    overflow: hidden;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.mobile-menu-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #777;
}

.mobile-menu-close {
    width: 34px;
    height: 34px;
    border: 1px solid #ececec;
    border-radius: 10px;
    background: #111;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-close:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

/* Menu list */
.mobile-nav {
    gap: 5px;
}

.mobile-nav .nav-link {
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav .nav-link:hover {
    background: #f3f3f3;
}


/* Active underline */
.mobile-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 8px;
    width: 26px;
    height: 2px;
    background: #fca311;
}

.menu-accent {
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    background: #fca311;
    border-radius: 50%;
    opacity: 0.1;
}

@media (max-width: 991px) {

    /* Navbar mobile glassmorphism */
    .navbar-custom {
        background: rgba(255, 255, 255, 0.65) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }

    /* Brand */
    .navbar-custom .navbar-brand {
        color: #000 !important;
        font-weight: 700;
        z-index: 1051;
    }

    /* Hamburger */
    .navbar-toggler {
        border: none;
    }

    .navbar-toggler-icon {
        filter: invert(0);
        /* hitam */
    }

}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

/* Hero Section Generic */
.home-hero {
    position: relative;
    min-height: 100vh;
    background-color: #f4f4f4;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: -160px;
    /* naik ke area navbar */
    right: -200px;
    width: 760px;
    height: 760px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {

    /* Ubah layout jadi kolom */
    .home-hero {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        padding-top: 80px;
    }

    /* Hero image ikut flow */
    .hero-image {
        position: absolute;
        top: -12vh;
        right: -25vw;
        width: 90vh;
        height: 90vh;
        max-width: 520px;
        max-height: 520px;
        background-size: contain;
        background-position: center;
    }

    /* Konten full width */
    .hero-content {
        padding-top: 29vh;
        text-align: left;
    }

    /* Kecilkan judul */
    @media (max-width: 768px) {
        .home-hero .hero-title {
            font-size: 2.3rem;
            line-height: 1.15;
        }

        .home-hero p {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 768px) {
        .hero-divider {
            width: 113px;
            height: 3px;
            margin-bottom: 16px;
        }
    }

    @media (max-width: 768px) {
        .btn-dark-custom {
            padding: 12px 36px;
            font-size: 0.8rem;
        }
    }

}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-dark-custom {
    background-color: #000;
    color: #fff;
    border: none;

    padding: 14px 88px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.15;
}

.hero-thin {
    font-weight: 450;
    /* HEALTHY */
    color: #000000;
}

.hero-bold {
    font-weight: 900 !important;
    /* TASTY FOOD */
    color: #000000;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background-color: #000;
    border: none;
    margin-top: 60px;
    margin-bottom: 0px;
    opacity: 1;
}

.home-hero .hero-description {
    margin-top: 24px;
    line-height: 1.68;
    max-width: 640px;
}

.home-hero .hero-cta {
    display: inline-block;
    margin-top: 8px;
}

.about-divider {
    width: 99px;
    /* lebih panjang */
    height: 4px;
    /* lebih tipis */
    background-color: #000;
    border: none;
    margin: 50px auto 70px;
    opacity: 1;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.about-section {
    padding-top: 140px;
    /* TAMBAH KE ATAS */
    padding-bottom: 80px;
}

/* =========================
   ABOUT CARD FINAL FIX
   ========================= */

/* CARD */
.card-custom {
    position: relative;
    border-radius: 16px;
    padding-top: 90px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    background: #fff;
    overflow: visible;
}

/* IMAGE */
.img-circle-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.img-circle-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   ABOUT SECTION BACKGROUND PATTERN
   ============================================ */
.about-bottom {
    position: relative;
    padding-top: 90px; /* ruang agar card naik ke area putih */
    padding-bottom: 90px;
    z-index: 1;
}

.about-bottom .about-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("/img/about-bg01.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

/* ============================================
   CARD ABOUT - SESUAI DESAIN HOME01.PNG
   ============================================ */

/* CARD BASE STYLING */
.card-custom {
    position: relative;
    border-radius: 16px;
    background: #fff;
    border: none;
    height: 320px;
    margin-top: 65px;
    padding: 60px 20px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: visible;
}

/* GAMBAR LINGKARAN - SETENGAH DI LUAR CARD */
.img-circle-wrapper {
    width: 199px;
    height: 199px;
    top: -110px;
    border-radius: 50%;
    overflow: hidden;
    border: 0px solid transparent;
    box-shadow: none;
    background: none;
}

.img-circle-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CARD BODY */
.card-custom .card-body {
    padding: 0;
    margin-top: 43px;
}

.card-custom h5 {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.card-custom .text-muted {
    font-size: 13px;
    line-height: 1.5;
    color: #343434;
}

/* ============================================
   ABOUT CARD LAYOUT (GRID + HORIZONTAL SCROLL)
   TANPA SWIPER JS
   ============================================ */

/* CONTAINER CARD */
.about-card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* MOBILE & TABLET: horizontal scroll */
@media (max-width: 991px) {
    .about-card-container {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 80px 12px 40px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        align-items: flex-start;
    }
    .about-card-container::after {
        content: '';
        flex: 0 0 6px;
    }

    .about-card-item {
        flex: 0 0 280px;
        max-width: 280px;
        scroll-snap-align: start;
    }

    .card-custom {
        width: 100%;
        max-width: 280px;
        height: 280px;
    }
}

/* =========================
   GALLERY SECTION FIX (SQUARE)
   ========================= */

.gallery-grid .gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* PAKSA PERSEGI */
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-grid .gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-grid .gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}



/* =========================
   RESPONSIVE ADJUSTMENTS
   ========================= */

/* ===============================
   HERO SECTION YANG DI HALAMAN SESA NA
   =============================== */

.hero-inner {
    position: relative;
    height: 440px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-title {
    position: relative;
    padding-top: 48px;
    color: #fff;
    font-size: 48px;
    font-weight: 780;
    letter-spacing: 1px;
    margin-bottom: -6px;
}
.hero-sub-title {
    position: relative;
    color: #fff;
    font-size: 48px;
    font-weight: 780;
    letter-spacing: 1px;
}
/* =========================
   ABOUT PAGE IMAGE FRAME
========================= */

/* WRAPPER DASAR */
.about-img {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* SECTION 1 (2 gambar beda tinggi) */
.about-img.tall {
    height: 360px;
}

.about-img.short {
    height: 360px;
}

/* VISI (2 gambar sama besar) */
.about-img.square {
    height: 260px;
}

/* MISI (1 gambar lebar) */
.about-img.wide {
    height: 300px;
}


/* === GALLERY.BLADE.PHP=== */
/* ================================
   GALLERY CAROUSEL
================================ */
.gallery-carousel-section {
    background: transparent;
    padding: 3rem 0;
}

/* ================================
   BASE SLIDE (WAJIB)
================================ */
.gallery-slide {
    margin-inline: auto;
    border-radius: 24px;
    overflow: hidden;
    background: #eee;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE TETAP TERKUNCI */
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ganti contain kalau mau */
    display: block;
}

/* ================================
   VARIASI UKURAN PER SLIDE
================================ */

/* SLIDE 1 */
.slide-lg {
    max-width: 1100px;
    height: 460px;
}

/* ================================
   CAROUSEL NAVIGATION
================================ */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 50%;
    padding: 18px;
    background-size: 55%;
}
/* ================================
   GALLERY.BLADE.PHP GRID SECTION
================================ */
.gallery-grid-section {
    padding: 4rem 0;
}

.gallery-pagination-wrap {
    margin-top: 2.25rem;
    display: flex;
    justify-content: center;
}

.gallery-pagination {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gallery-page-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(145deg, #111111, #2a2a2a);
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-page-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gallery-page-arrow:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

.gallery-page-arrow.is-disabled {
    opacity: 0.38;
    pointer-events: none;
}

.gallery-page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gallery-page-number {
    min-width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #ececec;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f1f1f;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.gallery-page-number:hover {
    border-color: #111;
    color: #111;
}

.gallery-page-number.is-active {
    background: #111;
    border-color: #111;
    color: #fff;
}

.gallery-page-dots {
    color: #8a8a8a;
    font-weight: 600;
    padding: 0 3px;
}

@media (max-width: 576px) {
    .gallery-pagination {
        gap: 8px;
        padding: 7px 10px;
    }

    .gallery-page-arrow {
        width: 38px;
        height: 38px;
    }

    .gallery-page-number {
        min-width: 32px;
        height: 32px;
        font-size: 0.82rem;
    }
}

/* BOX IMAGE */
.gallery-img-box {
    width: 100%;
    height: 220px;           /* 🔥 UBAH TINGGI DI SINI */
    border-radius: 15px;     /* 🔥 LEBIH BULAT */
    overflow: hidden;
    background: #f2f2f2;
}

/* IMAGE */
.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* ❗ FIXED, tidak ikut ukuran asli */
    display: block;
}

/* RESPONSIVE HEIGHT */
@media (min-width: 768px) {
    .gallery-img-box {
        height: 240px;
    }
}

@media (min-width: 1200px) {
    .gallery-img-box {
        height: 260px;
    }
}

/* ================================
   NEWS.BLADE.PHP ETA WE POKOKNA!!!
================================ */

.featured-news-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* bikin image kotak */
    overflow: hidden;
    border-radius: 16px;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.news-grid-row {
    --bs-gutter-x: 0.7rem;
}

.news-grid-col {
    margin-bottom: 0.7rem;
}

.news-card {
    border-radius: 0.95rem;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.18);
    border: 1px solid #e7e7e7;
}

.news-card .card-img-top {
    border-radius: 0;
}
@media (max-width: 768px) {

    .featured-news-image {
        aspect-ratio: 4 / 3; /* lebih pendek dari 1:1 */
        border-radius: 14px;
    }
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 80px 0 20px;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #aaa;
    text-decoration: none;
}

footer .footer-static-link {
    color: #aaa;
    text-decoration: none;
}

footer .social-icons i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #3b82f6;
    /* Blueish generic */
}

/* Contact Form */
.form-control {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.contact-icon-box {
    text-align: center;
    margin-top: 40px;
}

.contact-icon-box i {
    font-size: 2rem;
    margin-bottom: 10px;
}
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 40px !important;
}

.social-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover .social-icon {
    transform: scale(1.1);
    opacity: 0.8;
}

/* ================================
   MOBILE REFINEMENT (USER PAGES)
================================ */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 56px 0;
    }

    .section-title {
        margin-bottom: 24px;
        font-size: 1.65rem;
        line-height: 1.2;
    }

    .about-section {
        padding-top: 92px;
        padding-bottom: 56px;
    }

    .navbar-custom,
    .navbar-inner {
        padding: 14px 0;
    }

    .navbar-inner .navbar-brand {
        font-size: 1.2rem;
        letter-spacing: 0.6px;
    }

    .navbar-custom,
    .navbar-custom.scrolled {
        background: transparent !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
        box-shadow: none;
    }

    .navbar-custom .navbar-brand {
        color: #fff !important;
        font-size: 1.34rem;
        letter-spacing: 0.9px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu {
        width: 86%;
    }

    .offcanvas-image {
        height: 150px;
    }

    .mobile-menu .offcanvas-body {
        padding: 22px 18px 26px;
    }

    .mobile-menu-head {
        margin-bottom: 10px;
    }

    .mobile-menu-close {
        width: 32px;
        height: 32px;
    }

    .mobile-nav .nav-link {
        font-size: 0.95rem;
        padding: 9px 11px;
    }

    .hero-inner {
        height: 320px;
        background-position: center;
    }

    .hero-title {
        padding-top: 30px;
        font-size: 2rem;
        margin-bottom: 0;
    }

    .hero-sub-title {
        font-size: 2rem;
    }

    .home-hero {
        min-height: 88vh;
    }

    .hero-content {
        padding-top: 34vh;
    }

    .home-hero p {
        font-size: 0.95rem;
        line-height: 1.72;
        margin-bottom: 1.45rem;
        max-width: 96%;
    }

    .hero-divider {
        margin-top: 18px;
        margin-bottom: 18px;
    }

    .home-hero .hero-title {
        margin-bottom: 4px;
    }

    .home-hero .hero-title + p {
        margin-top: 18px;
    }

    .home-hero .btn-dark-custom {
        margin-top: 6px;
    }

    .home-hero .hero-description {
        margin-top: 20px;
        line-height: 1.74;
        max-width: 97%;
    }

    .btn-dark-custom {
        padding: 12px 34px;
        font-size: 0.78rem;
    }

    .about-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-bottom {
        padding-top: 74px;
        padding-bottom: 64px;
    }

    .about-card-container {
        padding: 68px 10px 24px;
        gap: 12px;
    }

    .about-card-item {
        flex: 0 0 255px;
        max-width: 255px;
    }

    .card-custom {
        max-width: 255px;
        height: 268px;
        border-radius: 14px;
    }

    .card-custom h5 {
        font-size: 1.15rem;
    }

    .card-custom .text-muted {
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .about-img.tall,
    .about-img.short {
        height: 290px;
    }

    .about-img.square {
        height: 200px;
    }

    .about-img.wide {
        height: 250px;
    }

    .about-img.wide + h4,
    .row [class*="col-"] > .row.g-2 + h4 {
        margin-top: 14px;
    }

    .featured-news-image {
        aspect-ratio: 4 / 3;
        border-radius: 0;
    }

    .news-grid-row {
        --bs-gutter-x: 0.55rem;
    }

    .news-grid-col {
        margin-bottom: 0.55rem;
    }

    .news-card {
        border-radius: 0.75rem;
        box-shadow: 0 6px 16px rgba(17, 17, 17, 0.14);
    }

    .news-card .card-img-top {
        height: 136px !important;
    }

    .news-card .card-body {
        padding: 0.72rem 0.72rem 0.8rem;
    }

    .news-card h5 {
        font-size: 1.02rem;
        line-height: 1.28;
        margin-bottom: 0.4rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .news-card p {
        font-size: 0.82rem;
        line-height: 1.4;
        margin-bottom: 0.45rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .gallery-carousel-section {
        padding: 1.6rem 0 1rem;
    }

    .gallery-slide {
        border-radius: 16px;
    }

    .slide-lg {
        height: 280px;
    }

    .gallery-grid-section {
        padding: 2.6rem 0;
    }

    .gallery-img-box {
        height: 185px;
        border-radius: 12px;
    }

    .gallery-pagination-wrap {
        margin-top: 1.4rem;
    }

    .gallery-pagination {
        gap: 7px;
        padding: 7px 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-page-numbers {
        gap: 4px;
    }

    .gallery-page-arrow {
        width: 36px;
        height: 36px;
    }

    .gallery-page-number {
        min-width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .form-control {
        padding: 12px 13px;
        font-size: 0.95rem;
    }

    .contact-icon-box {
        margin-top: 14px;
    }

    .contact-icon-box .bg-white {
        border-radius: 14px;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    }

    footer {
        padding: 58px 0 18px;
    }

    footer .row > [class*="col-"] {
        margin-bottom: 18px !important;
    }

    footer h5 {
        margin-bottom: 12px;
        font-size: 1.08rem;
    }

    footer p,
    footer ul li,
    footer a,
    footer .footer-static-link {
        font-size: 0.95rem;
    }

    footer ul li {
        margin-bottom: 8px;
    }
}

@media (max-width: 575.98px) {
    .hero-inner {
        height: 280px;
    }

    .hero-title,
    .hero-sub-title {
        font-size: 1.75rem;
    }

    .home-hero {
        min-height: 84vh;
        padding-top: 74px;
    }

    .hero-image {
        top: -18vh;
        right: -34vw;
        width: 92vh;
        height: 92vh;
    }

    .hero-content {
        padding-top: 30vh;
    }

    .home-hero .hero-title {
        margin-bottom: 4px;
    }

    .home-hero .hero-title + p {
        margin-top: 20px;
    }

    .home-hero p {
        line-height: 1.75;
        margin-bottom: 1.7rem;
        max-width: 97%;
    }

    .home-hero .hero-description {
        margin-top: 22px;
        line-height: 1.78;
    }

    .about-divider {
        margin: 24px auto 36px;
    }

    .about-img.tall,
    .about-img.short {
        height: 240px;
    }

    .about-img.square {
        height: 176px;
    }

    .about-img.wide {
        height: 210px;
    }

    .about-img.wide + h4,
    .row [class*="col-"] > .row.g-2 + h4 {
        margin-top: 16px;
    }

    .news-card .card-img-top {
        height: 120px !important;
    }

    .news-card h5 {
        font-size: 0.94rem;
    }

    .news-card p {
        font-size: 0.76rem;
    }

    .slide-lg {
        height: 230px;
    }

    .gallery-img-box {
        height: 155px;
    }

    .gallery-page-numbers {
        display: none;
    }
}

