/* =========================================================
   SANKISA TOURISM
   Premium Global Tourism Website
   Main Site Stylesheet
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --sankisa-green: #17221b;
    --sankisa-green-light: #24352a;
    --sankisa-green-soft: #e9eee9;

    --sankisa-gold: #b7791f;
    --sankisa-gold-light: #d6a84f;

    --sankisa-cream: #f8f7f2;
    --sankisa-white: #ffffff;

    --sankisa-text: #26312a;
    --sankisa-muted: #69736d;

    --sankisa-border: #e5e7e3;

    --sankisa-shadow:
        0 10px 30px rgba(23, 34, 27, 0.08);

    --sankisa-shadow-hover:
        0 18px 45px rgba(23, 34, 27, 0.14);

    --sankisa-radius: 14px;

}


/* =========================================================
   GLOBAL
========================================================= */

html {

    font-size: 15px;

    scroll-behavior: smooth;

}


body {

    margin: 0;

    padding: 0;

    min-height: 100vh;

    font-family:
        "Poppins",
        "Hind",
        Arial,
        sans-serif;

    color: var(--sankisa-text);

    background: var(--sankisa-cream);

    line-height: 1.7;

}


* {

    box-sizing: border-box;

}


a {

    text-decoration: none;

    color: inherit;

}


img {

    max-width: 100%;

    display: block;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


::selection {

    background: var(--sankisa-gold);

    color: #fff;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: 100%;

    max-width: 1320px;

    margin-left: auto;

    margin-right: auto;

    padding-left: 24px;

    padding-right: 24px;

}


/* =========================================================
   MAIN HEADER
========================================================= */

.site-header {

    position: relative;

    z-index: 1000;

    background: var(--sankisa-white);

    border-bottom: 1px solid var(--sankisa-border);

}


/* =========================================================
   PRIMARY NAVBAR
========================================================= */

.site-header .navbar {

    min-height: 82px;

    padding-top: 0;

    padding-bottom: 0;

    background: #fff;

}


.site-header .navbar .container {

    display: flex;

    align-items: center;

}


/* =========================================================
   BRAND
========================================================= */

.sankisa-brand {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

    color: var(--sankisa-green);

}


.sankisa-brand:hover {

    color: var(--sankisa-green);

}


.brand-mark {

    width: 46px;

    height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--sankisa-gold),
            var(--sankisa-gold-light)
        );

    color: #fff;

    font-size: 24px;

    line-height: 1;

    box-shadow:
        0 5px 15px rgba(183, 121, 31, 0.22);

}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.brand-text strong {

    font-family: "Poppins", sans-serif;

    font-size: 22px;

    font-weight: 700;

    letter-spacing: -0.5px;

}


.brand-text small {

    margin-top: 5px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;

    color: var(--sankisa-gold);

}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.site-header .navbar-nav {

    gap: 3px;

}


.site-header .nav-link {

    position: relative;

    padding: 30px 11px !important;

    color: #303932 !important;

    font-size: 13px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        background 0.25s ease;

}


.site-header .nav-link::after {

    content: "";

    position: absolute;

    left: 11px;

    right: 11px;

    bottom: 20px;

    height: 2px;

    background: var(--sankisa-gold);

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.25s ease;

}


.site-header .nav-link:hover {

    color: var(--sankisa-gold) !important;

}


.site-header .nav-link:hover::after {

    transform: scaleX(1);

}


/* =========================================================
   DROPDOWN
========================================================= */

.site-header .dropdown-menu {

    min-width: 220px;

    margin-top: 0;

    padding: 10px;

    border: 1px solid var(--sankisa-border);

    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.10);

}


.site-header .dropdown-item {

    padding: 10px 13px;

    border-radius: 8px;

    color: var(--sankisa-text);

    font-size: 13px;

    transition:
        background 0.2s ease,
        color 0.2s ease;

}


.site-header .dropdown-item:hover {

    background: var(--sankisa-green-soft);

    color: var(--sankisa-gold);

}


/* =========================================================
   SEARCH ICON
========================================================= */

.nav-icon-link {

    width: 42px;

    height: 42px;

    margin-left: 7px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--sankisa-border);

    border-radius: 50%;

    color: var(--sankisa-green);

    font-size: 16px;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;

}


