/* =========================================================
   SAMAR GROUP
   LIGHT CORPORATE LANDING PAGE
   Brand Colors:
   #A2CC3A - Green
   #2A2366 - Purple
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    /* Brand */
    --brand-green: #a2cc3a;
    --brand-purple: #2a2366;

    /* Backgrounds */
    --bg-main: #f7f8f5;
    --bg-white: #ffffff;
    --bg-soft: #f1f3ed;

    /* Text */
    --text-dark: #202020;
    --text-heading: #252525;
    --text-muted: #66666d;
    --text-light: #8a8a91;

    /* Borders */
    --border: rgba(42, 35, 102, 0.10);
    --border-hover: rgba(162, 204, 58, 0.75);

    /* Shadows */
    --shadow:
        0 15px 45px rgba(35, 35, 45, 0.08);

    --shadow-hover:
        0 25px 60px rgba(35, 35, 45, 0.14);

    /* Typography */
    --font-body: "DM Sans", sans-serif;
    --font-heading: "Playfair Display", serif;

}


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    min-height: 100vh;

    margin: 0;

    background:
        var(--bg-main);

    color:
        var(--text-dark);

    font-family:
        var(--font-body);

    overflow-x: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font-family: inherit;

}


img {

    max-width: 100%;

}


/* =========================================================
   PRELOADER
========================================================= */

#preloader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle at center,
            rgba(42, 35, 102, 0.08),
            #ffffff 65%
        );

    opacity: 1;

    visibility: visible;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;

}


#preloader.hide {

    opacity: 0;

    visibility: hidden;

}


/* =========================================================
   PRELOADER CONTENT
========================================================= */

.loader-content {

    position: relative;

    z-index: 2;

    text-align: center;

}


/* =========================================================
   LOADER IMAGE
========================================================= */

.loader-image-wrap {

    position: relative;

    width: 170px;

    height: 170px;

    margin: 0 auto 28px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* Outer rotating ring */

.loader-image-wrap::before {

    content: "";

    position: absolute;

    inset: -16px;

    border-radius: 50%;

    border:
        1px solid
        rgba(42, 35, 102, 0.18);

    border-top-color:
        var(--brand-green);

    animation:
        loaderRotate
        7s linear infinite;

}


/* Inner ring */

.loader-image-wrap::after {

    content: "";

    position: absolute;

    inset: -6px;

    border-radius: 50%;

    border:
        1px solid
        rgba(162, 204, 58, 0.25);

}


/* =========================================================
   LOADER IMAGE
========================================================= */

.loader-image {

    width: 150px;

    height: 150px;

    object-fit: contain;

    animation:
        loaderPulse
        2.2s ease-in-out infinite;

}


/* =========================================================
   LOADER LINE
========================================================= */

.loader-line {

    width: 180px;

    height: 2px;

    margin:
        0 auto 16px;

    overflow: hidden;

    background:
        rgba(42, 35, 102, 0.12);

}


.loader-line span {

    display: block;

    width: 45%;

    height: 100%;

    background:

        linear-gradient(
            90deg,
            var(--brand-purple),
            var(--brand-green)
        );

    animation:
        loaderProgress
        1.5s ease-in-out infinite;

}


/* =========================================================
   LOADER TEXT
========================================================= */

.loader-text {

    margin: 0;

    color:
        var(--brand-purple);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 5px;

    text-transform: uppercase;

}


/* =========================================================
   PRELOADER ANIMATIONS
========================================================= */

@keyframes loaderPulse {

    0%,
    100% {

        transform:
            scale(0.96);

        opacity:
            0.88;

    }

    50% {

        transform:
            scale(1);

        opacity:
            1;

    }

}


@keyframes loaderRotate {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


@keyframes loaderProgress {

    0% {

        transform:
            translateX(-150%);

    }

    100% {

        transform:
            translateX(400%);

    }

}


/* =========================================================
   MAIN CONTENT
========================================================= */

#main-content {

    position: relative;

    min-height: 100vh;

    overflow: hidden;

    opacity: 0;

    transition:
        opacity 1s ease;

}


#main-content.visible {

    opacity: 1;

}


/* =========================================================
   MAIN BACKGROUND
========================================================= */

#main-content::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:

        radial-gradient(
            circle at 5% 15%,
            rgba(42, 35, 102, 0.08),
            transparent 30%
        ),

        radial-gradient(
            circle at 95% 80%,
            rgba(162, 204, 58, 0.10),
            transparent 30%
        );

}


/* =========================================================
   GRID PATTERN
========================================================= */

