@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
* {
    box-sizing: border-box;
        font-family: 'Inter', sans-serif;

}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #222;
    background: #fff;
    padding-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.logo img {
    max-height: 56px;
    width: auto;
}

.main-menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

.main-menu a {
    font-weight: 600;
    color: #111;
}

.header-phone {
    background: #f58220;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: #f58220;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    margin: 5px 0;
}

/* HERO SLIDER */

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: clamp(420px, 53vw, 760px);
    overflow: hidden;
    background: #111;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 720px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.08;
    margin: 0 0 18px;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.5;
    margin: 0 0 28px;
}

.btn-primary {
    display: inline-block;
    background: #f58220;
    color: #fff;
    padding: 15px 24px;
    border-radius: 8px;
    font-weight: 700;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.slider-prev {
    left: 24px;
}

.slider-next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 9px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-dot.active {
    background: #f58220;
}

/* HOME SECTIONS */

.home-intro,
.services-section,
.why-section,
.guides-section {
    padding: 70px 0;
}

.home-intro {
    text-align: center;
    background: #f8f8f8;
}

.home-intro h2,
.section-title h2,
.why-grid h2 {
    font-size: 38px;
    margin: 8px 0 18px;
}

.home-intro p,
.why-grid p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.section-subtitle,
.section-title span {
    color: #f58220;
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin-bottom: 38px;
}

/* CARDS */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card,
.guide-card {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-card:hover,
.guide-card:hover {
    transform: translateY(-5px);
}

.service-card img,
.guide-card img {
    width: 100%;
    aspect-ratio: 1448 / 1086;
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.card-body p {
    color: #555;
    line-height: 1.6;
}

.card-body span {
    display: inline-block;
    margin-top: 12px;
    color: #f58220;
    font-weight: 700;
}

/* WHY */

.why-section {
    background: #111;
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.why-grid p {
    color: #ddd;
    margin: 0;
}

.feature-list {
    display: grid;
    gap: 15px;
}

.feature-list div {
    background: rgba(255, 255, 255, 0.08);
    padding: 18px 20px;
    border-radius: 10px;
    font-weight: 700;
}

/* PAGE HERO */

.page-hero {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin: 0 0 12px;
}

.page-hero p {
    font-size: 18px;
    color: #ddd;
    max-width: 760px;
    margin: 0 auto;
}

/* LISTING & DETAIL */

.listing-section,
.detail-section,
.contact-section {
    padding: 70px 0;
}

.pagination-wrap {
    margin-top: 35px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 35px;
    align-items: start;
}

.detail-content {
    background: #fff;
}

.detail-content.full-width {
    max-width: 960px;
    margin: 0 auto;
}

.detail-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 16px;
    margin-bottom: 28px;
}

.content-area {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.content-area h2,
.content-area h3,
.content-area h4 {
    color: #111;
    line-height: 1.3;
}

.content-area img {
    max-width: 100%;
    height: auto;
}

.detail-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: #f8f8f8;
    border: 1px solid #eee;
    padding: 26px;
    border-radius: 14px;
}

.sidebar-box h3 {
    margin-top: 0;
    font-size: 24px;
}

.sidebar-call,
.sidebar-whatsapp {
    display: block;
    text-align: center;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    margin-top: 12px;
    font-weight: 700;
}

.sidebar-call {
    background: #f58220;
}

.sidebar-whatsapp {
    background: #25d366;
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
    align-items: start;
}

.contact-info,
.contact-form-wrap,
.contact-map-card  {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.contact-map-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-map-card h2 {
    margin-top: 0;
    font-size: 30px;
}

.contact-map iframe {
    width: 100%;
    height: 430px;
    border: 0;
    border-radius: 12px;
}
.contact-info h2,
.contact-form-wrap h2 {
    margin-top: 0;
    font-size: 30px;
}

.contact-item {
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}

.contact-item:last-child {
    border-bottom: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: #111;
}

.contact-item a {
    color: #f58220;
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
}

.contact-form button {
    border: 0;
    background: #f58220;
    color: #fff;
    padding: 15px 22px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.alert-success {
    background: #e7f8ec;
    color: #157347;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.alert-error {
    background: #fdecec;
    color: #b02a37;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.map-wrap {
    margin-top: 45px;
}

.map-wrap iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 16px;
}

/* FOOTER */

.footer {
    background: #111;
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 35px;
}

.footer h3,
.footer h4 {
    margin-top: 0;
}

.footer p,
.footer li {
    color: #ddd;
    line-height: 1.7;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 28px;
    padding-top: 20px;
    font-size: 14px;
}

/* MOBILE FIXED BUTTONS */

.mobile-fixed-buttons {
    display: none;
}

/* TABLET */

@media (max-width: 992px) {
    .card-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 44px;
    }
}

/* MOBILE */

@media (max-width: 768px) {
    body {
        padding-bottom: 56px;
    }

    .header-inner {
        height: 66px;
        position: relative;
    }

    .logo img {
        max-height: 48px;
    }

    .header-phone {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-menu {
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
        overflow: hidden;
    }

    .main-menu.active {
        display: flex;
    }

    .main-menu a {
        padding: 15px 18px;
        border-bottom: 1px solid #eee;
        color: #111;
        font-weight: 700;
    }

    .main-menu a:last-child {
        border-bottom: 0;
    }

    .hero-slider {
        min-height: 420px;
        aspect-ratio: unset;
    }

    .hero-slide {
        min-height: 420px;
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 17px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 28px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-dots {
        bottom: 14px;
    }

    .card-grid,
    .why-grid,
    .footer-grid,
    .detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .home-intro,
    .services-section,
    .why-section,
    .guides-section,
    .listing-section,
    .detail-section,
    .contact-section {
        padding: 48px 0;
    }

    .home-intro h2,
    .section-title h2,
    .why-grid h2 {
        font-size: 30px;
    }

    .page-hero {
        padding: 55px 0;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .detail-sidebar {
        position: static;
    }

    .mobile-fixed-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        z-index: 9999;
    }

    .mobile-fixed-buttons a {
        padding: 15px 8px;
        text-align: center;
        color: #fff;
        font-weight: 700;
    }

    .mobile-fixed-buttons .call {
        background: #f58220;
    }

    .mobile-fixed-buttons .whatsapp {
        background: #25d366;
    }
}