.nav-icon-link:hover {

    background: var(--sankisa-green);

    border-color: var(--sankisa-green);

    color: #fff;

    transform: translateY(-2px);

}


/* =========================================================
   LANGUAGE SWITCHER
========================================================= */

.language-switcher {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-left: 10px;

    padding-left: 12px;

    border-left: 1px solid var(--sankisa-border);

    font-size: 12px;

    white-space: nowrap;

}


.language-switcher a {

    color: var(--sankisa-muted);

    transition: color 0.2s ease;

}


.language-switcher a:hover {

    color: var(--sankisa-gold);

}


.language-switcher .language-active {

    color: var(--sankisa-green);

    font-weight: 600;

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.navbar-toggler {

    width: 44px;

    height: 44px;

    padding: 8px;

    border: 1px solid var(--sankisa-border);

    border-radius: 10px;

}


.navbar-toggler:focus {

    box-shadow:
        0 0 0 3px rgba(183, 121, 31, 0.15);

}


/* =========================================================
   SECONDARY NAVIGATION
========================================================= */

.secondary-navigation {

    min-height: 44px;

    background: var(--sankisa-green);

    border-top: 1px solid rgba(255, 255, 255, 0.04);

}


.secondary-navigation-inner {

    min-height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    overflow-x: auto;

    scrollbar-width: none;

}


.secondary-navigation-inner::-webkit-scrollbar {

    display: none;

}


.secondary-link {

    position: relative;

    padding: 9px 2px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 12px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.2s ease;

}


.secondary-link:hover {

    color: #fff;

}


.secondary-link.active {

    color: #fff;

}


.secondary-link.active::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 4px;

    height: 2px;

    background: var(--sankisa-gold);

}


.secondary-separator {

    color: rgba(255, 255, 255, 0.28);

    font-size: 11px;

}


/* =========================================================
   MAIN CONTENT
========================================================= */

main {

    min-height: 400px;

}


/* =========================================================
   GENERAL SECTION
========================================================= */

.sankisa-section {

    padding-top: 90px;

    padding-bottom: 90px;

}


.sankisa-section-light {

    background: #fff;

}


.sankisa-section-cream {

    background: var(--sankisa-cream);

}


.sankisa-section-green {

    background: var(--sankisa-green);

    color: #fff;

}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-eyebrow {

    margin-bottom: 10px;

    color: var(--sankisa-gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;

}


.section-title {

    margin-bottom: 18px;

    color: var(--sankisa-green);

    font-size: clamp(30px, 4vw, 46px);

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -1px;

}


.section-description {

    max-width: 700px;

    margin-bottom: 0;

    color: var(--sankisa-muted);

    font-size: 15px;

}


/* =========================================================
   PREMIUM CARDS
========================================================= */

.sankisa-card {

    height: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--sankisa-border);

    border-radius: var(--sankisa-radius);

    box-shadow: var(--sankisa-shadow);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.sankisa-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--sankisa-shadow-hover);

}


/* =========================================================
   BUTTONS
========================================================= */

.sankisa-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding: 11px 23px;

    border: 1px solid transparent;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;

}


.sankisa-btn:hover {

    transform: translateY(-2px);

}


.sankisa-btn-primary {

    background: var(--sankisa-green);

    color: #fff;

}


.sankisa-btn-primary:hover {

    background: var(--sankisa-green-light);

    color: #fff;

    box-shadow:
        0 8px 20px rgba(23, 34, 27, 0.18);

}


.sankisa-btn-gold {

    background: var(--sankisa-gold);

    color: #fff;

}


.sankisa-btn-gold:hover {

    background: #9d681a;

    color: #fff;

}


.sankisa-btn-outline {

    background: transparent;

    border-color: var(--sankisa-green);

    color: var(--sankisa-green);

}


.sankisa-btn-outline:hover {

    background: var(--sankisa-green);

    color: #fff;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    margin-top: 0;

    background: var(--sankisa-green);

    color: rgba(255, 255, 255, 0.75);

}


.footer-main {

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1fr
        1fr;

    gap: 45px;

    padding-top: 70px;

    padding-bottom: 55px;

}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {

    max-width: 340px;

}


.footer-logo {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

}