.grid-pattern {

    position: fixed;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    opacity: 0.025;

    background-image:

        linear-gradient(
            rgba(42, 35, 102, 0.6) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(42, 35, 102, 0.6) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

}


/* =========================================================
   BACKGROUND GLOWS
========================================================= */

.background-glow {

    position: fixed;

    z-index: 0;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

}


.glow-one {

    top: -300px;

    left: -250px;

    background:
        rgba(42, 35, 102, 0.12);

}


.glow-two {

    right: -300px;

    bottom: -300px;

    background:
        rgba(162, 204, 58, 0.15);

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navbar {

    position: relative;

    z-index: 10;

    padding-top: 30px;

}


.navbar-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    color:
        var(--brand-purple);

}


.navbar-brand:hover {

    color:
        var(--brand-purple);

}


/* =========================================================
   BRAND MARK
========================================================= */

.brand-mark {

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        var(--brand-purple);

    border-radius: 50%;

    color:
        var(--brand-purple);

    font-family:
        var(--font-heading);

    font-size: 23px;

    transition:
        all 0.3s ease;

}


.navbar-brand:hover
.brand-mark {

    background:
        var(--brand-purple);

    color:
        #ffffff;

}


/* =========================================================
   BRAND NAME
========================================================= */

.brand-name {

    display: flex;

    flex-direction: column;

    line-height: 1;

    color:
        var(--brand-purple);

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 3px;

}


.brand-name small {

    margin-top: 5px;

    color:
        var(--brand-green);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 4px;

}


/* =========================================================
   NAVBAR TAGLINE
========================================================= */

.navbar-text {

    margin-left: auto;

    color:
        #77777d;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;

}


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {

    position: relative;

    z-index: 2;

    padding:
        80px
        0
        50px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    max-width: 850px;

    margin:
        0
        auto
        65px;

    text-align: center;

}


/* =========================================================
   HERO EYEBROW
========================================================= */

.hero-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-bottom: 23px;

    color:
        var(--brand-purple);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;

}


.hero-eyebrow span {

    display: block;

    width: 38px;

    height: 2px;

    background:
        var(--brand-green);

}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-content h1 {

    margin: 0;

    color:
        var(--text-heading);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            42px,
            6vw,
            72px
        );

    font-weight: 500;

    line-height: 1.08;

    letter-spacing: -1px;

}


/* Green emphasis */

.hero-content h1 em {

    color:
        var(--brand-purple);

    font-style:
        italic;

}


/* Green final line */

.hero-content h1 span {

    color:
        var(--brand-green);

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 540px;

    margin:
        26px
        auto
        0;

    color:
        var(--text-muted);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   DESTINATION ROW
========================================================= */

.destination-row {

    max-width: 1050px;

    margin-left: auto;

    margin-right: auto;

}


/* =========================================================
   DESTINATION CARD
========================================================= */

.destination-card {

    position: relative;

    display: block;

    min-height: 390px;

    padding: 45px;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 3px;

    background:
        rgba(255, 255, 255, 0.92);

    color:
        var(--text-dark);

    box-shadow:
        var(--shadow);

    transition:

        transform
        0.5s
        cubic-bezier(.2,.8,.2,1),

        border-color
        0.4s ease,

        box-shadow
        0.4s ease;

    animation:
        cardReveal
        0.9s
        ease
        both;

}


/* =========================================================
   SECOND CARD DELAY
========================================================= */

.col-lg-6:nth-child(2)
.destination-card {

    animation-delay:
        0.15s;

}


/* =========================================================
   CARD HOVER
========================================================= */

.destination-card:hover {

    transform:
        translateY(-10px);

    border-color:
        var(--border-hover);

    box-shadow:
        var(--shadow-hover);

}


/* =========================================================
   CARD TOP ACCENT
========================================================= */

.destination-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 4px;

    background:

        linear-gradient(
            90deg,
            var(--brand-purple),
            var(--brand-green)
        );

    transition:
        width 0.5s ease;

}


.destination-card:hover::before {

    width: 100%;

}


/* =========================================================
   CARD NUMBER
========================================================= */

.card-number {

    position: absolute;

    top: 22px;

    right: 28px;

    color:
        rgba(42, 35, 102, 0.08);

    font-family:
        var(--font-heading);

    font-size: 48px;

    line-height: 1;

    transition:
        color 0.4s ease;

}


.destination-card:hover
.card-number {

    color:
        rgba(42, 35, 102, 0.14);

}