.footer-logo .brand-mark {

    width: 43px;

    height: 43px;

    font-size: 22px;

}


.footer-logo > div {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.footer-logo strong {

    color: #fff;

    font-size: 20px;

    font-weight: 700;

}


.footer-logo small {

    margin-top: 5px;

    color: var(--sankisa-gold-light);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;

}


.footer-brand p {

    margin: 0;

    color: rgba(255, 255, 255, 0.60);

    font-size: 13px;

    line-height: 1.9;

}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-links h5 {

    margin-bottom: 18px;

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.3px;

}


.footer-links a {

    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;

}


.footer-links a:hover {

    color: var(--sankisa-gold-light);

    transform: translateX(3px);

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;

}


.footer-bottom span {

    margin: 0 7px;

    color: var(--sankisa-gold);

}


/* =========================================================
   FORMS
========================================================= */

.form-control,
.form-select {

    min-height: 46px;

    border: 1px solid var(--sankisa-border);

    border-radius: 8px;

}


.form-control:focus,
.form-select:focus {

    border-color: var(--sankisa-gold);

    box-shadow:
        0 0 0 3px rgba(183, 121, 31, 0.12);

}


/* =========================================================
   TABLE
========================================================= */

.table {

    background: #fff;

}


.table th {

    color: var(--sankisa-green);

    font-weight: 600;

}


/* =========================================================
   IMAGE
========================================================= */

.sankisa-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.image-rounded {

    overflow: hidden;

    border-radius: var(--sankisa-radius);

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1199px) {


    .site-header .nav-link {

        padding-left: 8px !important;

        padding-right: 8px !important;

        font-size: 12px;

    }


    .footer-main {

        grid-template-columns:
            1.5fr
            1fr
            1fr
            1fr;

    }


    .footer-brand {

        grid-column: span 4;

        max-width: 600px;

    }

}


@media (max-width: 991px) {


    .site-header .navbar {

        min-height: 72px;

    }


    .site-header .navbar-collapse {

        padding-top: 15px;

        padding-bottom: 18px;

    }


    .site-header .navbar-nav {

        align-items: stretch !important;

        gap: 0;

    }


    .site-header .nav-link {

        padding: 11px 0 !important;

        border-bottom: 1px solid #f0f1ee;

    }


    .site-header .nav-link::after {

        display: none;

    }


    .site-header .dropdown-menu {

        border: 0;

        border-radius: 0;

        box-shadow: none;

        padding: 0 0 8px 15px;

    }


    .nav-icon-link {

        margin: 12px 0;

    }


    .language-switcher {

        margin-left: 0;

        padding-left: 0;

        border-left: 0;

        padding-top: 8px;

    }


    .secondary-navigation-inner {

        justify-content: flex-start;

    }


    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 35px;

    }


    .footer-brand {

        grid-column: span 2;

    }

}


@media (max-width: 767px) {


    .container {

        padding-left: 18px;

        padding-right: 18px;

    }


    .sankisa-section {

        padding-top: 65px;

        padding-bottom: 65px;

    }


    .section-title {

        font-size: 30px;

    }


    .secondary-navigation {

        min-height: 42px;

    }


    .secondary-navigation-inner {

        min-height: 42px;

        gap: 12px;

    }


    .secondary-link {

        font-size: 11px;

    }


    .secondary-separator {

        font-size: 9px;

    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 30px;

        padding-top: 55px;

        padding-bottom: 40px;

    }


    .footer-brand {

        grid-column: span 1;

    }


    .footer-bottom {

        align-items: flex-start;

        flex-direction: column;

        justify-content: center;

        gap: 7px;

        padding-top: 15px;

        padding-bottom: 15px;

    }

}


@media (max-width: 480px) {


    .brand-mark {

        width: 41px;

        height: 41px;

        font-size: 21px;

    }


    .brand-text strong {

        font-size: 19px;

    }


    .brand-text small {

        font-size: 7px;

        letter-spacing: 2px;

    }


    .navbar-toggler {

        width: 40px;

        height: 40px;

    }


    .section-title {

        font-size: 27px;

    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {

    outline: 3px solid rgba(183, 121, 31, 0.35);

    outline-offset: 3px;

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        transition: none !important;

        animation: none !important;

    }

}