/* =========================================================
   CARD CONTENT
========================================================= */

.card-content {

    position: relative;

    z-index: 2;

}


/* =========================================================
   CARD ICON
========================================================= */

.card-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 34px;

    border:
        1px solid
        rgba(42, 35, 102, 0.20);

    border-radius: 50%;

    background:
        rgba(42, 35, 102, 0.035);

    transition:

        transform
        0.4s ease,

        background
        0.4s ease,

        border-color
        0.4s ease;

}


.destination-card:hover
.card-icon {

    transform:
        translateY(-3px);

    background:
        rgba(162, 204, 58, 0.12);

    border-color:
        var(--brand-green);

}


.card-icon svg {

    width: 28px;

    height: 28px;

    fill: none;

    stroke:
        var(--brand-purple);

    stroke-width: 1.5;

    stroke-linecap: round;

    stroke-linejoin: round;

}


.destination-card:hover
.card-icon svg {

    stroke:
        var(--brand-purple);

}


/* =========================================================
   CARD LABEL
========================================================= */

.card-label {

    margin-bottom: 10px;

    color:
        var(--brand-purple);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

}


/* =========================================================
   CARD HEADING
========================================================= */

.destination-card h2 {

    margin-bottom: 20px;

    color:
        var(--text-heading);

    font-family:
        var(--font-heading);

    font-size: 35px;

    font-weight: 500;

    line-height: 1.15;

}


.destination-card h2 span {

    color:
        var(--brand-purple);

}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.card-description {

    max-width: 400px;

    margin-bottom: 30px;

    color:
        var(--text-muted);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   CARD LINK
========================================================= */

.card-link {

    display: flex;

    align-items: center;

    gap: 15px;

    color:
        var(--brand-purple);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.card-link .arrow {

    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        var(--brand-green);

    border-radius: 50%;

    color:
        var(--brand-purple);

    font-size: 15px;

    transition:

        transform
        0.3s ease,

        background
        0.3s ease,

        color
        0.3s ease;

}


.destination-card:hover
.card-link .arrow {

    transform:
        translateX(5px);

    background:
        var(--brand-green);

    color:
        var(--brand-purple);

}


/* =========================================================
   CARD DECORATIVE GLOW
========================================================= */

.card-shine {

    position: absolute;

    width: 300px;

    height: 300px;

    right: -190px;

    bottom: -200px;

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            rgba(42, 35, 102, 0.09),
            transparent 65%
        );

    filter:
        blur(20px);

    transition:
        all 0.7s ease;

}


.destination-card:hover
.card-shine {

    right: -120px;

    bottom: -130px;

}


/* =========================================================
   CARD ANIMATION
========================================================= */

@keyframes cardReveal {

    from {

        opacity: 0;

        transform:
            translateY(35px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   FOOTER
========================================================= */

.hero-footer {

    max-width: 1050px;

    margin:
        55px
        auto
        0;

    display: flex;

    align-items: center;

    gap: 20px;

}


.footer-line {

    flex: 1;

    height: 1px;

    background:
        rgba(42, 35, 102, 0.12);

}


.hero-footer p {

    margin: 0;

    color:
        #77777d;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    white-space: nowrap;

}


.hero-footer a {

    color:
        var(--brand-purple);

    font-size: 9px;

    font-weight: 600;

    transition:
        color 0.3s ease;

}


.hero-footer a:hover {

    color:
        var(--brand-green);

}


/* =========================================================
   NOTICE MODAL
========================================================= */

.notice-modal {

    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(42, 35, 102, 0.18);

    border-radius: 5px;

    background:
        #ffffff;

    color:
        var(--text-dark);

    box-shadow:
        0 35px 90px
        rgba(42, 35, 102, 0.18);

}


/* =========================================================
   MODAL DECORATION
========================================================= */

.notice-decoration {

    position: absolute;

    top: -150px;

    right: -150px;

    width: 350px;

    height: 350px;

    border:
        1px solid
        rgba(42, 35, 102, 0.08);

    border-radius: 50%;

}


.notice-decoration::after {

    content: "";

    position: absolute;

    inset: 35px;

    border:
        1px solid
        rgba(162, 204, 58, 0.20);

    border-radius: 50%;

}


/* =========================================================
   MODAL CONTENT
========================================================= */

.notice-modal .modal-body {

    position: relative;

    z-index: 2;

    padding:
        55px
        65px;

    text-align: center;

}


/* =========================================================
   NOTICE ICON
========================================================= */

.notice-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0
        auto
        20px;

    border:
        1px solid
        rgba(42, 35, 102, 0.25);

    border-radius: 50%;

    color:
        var(--brand-purple);

    background:
        rgba(42, 35, 102, 0.04);

    font-family:
        var(--font-heading);

    font-size: 21px;

}


/* =========================================================
   NOTICE LABEL
========================================================= */

.notice-label {

    margin-bottom: 10px;

    color:
        var(--brand-purple);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 4px;

}


/* =========================================================
   NOTICE HEADING
========================================================= */

.notice-modal h2 {

    margin-bottom: 20px;

    color:
        var(--text-heading);

    font-family:
        var(--font-heading);

    font-size: 32px;

    font-weight: 500;

}


/* =========================================================
   NOTICE DIVIDER
========================================================= */

.notice-divider {

    width: 50px;

    height: 2px;

    margin:
        0
        auto
        25px;

    background:

        linear-gradient(
            90deg,
            var(--brand-purple),
            var(--brand-green)
        );

}


/* =========================================================
   NOTICE TEXT
========================================================= */

.notice-text {

    max-width: 700px;

    margin:
        0
        auto
        15px;

    color:
        #66666d;

    font-size: 13px;

    line-height: 1.85;

}


/* =========================================================
   NOTICE ACTIONS
========================================================= */

.notice-actions {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 35px;

}


.notice-actions .btn {

    min-width: 130px;

    padding:
        13px
        25px;

    border-radius: 2px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition:
        all 0.3s ease;

}


/* =========================================================
   DISAGREE
========================================================= */

.btn-disagree {

    border:
        1px solid
        rgba(42, 35, 102, 0.20);

    background:
        transparent;

    color:
        #66666d;

}


.btn-disagree:hover {

    border-color:
        var(--brand-purple);

    background:
        rgba(42, 35, 102, 0.04);

    color:
        var(--brand-purple);

}


/* =========================================================
   AGREE
========================================================= */

.btn-agree {

    border:
        1px solid
        var(--brand-green);

    background:
        var(--brand-green);

    color:
        #202020;

}


.btn-agree:hover {

    border-color:
        #b5dc55;

    background:
        #b5dc55;

    color:
        #202020;

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 25px
        rgba(162, 204, 58, 0.25);

}


/* =========================================================
   MODAL BACKDROP
========================================================= */

.modal-backdrop.show {

    opacity:
        0.65;

    background:
        var(--brand-purple);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .hero-section {

        padding-top:
            65px;

    }


    .navbar-text {

        display:
            none;

    }


    .destination-card {

        min-height:
            360px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* -------------------------
       NAVIGATION
    ------------------------- */

    .main-navbar {

        padding-top:
            20px;

    }


    /* -------------------------
       HERO
    ------------------------- */

    .hero-section {

        padding:
            55px
            0
            35px;

    }


    .hero-content {

        margin-bottom:
            45px;

    }


    .hero-eyebrow {

        gap:
            10px;

        font-size:
            8px;

        letter-spacing:
            2.5px;

    }


    .hero-eyebrow span {

        width:
            20px;

    }


    .hero-content h1 {

        font-size:
            clamp(
                38px,
                11vw,
                55px
            );

        letter-spacing:
            -0.5px;

    }


    .hero-description {

        font-size:
            13px;

    }


    /* -------------------------
       CARDS
    ------------------------- */

    .destination-card {

        min-height:
            340px;

        padding:
            35px
            30px;

    }


    .destination-card h2 {

        font-size:
            31px;

    }


    .card-icon {

        margin-bottom:
            25px;

    }


    /* -------------------------
       FOOTER
    ------------------------- */

    .hero-footer {

        flex-direction:
            column;

        gap:
            15px;

        margin-top:
            40px;

    }


    .footer-line {

        width:
            100%;

    }


    .hero-footer p {

        white-space:
            normal;

        text-align:
            center;

        line-height:
            1.8;

    }


    /* -------------------------
       NOTICE
    ------------------------- */

    .notice-modal .modal-body {

        padding:
            40px
            25px;

    }


    .notice-modal h2 {

        font-size:
            27px;

    }


    .notice-text {

        font-size:
            12px;

        line-height:
            1.75;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .brand-mark {

        width:
            36px;

        height:
            36px;

        font-size:
            20px;

    }


    .brand-name {

        font-size:
            15px;

    }


    .destination-card {

        padding:
            30px
            25px;

    }


    .notice-actions {

        flex-direction:
            column-reverse;

    }


    .notice-actions .btn {

        width:
            100%;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;

    }

}