.newsletter-image-part {
    min-height: 432px;
}

.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: background-color 0.3s;
}

.social-button.facebook {
    background-color: #3b5998 !important;
}

.social-button.twitter {
    background-color: #1da1f2;
}

.social-button.linkedin {
    background-color: #0077b5;
}

.social-button.whatsapp {
    background-color: #25d366;
}

.social-button:hover {
    opacity: 0.8;
}

.ratting i {
    color: white;
}

.destination-item .image img {
    height: 100%;
}
.count-text.k-plus:after {
    content: '+';
}
.count-text.m-plus:after {
    content: '+';
}

@media only screen and (min-width: 992px) {
    .main-header.header-one .main-menu .navbar-collapse .navigation > li:hover {
        background: #3397D2;
    }
}
.destination-active .destination-item.style-two .image img {
    height: 170px;
}
.page-banner-area{
    min-height: 250px;
}
.groups-links .image{
    height: 210px;
}

.main-menu .navbar-collapse li a:hover{
    text-decoration: none;
}
.main-hero-image {
    height: 550px;
}




/* ==========================================
   HEADER — PREMIUM DESIGN SYSTEM
   Prefix: hdr-
========================================== */

/* ---------- Reset & Override ---------- */
.hdr-wrap *,
.hdr-wrap *::before,
.hdr-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hdr-wrap ul,
.hdr-wrap ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hdr-wrap a {
    text-decoration: none !important;
    color: inherit;
}

.hdr-wrap button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.hdr-wrap img {
    max-width: 100%;
    display: block;
}

/* ---------- Design Tokens ---------- */
.hdr-wrap {
    --hdr-primary: #0b1e3f;
    --hdr-accent: #ff5722;
    --hdr-accent-hover: #e64a19;
    --hdr-white: #ffffff;
    --hdr-text: #1a1a1a;
    --hdr-muted: #6b7280;
    --hdr-bg-soft: #f5f7fa;
    --hdr-border: rgba(11, 30, 63, 0.08);
    --hdr-shadow-sm: 0 2px 8px rgba(11, 30, 63, 0.06);
    --hdr-shadow-md: 0 8px 24px rgba(11, 30, 63, 0.1);
    --hdr-shadow-lg: 0 20px 50px rgba(11, 30, 63, 0.15);
    --hdr-radius: 10px;
    --hdr-radius-lg: 50px;
    --hdr-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --hdr-duration: 0.35s;
    --hdr-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --hdr-height: 90px;
    --hdr-height-scrolled: 72px;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    font-family: var(--hdr-font);
    color: var(--hdr-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.hdr-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ---------- Top Bar ---------- */
.hdr-topbar {
    background: var(--hdr-primary);
    color: var(--hdr-white);
    font-size: 13px;
    padding: 10px 0;
    transition: all var(--hdr-duration) var(--hdr-ease);
    overflow: hidden;
}

.hdr-topbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.hdr-topbar__info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hdr-topbar__info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hdr-topbar__info i {
    color: var(--hdr-accent);
    font-size: 12px;
}

.hdr-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 6px;
}

.hdr-topbar__social {
    display: flex;
    gap: 4px;
}

.hdr-topbar__social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--hdr-white);
    font-size: 12px;
    transition: all var(--hdr-duration) var(--hdr-ease);
}

.hdr-topbar__social a:hover {
    background: var(--hdr-accent);
    transform: translateY(-2px);
}

/* ---------- Main Bar ---------- */
.hdr-bar {
    background: white;
    min-height: var(--hdr-height);
    display: flex;
    align-items: center;
    transition: all var(--hdr-duration) var(--hdr-ease);
}

.hdr-bar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    padding: 16px 0;
    transition: padding var(--hdr-duration) var(--hdr-ease);
}

/* ---------- Sticky State ---------- */
.hdr-wrap.is-sticky {
    position: fixed;
    top: 0;
    animation: hdrSlideDown 0.4s var(--hdr-ease);
}

.hdr-wrap.is-sticky .hdr-topbar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
}

.hdr-wrap.is-sticky .hdr-bar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--hdr-shadow-md);
    min-height: var(--hdr-height-scrolled);
}

.hdr-wrap.is-sticky .hdr-bar__row {
    padding: 10px 0;
}

.hdr-wrap.is-sticky .hdr-logo__img {
    max-height: 44px;
}

@keyframes hdrSlideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

/* ---------- Logo ---------- */
.hdr-logo {
    flex-shrink: 0;
}

.hdr-logo__link {
    display: inline-flex;
    align-items: center;
}

.hdr-logo__img {
    max-height: 56px;
    width: auto;
    transition: max-height var(--hdr-duration) var(--hdr-ease);
}

/* ---------- Navigation ---------- */
.hdr-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hdr-nav__panel {
    display: flex;
    align-items: center;
}

/* Force styles on any menu inside */
.hdr-nav__panel > ul,
.hdr-nav__panel .hdr-menu {
    display: flex !important;
    align-items: center;
    gap: 4px;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hdr-nav__panel > ul > li,
.hdr-nav__panel .hdr-menu > li {
    position: relative;
    list-style: none !important;
}

.hdr-nav__panel > ul > li > a,
.hdr-nav__panel .hdr-menu > li > a {
    display: inline-flex !important;
    align-items: center;
    padding: 12px 18px !important;
    color: var(--hdr-primary) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px;
    position: relative;
    transition: color var(--hdr-duration) var(--hdr-ease);
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.hdr-nav__panel > ul > li > a::after,
.hdr-nav__panel .hdr-menu > li > a::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 2px;
    background: var(--hdr-accent);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.4s var(--hdr-ease);
    border-radius: 2px;
}

.hdr-nav__panel > ul > li > a:hover,
.hdr-nav__panel .hdr-menu > li > a:hover,
.hdr-nav__panel > ul > li.active > a,
.hdr-nav__panel .hdr-menu > li.active > a,
.hdr-nav__panel > ul > li.current-menu-item > a,
.hdr-nav__panel .hdr-menu > li.current-menu-item > a {
    color: var(--hdr-accent) !important;
}

.hdr-nav__panel > ul > li > a:hover::after,
.hdr-nav__panel .hdr-menu > li > a:hover::after,
.hdr-nav__panel > ul > li.active > a::after,
.hdr-nav__panel .hdr-menu > li.active > a::after,
.hdr-nav__panel > ul > li.current-menu-item > a::after,
.hdr-nav__panel .hdr-menu > li.current-menu-item > a::after {
    transform: scaleX(1);
    transform-origin: left center;
}

/* Dropdown */
.hdr-nav__panel > ul > li > ul,
.hdr-nav__panel .hdr-menu > li > ul,
.hdr-nav__panel ul ul {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 230px !important;
    background: var(--hdr-white) !important;
    padding: 12px !important;
    border-radius: var(--hdr-radius) !important;
    box-shadow: var(--hdr-shadow-lg) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(12px) !important;
    transition: all 0.3s var(--hdr-ease) !important;
    flex-direction: column !important;
    display: flex !important;
    gap: 2px !important;
    border: 1px solid var(--hdr-border) !important;
}

.hdr-nav__panel > ul > li:hover > ul,
.hdr-nav__panel .hdr-menu > li:hover > ul,
.hdr-nav__panel ul li:hover > ul {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.hdr-nav__panel ul ul li a {
    display: block !important;
    padding: 10px 14px !important;
    color: var(--hdr-text) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    border-radius: 6px !important;
    transition: all 0.25s var(--hdr-ease) !important;
}

.hdr-nav__panel ul ul li a::after {
    display: none !important;
}

.hdr-nav__panel ul ul li a:hover {
    background: var(--hdr-bg-soft) !important;
    color: var(--hdr-accent) !important;
    padding-left: 20px !important;
}

/* ---------- Actions ---------- */
.hdr-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hdr-icon-btn {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hdr-bg-soft);
    border: 1px solid var(--hdr-border);
    border-radius: 50%;
    color: var(--hdr-primary);
    font-size: 16px;
    transition: all var(--hdr-duration) var(--hdr-ease);
}

.hdr-icon-btn:hover {
    background: var(--hdr-primary);
    color: var(--hdr-white);
    border-color: var(--hdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--hdr-shadow-md);
}

/* ---------- CTA Button ---------- */
.hdr-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: var(--hdr-accent);
    color: var(--hdr-white) !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--hdr-radius-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--hdr-duration) var(--hdr-ease);
    box-shadow: 0 6px 18px rgba(255, 87, 34, 0.35);
    letter-spacing: 0.3px;
}

.hdr-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff7043 0%, #ff5722 50%, #e64a19 100%);
    opacity: 0;
    transition: opacity var(--hdr-duration) var(--hdr-ease);
    z-index: 0;
}

.hdr-cta__text,
.hdr-cta__icon {
    position: relative;
    z-index: 1;
}

.hdr-cta__icon {
    font-size: 13px;
    transition: transform var(--hdr-duration) var(--hdr-ease);
}

.hdr-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 87, 34, 0.45);
    color: var(--hdr-white) !important;
}

.hdr-cta:hover::before {
    opacity: 1;
}

.hdr-cta:hover .hdr-cta__icon {
    transform: translateX(4px);
}

/* ---------- Burger Menu ---------- */
.hdr-burger {
    display: none;
    width: 46px;
    height: 46px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--hdr-bg-soft);
    border: 1px solid var(--hdr-border);
    border-radius: 50%;
    transition: all var(--hdr-duration) var(--hdr-ease);
}

.hdr-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--hdr-primary);
    border-radius: 2px;
    transition: all var(--hdr-duration) var(--hdr-ease);
}

.hdr-burger span:nth-child(2) {
    width: 14px;
}

.hdr-burger:hover {
    background: var(--hdr-primary);
    border-color: var(--hdr-primary);
}

.hdr-burger:hover span {
    background: var(--hdr-white);
}

.hdr-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hdr-burger.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hdr-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Search Popup ---------- */
.hdr-search-popup {
    position: fixed;
    inset: 0;
    background: rgba(11, 30, 63, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--hdr-duration) var(--hdr-ease);
    z-index: 10000;
}

.hdr-search-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.hdr-search-popup__inner {
    width: 100%;
    max-width: 720px;
    padding: 0 24px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.5s var(--hdr-ease);
}

.hdr-search-popup.is-open .hdr-search-popup__inner {
    transform: translateY(0);
}

.hdr-search-popup__form {
    display: flex;
    align-items: center;
    background: var(--hdr-white);
    border-radius: var(--hdr-radius-lg);
    padding: 8px 8px 8px 32px;
    box-shadow: var(--hdr-shadow-lg);
}

.hdr-search-popup__input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 14px 0;
    background: transparent;
    color: var(--hdr-text);
    font-family: inherit;
}

.hdr-search-popup__input::placeholder {
    color: var(--hdr-muted);
}

.hdr-search-popup__btn {
    width: 54px;
    height: 54px;
    background: var(--hdr-accent);
    color: var(--hdr-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--hdr-duration) var(--hdr-ease);
}

.hdr-search-popup__btn:hover {
    background: var(--hdr-primary);
    transform: scale(1.05);
}

.hdr-search-popup__close {
    position: absolute;
    top: -70px;
    right: 24px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--hdr-white);
    border-radius: 50%;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--hdr-duration) var(--hdr-ease);
}

.hdr-search-popup__close:hover {
    background: var(--hdr-white);
    color: var(--hdr-primary);
    transform: rotate(90deg);
}

/* ---------- Mobile Overlay ---------- */
.hdr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--hdr-duration) var(--hdr-ease);
    z-index: 9998;
}

.hdr-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199px) {
    .hdr-nav__panel > ul > li > a,
    .hdr-nav__panel .hdr-menu > li > a {
        padding: 10px 14px !important;
        font-size: 14px !important;
    }

    .hdr-cta {
        padding: 11px 22px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .hdr-wrap {
        --hdr-height: 72px;
    }

    .hdr-topbar {
        display: none;
    }

    .hdr-burger {
        display: flex;
    }

    .hdr-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 340px;
        max-width: 85%;
        height: 100vh;
        background: var(--hdr-white);
        padding: 90px 24px 30px;
        box-shadow: var(--hdr-shadow-lg);
        transition: right 0.4s var(--hdr-ease);
        z-index: 9999;
        overflow-y: auto;
        flex: 0;
        justify-content: flex-start;
    }

    .hdr-nav.is-open {
        right: 0;
    }

    .hdr-nav__panel > ul,
    .hdr-nav__panel .hdr-menu {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        width: 100% !important;
    }

    .hdr-nav__panel > ul > li,
    .hdr-nav__panel .hdr-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--hdr-border);
    }

    .hdr-nav__panel > ul > li > a,
    .hdr-nav__panel .hdr-menu > li > a {
        padding: 16px 12px !important;
        width: 100%;
        justify-content: space-between;
        font-size: 15px !important;
    }

    .hdr-nav__panel > ul > li > a::after,
    .hdr-nav__panel .hdr-menu > li > a::after {
        display: none !important;
    }

    .hdr-nav__panel ul ul {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 0 0 10px 14px !important;
        border: none !important;
        background: transparent !important;
        min-width: 0 !important;
    }

    .hdr-cta {
        padding: 10px 18px;
        font-size: 13px;
    }

    .hdr-icon-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 575px) {
    .hdr-actions {
        gap: 8px;
    }

    .hdr-cta__text {
        display: none;
    }

    .hdr-cta {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .hdr-cta__icon {
        transform: none !important;
    }

    .hdr-icon-btn {
        display: none;
    }

    .hdr-search-popup__input {
        font-size: 16px;
    }
}

/* ---------- Body Lock ---------- */
body.hdr-locked {
    overflow: hidden;
}





/* ==========================================
   HERO SECTION — PREMIUM DESIGN
   Prefix: hro-
========================================== */

/* ---------- Reset ---------- */
.hro-wrap *,
.hro-wrap *::before,
.hro-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ---------- Design Tokens ---------- */
.hro-wrap {
    --hro-primary: #0b1e3f;
    --hro-accent: #ff5722;
    --hro-accent-light: #ff8a65;
    --hro-gold: #ffc857;
    --hro-white: #ffffff;
    --hro-text: #1a1a1a;
    --hro-muted: rgba(255, 255, 255, 0.7);
    --hro-glass: rgba(255, 255, 255, 0.12);
    --hro-glass-border: rgba(255, 255, 255, 0.2);
    --hro-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    --hro-radius: 16px;
    --hro-radius-sm: 10px;
    --hro-radius-lg: 24px;
    --hro-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --hro-duration: 0.4s;
    --hro-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    font-family: var(--hro-font);
    color: var(--hro-white);
    padding: 140px 0 40px;
    isolation: isolate;
}

.hro-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 5;
}

/* ---------- Background Image ---------- */
.hro-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hro-bg__img {
    width: 100%;
    height: 82%;
    /*object-fit: contain;*/
    /*object-position: center;*/
    /*transform: scale(1.05);*/
    /*animation: hroZoom 20s ease-in-out infinite alternate;*/
}

@keyframes hroZoom {
    0%   { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1%, -1%); }
}

/* ---------- Overlays ---------- */
.hro-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 30, 63, 0.55);
    z-index: 2;
}

.hro-gradient {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg,
            rgba(11, 30, 63, 0.7) 0%,
            rgba(11, 30, 63, 0.3) 40%,
            rgba(11, 30, 63, 0.5) 70%,
            rgba(11, 30, 63, 0.95) 100%),
            linear-gradient(90deg,
            rgba(11, 30, 63, 0.6) 0%,
            transparent 60%);
    z-index: 3;
}

.hro-pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(255, 87, 34, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 80% 70%, rgba(255, 200, 87, 0.1) 0%, transparent 40%);
    z-index: 4;
    pointer-events: none;
}

/* ---------- Floating Decorative Icons ---------- */
.hro-decor {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hro-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--hro-glass-border);
    border-radius: 50%;
    color: var(--hro-white);
    font-size: 22px;
    z-index: 4;
    opacity: 0.7;
    animation: hroFloat 6s ease-in-out infinite;
}

.hro-decor--1 {
    top: 22%;
    right: 12%;
    animation-delay: 0s;
}

.hro-decor--2 {
    top: 55%;
    right: 22%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    animation-delay: 2s;
}

.hro-decor--3 {
    top: 35%;
    left: 8%;
    width: 48px;
    height: 48px;
    font-size: 18px;
    animation-delay: 4s;
}

@keyframes hroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-20px) rotate(8deg); }
}

/* ---------- Hero Content ---------- */
.hro-content {
    max-width: 820px;
    text-align: left;
    position: relative;
    z-index: 5;
    margin-top: 200px;
    right: 60px;
}

/* Badge */
.hro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--hro-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--hro-glass-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.hro-badge__dot {
    width: 8px;
    height: 8px;
    background: var(--hro-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.25);
    animation: hroPulse 2s ease-in-out infinite;
}

@keyframes hroPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.25); }
    50%      { box-shadow: 0 0 0 8px rgba(255, 87, 34, 0); }
}

/* Title */
.hro-title {
    font-size: clamp(40px, 7vw, 84px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--hro-white);
}

.hro-title__line {
    display: block;
}

.hro-title__line--accent {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--hro-gold) 0%, var(--hro-accent-light) 50%, var(--hro-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 60px;
}

.hro-title__underline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    width: 100%;
    height: 12px;
    color: var(--hro-accent);
    opacity: 0.8;
}

.hro-title__underline path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: hroDraw 1.5s ease-out 0.8s forwards;
}

@keyframes hroDraw {
    to { stroke-dashoffset: 0; }
}

/* Description */
.hro-desc {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.7;
    color: var(--hro-muted);
    max-width: 620px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* Stats */
.hro-stats {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 20px 36px;
    background: rgb(0 0 0 / 46%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--hro-glass-border);
    border-radius: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.hro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 100px;
}

.hro-stat__number {
    font-size: 26px;
    font-weight: 800;
    color: var(--hro-white);
    line-height: 1;
    background: linear-gradient(135deg, var(--hro-white) 0%, var(--hro-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hro-stat__label {
    font-size: 12px;
    color: var(--hro-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hro-stat__label i {
    color: var(--hro-gold);
    font-size: 10px;
    margin-right: 3px;
}

.hro-stat__divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
}

/* ---------- Search Bar ---------- */
.hro-search-wrap {
    position: relative;
    z-index: 6;
    margin-top: auto;
}

.hro-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--hro-radius-lg);
    padding: 10px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hro-search__field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--hro-radius);
    transition: background var(--hro-duration) var(--hro-ease);
    min-width: 0;
}

.hro-search__field:hover {
    background: #f5f7fa;
}

.hro-search__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff1eb 0%, #ffe0d3 100%);
    color: var(--hro-accent);
    border-radius: 12px;
    font-size: 16px;
    transition: all var(--hro-duration) var(--hro-ease);
}

.hro-search__field:hover .hro-search__icon {
    background: var(--hro-accent);
    color: var(--hro-white);
    transform: scale(1.05);
}

.hro-search__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hro-search__label {
    font-size: 11px;
    font-weight: 700;
    color: var(--hro-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
}

.hro-search__select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--hro-text);
    font-family: inherit;
    cursor: pointer;
    padding: 4px 0;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230b1e3f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 20px;
}

.hro-search__select:focus {
    outline: none;
}

.hro-search__divider {
    width: 1px;
    height: 48px;
    background: rgba(11, 30, 63, 0.1);
    flex-shrink: 0;
}

/* Search Button */
.hro-search__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--hro-accent) 0%, #e64a19 100%);
    color: var(--hro-white);
    border: none;
    border-radius: var(--hro-radius);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: all var(--hro-duration) var(--hro-ease);
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.35);
    position: relative;
    overflow: hidden;
}

.hro-search__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff7043 0%, var(--hro-accent) 100%);
    opacity: 0;
    transition: opacity var(--hro-duration) var(--hro-ease);
}

.hro-search__btn i,
.hro-search__btn span {
    position: relative;
    z-index: 1;
}

.hro-search__btn i {
    font-size: 14px;
    transition: transform var(--hro-duration) var(--hro-ease);
}

.hro-search__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 87, 34, 0.5);
}

.hro-search__btn:hover::before {
    opacity: 1;
}

.hro-search__btn:hover i {
    transform: scale(1.15);
}

/* ---------- Scroll Indicator ---------- */
.hro-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
    color: var(--hro-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.hro-scroll__line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--hro-white), transparent);
    position: relative;
    overflow: hidden;
}

.hro-scroll__line::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--hro-accent);
    animation: hroScrollLine 2s ease-in-out infinite;
}

@keyframes hroScrollLine {
    0%   { top: -40px; }
    100% { top: 40px; }
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199px) {
    .hro-search__field {
        padding: 12px 14px;
    }

    .hro-search__btn {
        padding: 16px 24px;
    }
}

@media (max-width: 991px) {
    .hro-wrap {
        padding: 120px 0 30px;
    }

    .hro-decor { display: none; }

    .hro-search {
        flex-wrap: wrap;
        padding: 16px;
        gap: 10px;
    }

    .hro-search__field {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
        padding: 12px 14px;
        background: #f8fafc;
        border-radius: 12px;
    }

    .hro-search__divider {
        display: none;
    }

    .hro-search__btn {
        width: 100%;
        justify-content: center;
        padding: 18px;
    }

    .hro-stats {
        gap: 20px;
        padding: 18px 28px;
    }

    .hro-stat {
        min-width: 80px;
    }

    .hro-stat__number {
        font-size: 22px;
    }

    .hro-scroll { display: none; }
}

@media (max-width: 575px) {
    .hro-wrap {
        padding: 110px 0 24px;
    }

    .hro-content {
        margin-bottom: 40px;
    }

    .hro-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hro-desc {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .hro-stats {
        gap: 14px;
        padding: 16px 20px;
    }

    .hro-stat__divider {
        height: 28px;
    }

    .hro-stat__number {
        font-size: 18px;
    }

    .hro-stat__label {
        font-size: 10px;
    }

    .hro-search__field {
        flex: 1 1 100%;
    }

    .hro-search__icon {
        width: 38px;
        height: 38px;
    }
}




/* ==========================================
   ABOUT US SECTION — PREMIUM DESIGN
   Prefix: abt-
========================================== */

/* ---------- Reset ---------- */
.abt-wrap *,
.abt-wrap *::before,
.abt-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.abt-wrap ul, .abt-wrap ol { list-style: none; }
.abt-wrap a { text-decoration: none; color: inherit; }
.abt-wrap img { max-width: 100%; display: block; }

/* ---------- Design Tokens ---------- */
.abt-wrap {
    --abt-primary: #0f263d;        /* Deep emerald green */
    --abt-primary-dark: #080f28;
    --abt-primary-light: #1a395c;
    --abt-gold: #ff5722;           /* Elegant gold */
    --abt-gold-light: #e64a19;
    --abt-cream: #faf7f0;
    --abt-white: #ffffff;
    --abt-text: #1a2b26;
    --abt-muted: #6b7a74;
    --abt-border: rgba(15, 61, 46, 0.1);
    --abt-shadow-sm: 0 4px 14px rgba(15, 61, 46, 0.08);
    --abt-shadow-md: 0 12px 30px rgba(15, 61, 46, 0.12);
    --abt-shadow-lg: 0 25px 60px rgba(15, 61, 46, 0.18);
    --abt-radius: 14px;
    --abt-radius-lg: 22px;
    --abt-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --abt-duration: 0.4s;
    --abt-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --abt-serif: 'Playfair Display', Georgia, serif;

    position: relative;
    padding: 120px 0;
    background: var(--abt-cream);
    font-family: var(--abt-font);
    color: var(--abt-text);
    overflow: hidden;
    isolation: isolate;
}

.abt-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* ---------- Background Decor ---------- */
.abt-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.abt-bg-decor__circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.abt-bg-decor__circle--1 {
    width: 500px;
    height: 500px;
    background: var(--abt-gold);
    top: -150px;
    right: -150px;
}

.abt-bg-decor__circle--2 {
    width: 400px;
    height: 400px;
    background: var(--abt-primary-light);
    bottom: -100px;
    left: -100px;
}

.abt-bg-decor__pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 1px 1px, rgba(15, 61, 46, 0.06) 1px, transparent 0);
    background-size: 30px 30px;
    opacity: 0.5;
}

/* ---------- Section Header ---------- */
.abt-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 70px;
}

.abt-header__tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.abt-header__tag-line {
    width: 40px;
    height: 1px;
    background: var(--abt-gold);
}

.abt-header__tag-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--abt-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.abt-header__title {
    font-family: var(--abt-serif);
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--abt-primary-dark);
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.abt-header__title-accent {
    position: relative;
    display: inline-block;
    color: var(--abt-gold);
    font-style: italic;
}

.abt-header__underline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    width: 100%;
    height: 10px;
    color: var(--abt-gold);
    opacity: 0.6;
}

.abt-header__underline path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: abtDraw 1.5s ease-out 0.5s forwards;
}

@keyframes abtDraw {
    to { stroke-dashoffset: 0; }
}

.abt-header__desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--abt-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- Main Grid ---------- */
.abt-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

/* ---------- Visual / Images ---------- */
.abt-visual {
    position: relative;
}

.abt-visual__stack {
    position: relative;
    padding: 20px;
}

.abt-visual__main {
    position: relative;
    border-radius: var(--abt-radius-lg);
    overflow: hidden;
    box-shadow: var(--abt-shadow-lg);
    aspect-ratio: 4 / 5;
}

.abt-visual__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--abt-ease);
}

.abt-visual__main:hover img {
    transform: scale(1.05);
}

.abt-visual__secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    aspect-ratio: 1;
    border-radius: var(--abt-radius);
    overflow: hidden;
    border: 6px solid var(--abt-cream);
    box-shadow: var(--abt-shadow-md);
}

.abt-visual__secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-visual__badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--abt-gold);
    color: var(--abt-white);
    padding: 18px 22px;
    border-radius: var(--abt-radius);
    text-align: center;
    box-shadow: var(--abt-shadow-md);
    z-index: 3;
}

.abt-visual__badge-number {
    display: block;
    font-family: var(--abt-serif);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: var(--abt-primary-dark);
}

.abt-visual__badge-text {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    color: var(--abt-primary-dark);
    line-height: 1.3;
}

.abt-visual__card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--abt-white);
    padding: 16px 20px;
    border-radius: var(--abt-radius);
    box-shadow: var(--abt-shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    border-left: 4px solid var(--abt-gold);
}

.abt-visual__card-icon {
    width: 44px;
    height: 44px;
    background: var(--abt-primary);
    color: var(--abt-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.abt-visual__card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.abt-visual__card-content strong {
    font-size: 14px;
    color: var(--abt-primary-dark);
    font-weight: 700;
}

.abt-visual__card-content span {
    font-size: 12px;
    color: var(--abt-muted);
}

/* ---------- Content ---------- */
.abt-content__subtitle {
    font-family: var(--abt-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--abt-primary-dark);
    line-height: 1.35;
    margin-bottom: 22px;
    position: relative;
    padding-left: 24px;
}

.abt-content__subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: linear-gradient(to bottom, var(--abt-gold), var(--abt-primary));
    border-radius: 2px;
}

.abt-content__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--abt-muted);
    margin-bottom: 18px;
}

.abt-content__text strong {
    color: var(--abt-primary-dark);
    font-weight: 600;
}

/* ---------- Features ---------- */
.abt-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0 36px;
}

.abt-feature {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--abt-white);
    border-radius: var(--abt-radius);
    border: 1px solid var(--abt-border);
    transition: all var(--abt-duration) var(--abt-ease);
}

.abt-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--abt-shadow-md);
    border-color: var(--abt-gold);
}

.abt-feature__icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--abt-primary) 0%, var(--abt-primary-light) 100%);
    color: var(--abt-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--abt-duration) var(--abt-ease);
}

.abt-feature:hover .abt-feature__icon {
    background: var(--abt-gold);
    color: var(--abt-white);
    transform: rotate(-8deg) scale(1.05);
}

.abt-feature__content h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--abt-primary-dark);
    margin-bottom: 4px;
}

.abt-feature__content p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--abt-muted);
    margin: 0;
}

/* ---------- CTA Buttons ---------- */
.abt-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.abt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--abt-duration) var(--abt-ease);
    cursor: pointer;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.abt-btn--primary {
    background: linear-gradient(135deg, var(--abt-primary) 0%, var(--abt-primary-light) 100%);
    color: var(--abt-white);
    box-shadow: 0 8px 20px rgba(15, 61, 46, 0.25);
}

.abt-btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--abt-gold) 0%, var(--abt-gold-light) 100%);
    opacity: 0;
    transition: opacity var(--abt-duration) var(--abt-ease);
}

.abt-btn--primary span,
.abt-btn--primary i {
    position: relative;
    z-index: 1;
}

.abt-btn--primary i {
    transition: transform var(--abt-duration) var(--abt-ease);
}

.abt-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 61, 46, 0.35);
    color: var(--abt-primary-dark);
}

.abt-btn--primary:hover::before {
    opacity: 1;
}

.abt-btn--primary:hover i {
    transform: translateX(4px);
}

.abt-btn--ghost {
    background: transparent;
    color: var(--abt-primary-dark);
    border: 2px solid var(--abt-primary);
}

.abt-btn--ghost:hover {
    background: var(--abt-primary);
    color: var(--abt-white);
    transform: translateY(-2px);
}

/* ---------- Stats Bar ---------- */
.abt-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: linear-gradient(135deg, var(--abt-primary-dark) 0%, var(--abt-primary) 100%);
    padding: 40px 30px;
    border-radius: var(--abt-radius-lg);
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: var(--abt-shadow-lg);
}

.abt-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.abt-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.abt-stat__icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--abt-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.abt-stat__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.abt-stat__number {
    font-family: var(--abt-serif);
    font-size: 34px;
    font-weight: 700;
    color: var(--abt-white);
    line-height: 1;
}

.abt-stat__number::after {
    content: '+';
    color: var(--abt-gold);
    margin-left: 2px;
    font-size: 24px;
}

.abt-stat__number[data-decimal="true"]::after {
    content: '';
}

.abt-stat__label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.abt-stat__divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    justify-self: center;
    align-self: center;
}

/* ---------- Destinations Showcase ---------- */
.abt-destinations__heading {
    text-align: center;
    font-family: var(--abt-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--abt-primary-dark);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.abt-destinations__heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--abt-gold);
    border-radius: 2px;
}

.abt-destinations {
    text-align: center;
}

.abt-destinations__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.abt-dest-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--abt-radius);
    overflow: hidden;
    box-shadow: var(--abt-shadow-sm);
    transition: all var(--abt-duration) var(--abt-ease);
}

.abt-dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--abt-ease);
}

.abt-dest-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
    rgba(8, 40, 32, 0.95) 0%,
    rgba(8, 40, 32, 0.4) 50%,
    rgba(8, 40, 32, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    text-align: left;
    transition: all var(--abt-duration) var(--abt-ease);
}

.abt-dest-card__label {
    font-size: 10px;
    color: var(--abt-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 6px;
}

.abt-dest-card__overlay h5 {
    font-family: var(--abt-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--abt-white);
    margin-bottom: 6px;
    transition: color var(--abt-duration) var(--abt-ease);
}

.abt-dest-card__count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--abt-duration) var(--abt-ease);
}

.abt-dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--abt-shadow-lg);
}

.abt-dest-card:hover img {
    transform: scale(1.1);
}

.abt-dest-card:hover .abt-dest-card__overlay {
    background: linear-gradient(to top,
    rgba(15, 61, 46, 0.98) 0%,
    rgba(15, 61, 46, 0.6) 50%,
    rgba(15, 61, 46, 0.3) 100%);
}

.abt-dest-card:hover .abt-dest-card__overlay h5 {
    color: var(--abt-gold);
}

.abt-dest-card:hover .abt-dest-card__count {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199px) {
    .abt-main {
        gap: 50px;
    }

    .abt-destinations__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .abt-wrap {
        padding: 80px 0;
    }

    .abt-main {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }

    .abt-visual__stack {
        max-width: 500px;
        margin: 0 auto;
    }

    .abt-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 35px 25px;
    }

    .abt-stat__divider {
        display: none;
    }

    .abt-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .abt-wrap {
        padding: 60px 0;
    }

    .abt-header {
        margin-bottom: 50px;
    }

    .abt-header__title {
        font-size: 32px;
    }

    .abt-destinations__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-destinations__grid .abt-dest-card:last-child {
        grid-column: span 2;
        aspect-ratio: 16 / 9;
    }

    .abt-visual__secondary {
        width: 45%;
        right: -10px;
        bottom: -20px;
    }

    .abt-visual__card {
        left: -10px;
        bottom: 20px;
        padding: 12px 16px;
    }

    .abt-visual__badge {
        left: -10px;
        padding: 14px 18px;
    }

    .abt-visual__badge-number {
        font-size: 28px;
    }

    .abt-content__subtitle {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .abt-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .abt-stat {
        justify-content: center;
    }

    .abt-destinations__grid {
        grid-template-columns: 1fr;
    }

    .abt-destinations__grid .abt-dest-card:last-child {
        grid-column: span 1;
        aspect-ratio: 3 / 4;
    }

    .abt-cta-row {
        flex-direction: column;
    }

    .abt-btn {
        justify-content: center;
        width: 100%;
    }

    .abt-visual__secondary {
        display: none;
    }
}



/* ==========================================
   WHY CHOOSE US — ELEGANT DESIGN
   Prefix: why-
========================================== */

/* ---------- Reset ---------- */
.why-wrap *,
.why-wrap *::before,
.why-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.why-wrap ul, .why-wrap ol { list-style: none; }
.why-wrap a { text-decoration: none; color: inherit; }
.why-wrap img { max-width: 100%; display: block; }

/* ---------- Design Tokens ---------- */
.why-wrap {
    --why-primary: #0f3d2e;
    --why-primary-dark: #082820;
    --why-primary-light: #1a5c47;
    --why-gold: #c9a961;
    --why-gold-light: #e0c584;
    --why-cream: #faf7f0;
    --why-white: #ffffff;
    --why-text: #1a2b26;
    --why-muted: #6b7a74;
    --why-border: rgba(15, 61, 46, 0.1);
    --why-shadow-sm: 0 4px 14px rgba(15, 61, 46, 0.08);
    --why-shadow-md: 0 12px 30px rgba(15, 61, 46, 0.12);
    --why-shadow-lg: 0 25px 60px rgba(15, 61, 46, 0.18);
    --why-radius: 14px;
    --why-radius-lg: 22px;
    --why-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --why-duration: 0.4s;
    --why-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --why-serif: 'Playfair Display', Georgia, serif;

    position: relative;
    padding: 120px 0;
    background: var(--why-white);
    font-family: var(--why-font);
    color: var(--why-text);
    overflow: hidden;
    isolation: isolate;
}

.why-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* ---------- Background Decor ---------- */
.why-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.why-bg-decor__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.why-bg-decor__orb--1 {
    width: 600px;
    height: 600px;
    background: var(--why-gold);
    top: -200px;
    left: -200px;
}

.why-bg-decor__orb--2 {
    width: 500px;
    height: 500px;
    background: var(--why-primary-light);
    bottom: -150px;
    right: -150px;
}

/* ---------- Main Grid ---------- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* ---------- Visual / Image Composition ---------- */
.why-visual {
    position: relative;
}

.why-visual__stack {
    position: relative;
    padding: 30px;
}

.why-visual__main {
    position: relative;
    border-radius: var(--why-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--why-shadow-lg);
}

.why-visual__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--why-ease);
}

.why-visual__main:hover img {
    transform: scale(1.05);
}

.why-visual__glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
    transparent 0%,
    transparent 50%,
    rgba(201, 169, 97, 0.2) 100%);
    pointer-events: none;
}

.why-visual__secondary {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 48%;
    aspect-ratio: 1;
    border-radius: var(--why-radius);
    overflow: hidden;
    border: 6px solid var(--why-white);
    box-shadow: var(--why-shadow-md);
}

.why-visual__secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experience Badge */
.why-visual__badge {
    position: absolute;
    top: 40px;
    left: -30px;
    background: var(--why-white);
    padding: 18px 22px;
    border-radius: var(--why-radius);
    box-shadow: var(--why-shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    border: 1px solid var(--why-border);
}

.why-visual__badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--why-gold) 0%, var(--why-gold-light) 100%);
    color: var(--why-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.4);
}

.why-visual__badge-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.why-visual__badge-number {
    font-family: var(--why-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--why-primary-dark);
    line-height: 1;
}

.why-visual__badge-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--why-muted);
    line-height: 1.3;
    margin-top: 4px;
}

/* Floating Stat Card */
.why-visual__stat {
    position: absolute;
    bottom: 60px;
    left: -40px;
    background: var(--why-primary);
    color: var(--why-white);
    padding: 16px 20px;
    border-radius: var(--why-radius);
    box-shadow: var(--why-shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.why-visual__stat-icon {
    width: 40px;
    height: 40px;
    background: var(--why-gold);
    color: var(--why-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.why-visual__stat-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.why-visual__stat-body strong {
    font-family: var(--why-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--why-gold);
    line-height: 1;
}

.why-visual__stat-body span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Decorative Ring */
.why-visual__ring {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px dashed var(--why-gold);
    border-radius: 50%;
    opacity: 0.5;
    animation: whyRotate 20s linear infinite;
    z-index: 0;
}

@keyframes whyRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ---------- Content ---------- */
.why-content {
    position: relative;
}

/* Tag */
.why-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.why-tag__line {
    width: 36px;
    height: 2px;
    background: var(--why-gold);
}

.why-tag__text {
    font-size: 13px;
    font-weight: 600;
    color: var(--why-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Title */
.why-title {
    font-family: var(--why-serif);
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--why-primary-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.why-title__accent {
    color: var(--why-gold);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.why-title__accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: linear-gradient(90deg, var(--why-gold), transparent);
    border-radius: 2px;
}

/* Description */
.why-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--why-muted);
    margin-bottom: 36px;
    max-width: 560px;
}

/* ---------- Reasons List ---------- */
.why-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 36px;
}

.why-reason {
    position: relative;
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--why-cream);
    border-radius: var(--why-radius);
    border: 1px solid transparent;
    transition: all var(--why-duration) var(--why-ease);
    overflow: hidden;
}

.why-reason::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--why-gold);
    transition: height var(--why-duration) var(--why-ease);
}

.why-reason:hover {
    background: var(--why-white);
    border-color: var(--why-border);
    box-shadow: var(--why-shadow-md);
    transform: translateY(-4px);
}

.why-reason:hover::before {
    height: 100%;
}

.why-reason__number {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: var(--why-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--why-primary);
    opacity: 0.08;
    line-height: 1;
    transition: all var(--why-duration) var(--why-ease);
}

.why-reason:hover .why-reason__number {
    opacity: 0.2;
    color: var(--why-gold);
}

.why-reason__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--why-white);
    color: var(--why-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--why-duration) var(--why-ease);
    box-shadow: var(--why-shadow-sm);
}

.why-reason:hover .why-reason__icon {
    background: linear-gradient(135deg, var(--why-primary) 0%, var(--why-primary-light) 100%);
    color: var(--why-gold);
    transform: rotate(-8deg) scale(1.05);
}

.why-reason__body {
    flex: 1;
    min-width: 0;
    padding-right: 24px;
}

.why-reason__body h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--why-primary-dark);
    margin-bottom: 6px;
    transition: color var(--why-duration) var(--why-ease);
}

.why-reason:hover .why-reason__body h5 {
    color: var(--why-gold);
}

.why-reason__body p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--why-muted);
    margin: 0;
}

/* ---------- Stats Row ---------- */
.why-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--why-primary-dark) 0%, var(--why-primary) 100%);
    border-radius: var(--why-radius);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--why-shadow-md);
}

.why-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-stat__number {
    font-family: var(--why-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--why-white);
    line-height: 1;
    display: inline;
}

.why-stat__suffix {
    font-family: var(--why-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--why-gold);
    margin-left: 2px;
}

.why-stat__label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 4px;
}

.why-stat__divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ---------- CTA Row ---------- */
.why-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.why-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--why-primary) 0%, var(--why-primary-light) 100%);
    color: var(--why-white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.3px;
    transition: all var(--why-duration) var(--why-ease);
    box-shadow: 0 8px 22px rgba(15, 61, 46, 0.25);
    position: relative;
    overflow: hidden;
}

.why-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--why-gold) 0%, var(--why-gold-light) 100%);
    opacity: 0;
    transition: opacity var(--why-duration) var(--why-ease);
}

.why-btn span,
.why-btn i {
    position: relative;
    z-index: 1;
}

.why-btn i {
    transition: transform var(--why-duration) var(--why-ease);
}

.why-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 61, 46, 0.35);
    color: var(--why-primary-dark);
}

.why-btn:hover::before {
    opacity: 1;
}

.why-btn:hover i {
    transform: translateX(4px);
}

/* Contact Info */
.why-cta__contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px 10px 10px;
    background: var(--why-cream);
    border-radius: 50px;
    border: 1px solid var(--why-border);
    transition: all var(--why-duration) var(--why-ease);
}

.why-cta__contact:hover {
    border-color: var(--why-gold);
    box-shadow: var(--why-shadow-sm);
}

.why-cta__icon {
    width: 40px;
    height: 40px;
    background: var(--why-gold);
    color: var(--why-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    animation: whyPulse 2s ease-in-out infinite;
}

@keyframes whyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.5); }
    50%      { box-shadow: 0 0 0 10px rgba(201, 169, 97, 0); }
}

.why-cta__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.why-cta__body span {
    font-size: 11px;
    color: var(--why-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.why-cta__body strong {
    font-size: 15px;
    color: var(--why-primary-dark);
    font-weight: 700;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199px) {
    .why-grid {
        gap: 50px;
    }

    .why-reasons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .why-wrap {
        padding: 80px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-visual__stack {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-visual__badge {
        left: 0;
    }

    .why-visual__stat {
        left: 0;
    }

    .why-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .why-stat__divider {
        display: none;
    }

    .why-stat {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .why-wrap {
        padding: 60px 0;
    }

    .why-title {
        font-size: 28px;
    }

    .why-desc {
        font-size: 15px;
    }

    .why-reasons {
        grid-template-columns: 1fr;
    }

    .why-visual__secondary {
        width: 40%;
        right: -10px;
        bottom: -15px;
    }

    .why-visual__badge {
        padding: 14px 18px;
    }

    .why-visual__badge-number {
        font-size: 24px;
    }

    .why-visual__stat {
        padding: 12px 16px;
    }

    .why-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .why-btn {
        justify-content: center;
    }

    .why-cta__contact {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .why-stats {
        padding: 20px;
    }

    .why-stat__number {
        font-size: 26px;
    }

    .why-visual__ring {
        display: none;
    }

    .why-visual__stat {
        display: none;
    }
}





/* ==========================================
   FOOTER — PREMIUM DESIGN
   Prefix: ftr-
========================================== */

/* ---------- Reset ---------- */
.ftr-wrap *,
.ftr-wrap *::before,
.ftr-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ftr-wrap ul, .ftr-wrap ol { list-style: none; }
.ftr-wrap a { text-decoration: none; color: inherit; }
.ftr-wrap img { max-width: 100%; display: block; }

/* ---------- Design Tokens ---------- */
.ftr-wrap {
    --ftr-primary: #0f3d2e;
    --ftr-primary-dark: #082820;
    --ftr-primary-darker: #051a14;
    --ftr-primary-light: #1a5c47;
    --ftr-gold: #c9a961;
    --ftr-gold-light: #e0c584;
    --ftr-cream: #faf7f0;
    --ftr-white: #ffffff;
    --ftr-text: rgba(255, 255, 255, 0.75);
    --ftr-text-muted: rgba(255, 255, 255, 0.5);
    --ftr-border: rgba(255, 255, 255, 0.08);
    --ftr-border-light: rgba(255, 255, 255, 0.15);
    --ftr-radius: 12px;
    --ftr-radius-lg: 18px;
    --ftr-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ftr-duration: 0.35s;
    --ftr-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ftr-serif: 'Playfair Display', Georgia, serif;

    position: relative;
    background: var(--ftr-primary-dark);
    color: var(--ftr-text);
    font-family: var(--ftr-font);
    overflow: hidden;
    isolation: isolate;
}

.ftr-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 3;
}

/* ---------- Top Decorative Line ---------- */
.ftr-topline {
    height: 4px;
    background: linear-gradient(90deg,
    var(--ftr-gold) 0%,
    var(--ftr-gold-light) 25%,
    var(--ftr-primary-light) 50%,
    var(--ftr-gold-light) 75%,
    var(--ftr-gold) 100%);
    background-size: 200% 100%;
    animation: ftrShine 4s linear infinite;
    position: relative;
    z-index: 3;
}

@keyframes ftrShine {
    from { background-position: 0% 0; }
    to   { background-position: 200% 0; }
}

/* ---------- Background ---------- */
.ftr-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
            linear-gradient(180deg,
            var(--ftr-primary-darker) 0%,
            var(--ftr-primary-dark) 50%,
            var(--ftr-primary-darker) 100%);
}

.ftr-bg__overlay {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 15% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 85% 70%, rgba(26, 92, 71, 0.15) 0%, transparent 40%);
}

.ftr-bg__pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.6;
}

/* ---------- Main Footer ---------- */
.ftr-main {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

.ftr-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    align-items: flex-start;
}

/* ---------- Brand Column ---------- */
.ftr-brand {
    position: relative;
}

.ftr-brand__desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ftr-text);
    margin-bottom: 28px;
    max-width: 380px;
}

/* Contact Info */
.ftr-brand__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.ftr-brand__contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ftr-text);
    transition: color var(--ftr-duration) var(--ftr-ease);
}

.ftr-brand__contact li:hover {
    color: var(--ftr-gold);
}

.ftr-brand__contact li:hover a {
    color: var(--ftr-gold);
}

.ftr-brand__contact-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.2);
    color: var(--ftr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all var(--ftr-duration) var(--ftr-ease);
}

.ftr-brand__contact li:hover .ftr-brand__contact-icon {
    background: var(--ftr-gold);
    color: var(--ftr-primary-dark);
    transform: rotate(-8deg) scale(1.05);
}

.ftr-brand__contact a {
    color: inherit;
    transition: color var(--ftr-duration) var(--ftr-ease);
}

/* Social Icons */
.ftr-social {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 26px;
    border-top: 1px solid var(--ftr-border);
}

.ftr-social__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ftr-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ftr-social__links {
    display: flex;
    gap: 8px;
}

.ftr-social__links a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ftr-border-light);
    color: var(--ftr-white);
    border-radius: 50%;
    font-size: 13px;
    transition: all var(--ftr-duration) var(--ftr-ease);
    position: relative;
    overflow: hidden;
}

.ftr-social__links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ftr-gold) 0%, var(--ftr-gold-light) 100%);
    opacity: 0;
    transition: opacity var(--ftr-duration) var(--ftr-ease);
    border-radius: 50%;
}

.ftr-social__links a i {
    position: relative;
    z-index: 1;
}

.ftr-social__links a:hover {
    transform: translateY(-3px);
    border-color: var(--ftr-gold);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.ftr-social__links a:hover::before {
    opacity: 1;
}

.ftr-social__links a:hover i {
    color: var(--ftr-primary-dark);
}

/* ---------- Links Columns ---------- */
.ftr-links-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ftr-links__title {
    font-family: var(--ftr-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--ftr-white);
    margin-bottom: 24px;
    padding-bottom: 14px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ftr-links__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--ftr-gold);
    border-radius: 2px;
}

.ftr-links__title-dot {
    width: 6px;
    height: 6px;
    background: var(--ftr-gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
}

.ftr-links__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ftr-links__list li {
    position: relative;
}

.ftr-links__list li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--ftr-text);
    padding: 4px 0;
    transition: all var(--ftr-duration) var(--ftr-ease);
    position: relative;
}

.ftr-links__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 11px;
    color: var(--ftr-gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--ftr-duration) var(--ftr-ease);
}

.ftr-links__list li a:hover {
    color: var(--ftr-gold);
    transform: translateX(4px);
}

.ftr-links__list li a:hover .ftr-links__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Working Hours List */
.ftr-links__list--hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--ftr-border);
    border-radius: 8px;
    font-size: 13px;
    gap: 10px;
    transition: all var(--ftr-duration) var(--ftr-ease);
}

.ftr-links__list--hours li:hover {
    background: rgba(201, 169, 97, 0.08);
    border-color: rgba(201, 169, 97, 0.2);
}

.ftr-links__list--hours li span {
    color: var(--ftr-text);
    font-weight: 500;
}

.ftr-links__list--hours li strong {
    color: var(--ftr-white);
    font-weight: 600;
    font-size: 12px;
}

.ftr-closed {
    color: #ff6b6b !important;
    font-style: italic;
}

/* Emergency Card */
.ftr-emergency {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg,
    rgba(201, 169, 97, 0.12) 0%,
    rgba(201, 169, 97, 0.05) 100%);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: var(--ftr-radius);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--ftr-duration) var(--ftr-ease);
}

.ftr-emergency:hover {
    background: linear-gradient(135deg,
    rgba(201, 169, 97, 0.2) 0%,
    rgba(201, 169, 97, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ftr-emergency__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--ftr-gold);
    color: var(--ftr-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    animation: ftrPulse 2s ease-in-out infinite;
}

@keyframes ftrPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.5); }
    50%      { box-shadow: 0 0 0 10px rgba(201, 169, 97, 0); }
}

.ftr-emergency__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ftr-emergency__body span {
    font-size: 11px;
    color: var(--ftr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.ftr-emergency__body a {
    font-size: 15px;
    font-weight: 700;
    color: var(--ftr-gold);
    transition: color var(--ftr-duration) var(--ftr-ease);
}

.ftr-emergency__body a:hover {
    color: var(--ftr-gold-light);
}

/* ---------- Footer Bottom ---------- */
.ftr-bottom {
    position: relative;
    z-index: 2;
    padding: 22px 0;
    background: var(--ftr-primary-darker);
    border-top: 1px solid var(--ftr-border);
}

.ftr-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ftr-bottom__left p,
.ftr-bottom__right p {
    font-size: 13px;
    color: var(--ftr-text-muted);
    margin: 0;
    line-height: 1.5;
}

.ftr-bottom__left a {
    color: var(--ftr-gold);
    font-weight: 600;
    transition: color var(--ftr-duration) var(--ftr-ease);
}

.ftr-bottom__left a:hover {
    color: var(--ftr-gold-light);
}

.ftr-bottom__right span {
    color: var(--ftr-text-muted);
}

.ftr-bottom__brand {
    position: relative;
    display: inline-block;
    color: var(--ftr-gold);
    font-weight: 700;
    padding-left: 6px;
    transition: all var(--ftr-duration) var(--ftr-ease);
}

.ftr-bottom__brand::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: var(--ftr-gold);
    transition: width var(--ftr-duration) var(--ftr-ease);
}

.ftr-bottom__right a:hover .ftr-bottom__brand {
    color: var(--ftr-gold-light);
    letter-spacing: 0.5px;
}

.ftr-bottom__right a:hover .ftr-bottom__brand::before {
    width: 100%;
}

/* ---------- Scroll To Top ---------- */
.ftr-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ftr-gold) 0%, var(--ftr-gold-light) 100%);
    color: var(--ftr-primary-dark);
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--ftr-duration) var(--ftr-ease);
    z-index: 999;
}

.ftr-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ftr-scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.6);
}

.ftr-scroll-top i {
    transition: transform var(--ftr-duration) var(--ftr-ease);
}

.ftr-scroll-top:hover i {
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199px) {
    .ftr-grid {
        gap: 50px;
    }

    .ftr-links-wrap {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .ftr-main {
        padding: 60px 0 40px;
    }

    .ftr-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ftr-brand__desc {
        max-width: 100%;
    }

    .ftr-links-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ftr-main {
        padding: 50px 0 30px;
    }

    .ftr-links-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ftr-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .ftr-bottom__inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .ftr-scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .ftr-brand__contact li {
        font-size: 13px;
    }

    .ftr-brand__contact-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .ftr-emergency {
        padding: 12px;
    }

    .ftr-emergency__icon {
        width: 36px;
        height: 36px;
    }

    .ftr-emergency__body a {
        font-size: 14px;
    }
}



/* ==========================================
   STEPS & PROCEDURE — ELEGANT DESIGN
   Prefix: stp-
========================================== */

/* ---------- Reset ---------- */
.stp-wrap *,
.stp-wrap *::before,
.stp-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.stp-wrap ul, .stp-wrap ol { list-style: none; }
.stp-wrap a { text-decoration: none; color: inherit; }
.stp-wrap img { max-width: 100%; display: block; }

/* ---------- Design Tokens ---------- */
.stp-wrap {
    --stp-primary: #0f3d2e;
    --stp-primary-dark: #082820;
    --stp-primary-light: #1a5c47;
    --stp-gold: #c9a961;
    --stp-gold-light: #e0c584;
    --stp-cream: #faf7f0;
    --stp-white: #ffffff;
    --stp-text: #1a2b26;
    --stp-muted: #6b7a74;
    --stp-border: rgba(15, 61, 46, 0.1);
    --stp-shadow-sm: 0 4px 14px rgba(15, 61, 46, 0.08);
    --stp-shadow-md: 0 12px 30px rgba(15, 61, 46, 0.12);
    --stp-shadow-lg: 0 25px 60px rgba(15, 61, 46, 0.18);
    --stp-radius: 18px;
    --stp-radius-lg: 24px;
    --stp-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --stp-duration: 0.4s;
    --stp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --stp-serif: 'Playfair Display', Georgia, serif;

    position: relative;
    padding: 120px 0;
    background: var(--stp-cream);
    font-family: var(--stp-font);
    color: var(--stp-text);
    overflow: hidden;
    isolation: isolate;
}

.stp-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* ---------- Background Decor ---------- */
.stp-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.stp-bg-decor__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
}

.stp-bg-decor__orb--1 {
    width: 500px;
    height: 500px;
    background: var(--stp-gold);
    top: -150px;
    right: -150px;
}

.stp-bg-decor__orb--2 {
    width: 450px;
    height: 450px;
    background: var(--stp-primary-light);
    bottom: -100px;
    left: -100px;
}

.stp-bg-decor__pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 1px 1px, rgba(15, 61, 46, 0.06) 1px, transparent 0);
    background-size: 30px 30px;
    opacity: 0.4;
}

/* ---------- Section Header ---------- */
.stp-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.stp-header__tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.stp-header__tag-line {
    width: 40px;
    height: 1px;
    background: var(--stp-gold);
}

.stp-header__tag-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--stp-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.stp-header__title {
    font-family: var(--stp-serif);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--stp-primary-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.stp-header__title-accent {
    position: relative;
    display: inline-block;
    color: var(--stp-gold);
    font-style: italic;
}

.stp-header__title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: linear-gradient(90deg, var(--stp-gold), transparent);
    border-radius: 2px;
}

.stp-header__desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--stp-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Steps Grid ---------- */
.stp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-bottom: 70px;
}

/* ---------- Step Card ---------- */
.stp-card {
    position: relative;
    background: var(--stp-white);
    padding: 40px 28px 32px;
    border-radius: var(--stp-radius-lg);
    text-align: center;
    border: 1px solid var(--stp-border);
    transition: all var(--stp-duration) var(--stp-ease);
    overflow: visible;
    box-shadow: var(--stp-shadow-sm);
}

.stp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--stp-shadow-lg);
    border-color: var(--stp-gold);
}

/* Connector (line between cards) */
.stp-card__connector {
    position: absolute;
    top: 80px;
    right: -20px;
    width: 40px;
    height: 2px;
    z-index: 3;
    display: flex;
    align-items: center;
}

.stp-card:last-child .stp-card__connector {
    display: none;
}

.stp-card__connector-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--stp-gold), transparent);
    position: relative;
    overflow: hidden;
}

.stp-card__connector-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--stp-gold-light), transparent);
    animation: stpFlow 2.5s linear infinite;
}

@keyframes stpFlow {
    from { left: -100%; }
    to   { left: 100%; }
}

.stp-card__connector-dot {
    width: 10px;
    height: 10px;
    background: var(--stp-gold);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.2);
    animation: stpDotPulse 2s ease-in-out infinite;
}

@keyframes stpDotPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.2); }
    50%      { box-shadow: 0 0 0 8px rgba(201, 169, 97, 0); }
}

/* Step Number */
.stp-card__number {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--stp-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--stp-white);
    background: linear-gradient(135deg, var(--stp-primary) 0%, var(--stp-primary-light) 100%);
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 6px 16px rgba(15, 61, 46, 0.25);
    transition: all var(--stp-duration) var(--stp-ease);
}

.stp-card:hover .stp-card__number {
    background: linear-gradient(135deg, var(--stp-gold) 0%, var(--stp-gold-light) 100%);
    color: var(--stp-primary-dark);
    transform: translateX(-50%) scale(1.08);
}

/* Icon */
.stp-card__icon {
    width: 80px;
    height: 80px;
    margin: 10px auto 24px;
    background: linear-gradient(135deg,
    rgba(201, 169, 97, 0.12) 0%,
    rgba(201, 169, 97, 0.05) 100%);
    border: 2px solid rgba(201, 169, 97, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--stp-primary);
    transition: all var(--stp-duration) var(--stp-ease);
    position: relative;
}

.stp-card__icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px dashed rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    animation: stpRotate 15s linear infinite;
}

@keyframes stpRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.stp-card:hover .stp-card__icon {
    background: linear-gradient(135deg, var(--stp-gold) 0%, var(--stp-gold-light) 100%);
    border-color: var(--stp-gold);
    color: var(--stp-white);
    transform: scale(1.08) rotate(-8deg);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

/* Title */
.stp-card__title {
    font-family: var(--stp-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--stp-primary-dark);
    margin-bottom: 14px;
    line-height: 1.3;
    transition: color var(--stp-duration) var(--stp-ease);
}

.stp-card:hover .stp-card__title {
    color: var(--stp-gold);
}

/* Description */
.stp-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--stp-muted);
    margin-bottom: 20px;
}

/* Arrow Indicator */
.stp-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--stp-cream);
    color: var(--stp-primary);
    border-radius: 50%;
    font-size: 14px;
    transition: all var(--stp-duration) var(--stp-ease);
}

.stp-card:hover .stp-card__arrow {
    background: var(--stp-primary);
    color: var(--stp-gold);
    transform: translateX(4px);
}

/* ---------- Bottom CTA ---------- */
.stp-cta {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--stp-primary-dark) 0%, var(--stp-primary) 100%);
    border-radius: var(--stp-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--stp-shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stp-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.stp-cta__text {
    font-family: var(--stp-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--stp-white);
    margin: 0;
    position: relative;
    z-index: 1;
}

.stp-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--stp-gold) 0%, var(--stp-gold-light) 100%);
    color: var(--stp-primary-dark);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.3px;
    transition: all var(--stp-duration) var(--stp-ease);
    box-shadow: 0 8px 22px rgba(201, 169, 97, 0.35);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.stp-cta__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--stp-white);
    opacity: 0;
    transition: opacity var(--stp-duration) var(--stp-ease);
    border-radius: 50px;
}

.stp-cta__btn span,
.stp-cta__btn i {
    position: relative;
    z-index: 1;
}

.stp-cta__btn i {
    transition: transform var(--stp-duration) var(--stp-ease);
}

.stp-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 169, 97, 0.5);
}

.stp-cta__btn:hover::before {
    opacity: 0.15;
}

.stp-cta__btn:hover i {
    transform: translateX(4px);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199px) {
    .stp-grid {
        gap: 20px;
    }

    .stp-card {
        padding: 36px 22px 28px;
    }

    .stp-card__icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .stp-card__title {
        font-size: 18px;
    }

    .stp-card__connector {
        right: -15px;
        width: 30px;
    }
}

@media (max-width: 991px) {
    .stp-wrap {
        padding: 80px 0;
    }

    .stp-header {
        margin-bottom: 60px;
    }

    .stp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    /* Hide connectors on 2-column layout */
    .stp-card__connector {
        display: none;
    }

    .stp-card {
        padding: 40px 26px 32px;
    }

    .stp-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .stp-wrap {
        padding: 60px 0;
    }

    .stp-header__title {
        font-size: 30px;
    }

    .stp-header__desc {
        font-size: 15px;
    }

    .stp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stp-card {
        padding: 44px 24px 32px;
    }

    .stp-card__icon {
        width: 76px;
        height: 76px;
        font-size: 28px;
    }

    .stp-card__title {
        font-size: 19px;
    }

    .stp-cta {
        padding: 30px 20px;
    }

    .stp-cta__text {
        font-size: 18px;
    }

    .stp-cta__btn {
        width: 100%;
        justify-content: center;
    }
}




/* ==========================================
   STAY CONNECTED — PREMIUM DESIGN
   Prefix: cnt-
========================================== */

/* ---------- Reset ---------- */
.cnt-wrap *,
.cnt-wrap *::before,
.cnt-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.cnt-wrap ul, .cnt-wrap ol { list-style: none; }
.cnt-wrap a { text-decoration: none; color: inherit; }
.cnt-wrap img { max-width: 100%; display: block; }

/* ---------- Design Tokens ---------- */
.cnt-wrap {
    --cnt-primary: #0f3d2e;
    --cnt-primary-dark: #082820;
    --cnt-primary-light: #1a5c47;
    --cnt-gold: #c9a961;
    --cnt-gold-light: #e0c584;
    --cnt-cream: #faf7f0;
    --cnt-white: #ffffff;
    --cnt-text: #1a2b26;
    --cnt-muted: #6b7a74;
    --cnt-border: rgba(15, 61, 46, 0.1);
    --cnt-shadow-sm: 0 4px 14px rgba(15, 61, 46, 0.08);
    --cnt-shadow-md: 0 12px 30px rgba(15, 61, 46, 0.12);
    --cnt-shadow-lg: 0 25px 60px rgba(15, 61, 46, 0.18);
    --cnt-radius: 16px;
    --cnt-radius-lg: 22px;
    --cnt-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --cnt-duration: 0.4s;
    --cnt-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --cnt-serif: 'Playfair Display', Georgia, serif;

    /* Social Colors */
    --cnt-facebook: #1877f2;
    --cnt-instagram: #e4405f;
    --cnt-twitter: #1da1f2;
    --cnt-youtube: #ff0000;
    --cnt-linkedin: #0a66c2;
    --cnt-whatsapp: #25d366;

    position: relative;
    padding: 120px 0;
    background: var(--cnt-white);
    font-family: var(--cnt-font);
    color: var(--cnt-text);
    overflow: hidden;
    isolation: isolate;
}

.cnt-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* ---------- Background Decor ---------- */
.cnt-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cnt-bg-decor__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.cnt-bg-decor__orb--1 {
    width: 500px;
    height: 500px;
    background: var(--cnt-gold);
    top: -150px;
    left: -150px;
}

.cnt-bg-decor__orb--2 {
    width: 450px;
    height: 450px;
    background: var(--cnt-primary-light);
    bottom: -100px;
    right: -100px;
}

.cnt-bg-decor__pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 1px 1px, rgba(15, 61, 46, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.5;
}

/* ---------- Main Grid ---------- */
.cnt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ---------- Left: Actions ---------- */
.cnt-actions {
    position: relative;
}

/* Tag */
.cnt-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.cnt-tag__line {
    width: 36px;
    height: 2px;
    background: var(--cnt-gold);
}

.cnt-tag__text {
    font-size: 13px;
    font-weight: 600;
    color: var(--cnt-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Title */
.cnt-title {
    font-family: var(--cnt-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cnt-primary-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cnt-title__accent {
    color: var(--cnt-gold);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.cnt-title__accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: linear-gradient(90deg, var(--cnt-gold), transparent);
    border-radius: 2px;
}

/* Description */
.cnt-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--cnt-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

/* ---------- Action Buttons ---------- */
.cnt-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cnt-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--cnt-white);
    border: 2px solid var(--cnt-border);
    border-radius: var(--cnt-radius);
    transition: all var(--cnt-duration) var(--cnt-ease);
    position: relative;
    overflow: hidden;
}

.cnt-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    transition: width var(--cnt-duration) var(--cnt-ease);
    z-index: 0;
}

.cnt-btn:hover {
    transform: translateX(6px);
    box-shadow: var(--cnt-shadow-md);
}

.cnt-btn:hover::before {
    width: 100%;
}

.cnt-btn__icon,
.cnt-btn__body,
.cnt-btn__arrow {
    position: relative;
    z-index: 1;
}

/* Icon */
.cnt-btn__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all var(--cnt-duration) var(--cnt-ease);
}

/* Body */
.cnt-btn__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cnt-btn__label {
    font-size: 12px;
    color: var(--cnt-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color var(--cnt-duration) var(--cnt-ease);
}

.cnt-btn__text {
    font-size: 17px;
    font-weight: 700;
    color: var(--cnt-primary-dark);
    transition: color var(--cnt-duration) var(--cnt-ease);
}

/* Arrow */
.cnt-btn__arrow {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--cnt-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--cnt-primary);
    transition: all var(--cnt-duration) var(--cnt-ease);
}

/* Login Button */
.cnt-btn--login::before {
    background: linear-gradient(90deg,
    rgba(15, 61, 46, 0.05) 0%,
    rgba(15, 61, 46, 0.02) 100%);
}

.cnt-btn--login .cnt-btn__icon {
    background: linear-gradient(135deg, var(--cnt-primary) 0%, var(--cnt-primary-light) 100%);
    color: var(--cnt-gold);
}

.cnt-btn--login:hover {
    border-color: var(--cnt-primary);
}

.cnt-btn--login:hover .cnt-btn__icon {
    background: var(--cnt-gold);
    color: var(--cnt-primary-dark);
    transform: rotate(-8deg) scale(1.05);
}

.cnt-btn--login:hover .cnt-btn__text {
    color: var(--cnt-primary);
}

.cnt-btn--login:hover .cnt-btn__arrow {
    background: var(--cnt-primary);
    color: var(--cnt-gold);
    transform: translateX(4px);
}

/* Register Button */
.cnt-btn--register::before {
    background: linear-gradient(90deg,
    rgba(201, 169, 97, 0.08) 0%,
    rgba(201, 169, 97, 0.03) 100%);
}

.cnt-btn--register .cnt-btn__icon {
    background: linear-gradient(135deg, var(--cnt-gold) 0%, var(--cnt-gold-light) 100%);
    color: var(--cnt-primary-dark);
}

.cnt-btn--register:hover {
    border-color: var(--cnt-gold);
}

.cnt-btn--register:hover .cnt-btn__icon {
    background: var(--cnt-primary);
    color: var(--cnt-gold);
    transform: rotate(-8deg) scale(1.05);
}

.cnt-btn--register:hover .cnt-btn__text {
    color: var(--cnt-gold);
}

.cnt-btn--register:hover .cnt-btn__arrow {
    background: var(--cnt-gold);
    color: var(--cnt-primary-dark);
    transform: translateX(4px);
}

/* WhatsApp Button */
.cnt-btn--whatsapp::before {
    background: linear-gradient(90deg,
    rgba(37, 211, 102, 0.08) 0%,
    rgba(37, 211, 102, 0.03) 100%);
}

.cnt-btn--whatsapp .cnt-btn__icon {
    background: var(--cnt-whatsapp);
    color: var(--cnt-white);
    animation: cntPulse 2s ease-in-out infinite;
}

@keyframes cntPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50%      { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.cnt-btn--whatsapp:hover {
    border-color: var(--cnt-whatsapp);
}

.cnt-btn--whatsapp:hover .cnt-btn__icon {
    background: var(--cnt-primary-dark);
    color: var(--cnt-whatsapp);
    transform: scale(1.1);
    animation: none;
}

.cnt-btn--whatsapp:hover .cnt-btn__text {
    color: var(--cnt-whatsapp);
}

.cnt-btn--whatsapp:hover .cnt-btn__arrow {
    background: var(--cnt-whatsapp);
    color: var(--cnt-white);
    transform: translateX(4px);
}

/* ---------- Right: Social Media ---------- */
.cnt-social__card {
    background: linear-gradient(135deg, var(--cnt-primary-dark) 0%, var(--cnt-primary) 100%);
    border-radius: var(--cnt-radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--cnt-shadow-lg);
}

.cnt-social__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cnt-social__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

/* Header */
.cnt-social__header {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cnt-social__title {
    font-family: var(--cnt-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--cnt-white);
    margin-bottom: 10px;
}

.cnt-social__desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Social Grid */
.cnt-social__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.cnt-social__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--cnt-radius);
    transition: all var(--cnt-duration) var(--cnt-ease);
}

.cnt-social__item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(6px);
}

/* Item Icon */
.cnt-social__item-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--cnt-white);
    transition: all var(--cnt-duration) var(--cnt-ease);
}

/* Item Body */
.cnt-social__item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cnt-social__item-body strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--cnt-white);
    transition: color var(--cnt-duration) var(--cnt-ease);
}

.cnt-social__item-body span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Item Arrow */
.cnt-social__item-arrow {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--cnt-white);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--cnt-duration) var(--cnt-ease);
}

.cnt-social__item:hover .cnt-social__item-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Social Colors */
.cnt-social__item--facebook:hover {
    border-color: var(--cnt-facebook);
}

.cnt-social__item--facebook .cnt-social__item-icon {
    background: var(--cnt-facebook);
}

.cnt-social__item--facebook:hover .cnt-social__item-body strong {
    color: var(--cnt-facebook);
}

.cnt-social__item--instagram:hover {
    border-color: var(--cnt-instagram);
}

.cnt-social__item--instagram .cnt-social__item-icon {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.cnt-social__item--instagram:hover .cnt-social__item-body strong {
    color: var(--cnt-instagram);
}

.cnt-social__item--twitter:hover {
    border-color: var(--cnt-twitter);
}

.cnt-social__item--twitter .cnt-social__item-icon {
    background: var(--cnt-twitter);
}

.cnt-social__item--twitter:hover .cnt-social__item-body strong {
    color: var(--cnt-twitter);
}

.cnt-social__item--youtube:hover {
    border-color: var(--cnt-youtube);
}

.cnt-social__item--youtube .cnt-social__item-icon {
    background: var(--cnt-youtube);
}

.cnt-social__item--youtube:hover .cnt-social__item-body strong {
    color: var(--cnt-youtube);
}

.cnt-social__item--linkedin:hover {
    border-color: var(--cnt-linkedin);
}

.cnt-social__item--linkedin .cnt-social__item-icon {
    background: var(--cnt-linkedin);
}

.cnt-social__item--linkedin:hover .cnt-social__item-body strong {
    color: var(--cnt-linkedin);
}

/* Footer */
.cnt-social__footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(201, 169, 97, 0.12);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: var(--cnt-radius);
}

.cnt-social__footer i {
    color: var(--cnt-gold);
    font-size: 16px;
    animation: cntBellRing 3s ease-in-out infinite;
}

@keyframes cntBellRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50%      { transform: rotate(0deg); }
}

.cnt-social__footer span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199px) {
    .cnt-grid {
        gap: 40px;
    }

    .cnt-social__card {
        padding: 32px;
    }
}

@media (max-width: 991px) {
    .cnt-wrap {
        padding: 80px 0;
    }

    .cnt-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cnt-desc {
        max-width: 100%;
    }

    .cnt-buttons {
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    .cnt-wrap {
        padding: 60px 0;
    }

    .cnt-title {
        font-size: 30px;
    }

    .cnt-desc {
        font-size: 15px;
    }

    .cnt-btn {
        padding: 16px 18px;
        gap: 14px;
    }

    .cnt-btn__icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .cnt-btn__text {
        font-size: 15px;
    }

    .cnt-btn__arrow {
        width: 36px;
        height: 36px;
    }

    .cnt-social__card {
        padding: 28px 24px;
    }

    .cnt-social__title {
        font-size: 22px;
    }

    .cnt-social__item {
        padding: 12px 14px;
    }

    .cnt-social__item-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .cnt-social__item-body strong {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cnt-btn {
        padding: 14px 16px;
        gap: 12px;
    }

    .cnt-btn__icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .cnt-btn__label {
        font-size: 11px;
    }

    .cnt-btn__text {
        font-size: 14px;
    }

    .cnt-btn__arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .cnt-social__footer {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}


/* --- Footer Brand Logo Styling --- */
.ftr-brand__logo {
    display: inline-block;
    margin-bottom: 24px; /* Space between logo and description */
    max-width: 170px;    /* Adjust this value based on your actual logo size */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Ensure the image inside scales correctly */
.ftr-brand__logo img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 65px;    /* Optional: Prevents the logo from being too tall */
    object-fit: contain;
}

/* Subtle hover effect */
.ftr-brand__logo:hover {
    opacity: 0.85;
    transform: translateY(-3px); /* Slight lift effect */
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .ftr-brand__logo {
        max-width: 140px; /* Smaller size for mobile screens */
        margin-bottom: 20px;
    }

    .ftr-brand__logo img {
        max-height: 50px;
    }
}





/* ==========================================
   OUR PROCESS & PROCEDURE — 3D FLIP DESIGN
   Prefix: proc-
========================================== */

/* ---------- Design Tokens ---------- */
.proc-wrap {
    --proc-primary: #0f3d2e;
    --proc-primary-dark: #082820;
    --proc-primary-light: #1a5c47;
    --proc-gold: #c9a961;
    --proc-gold-light: #e0c584;
    --proc-cream: #faf7f0;
    --proc-white: #ffffff;
    --proc-text: #1a2b26;
    --proc-muted: #6b7a74;
    --proc-border: rgba(15, 61, 46, 0.08);
    --proc-shadow: 0 20px 50px rgba(15, 61, 46, 0.12);
    --proc-radius: 24px;
    --proc-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --proc-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --proc-serif: 'Playfair Display', Georgia, serif;

    position: relative;
    padding: 120px 0;
    background: var(--proc-cream);
    font-family: var(--proc-font);
    color: var(--proc-text);
    overflow: hidden;
    isolation: isolate;
}

.proc-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ---------- Background Decor ---------- */
.proc-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(15, 61, 46, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

/* ---------- Section Header ---------- */
.proc-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.proc-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 8px 18px;
    background: var(--proc-white);
    border-radius: 50px;
    border: 1px solid var(--proc-border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.proc-tag__dot {
    width: 8px;
    height: 8px;
    background: var(--proc-gold);
    border-radius: 50%;
    animation: procPulse 2s infinite;
}

@keyframes procPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.proc-tag__text {
    font-size: 12px;
    font-weight: 700;
    color: var(--proc-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.proc-title {
    font-family: var(--proc-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--proc-primary-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.proc-title__accent {
    color: var(--proc-gold);
    font-style: italic;
}

.proc-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--proc-muted);
}

/* ---------- 3D Grid & Timeline ---------- */
.proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Connecting Timeline Line */
.proc-grid::before {
    content: '';
    position: absolute;
    top: 110px; /* Aligns with the center of the icons */
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--proc-gold), var(--proc-gold), transparent);
    opacity: 0.3;
    z-index: 0;
}

/* ---------- 3D Flip Card Mechanics ---------- */
.proc-card {
    perspective: 1500px;
    height: 420px;
    position: relative;
    z-index: 1;
}

.proc-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s var(--proc-ease);
    transform-style: preserve-3d;
    cursor: pointer;
}

/* The 3D Flip Trigger */
.proc-card:hover .proc-card__inner {
    transform: rotateY(180deg);
}

.proc-card__front,
.proc-card__back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--proc-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    box-shadow: var(--proc-shadow);
}

/* ---------- Front Face (Light) ---------- */
.proc-card__front {
    background: var(--proc-white);
    border: 1px solid var(--proc-border);
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.proc-card__step {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--proc-serif);
    font-size: 64px;
    font-weight: 700;
    color: var(--proc-primary);
    opacity: 0.05;
    line-height: 1;
}

.proc-card__icon-wrap {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}

/* 3D Isometric Diamond Icon */
.proc-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--proc-gold) 0%, var(--proc-gold-light) 100%);
    border-radius: 18px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
            0 15px 30px rgba(201, 169, 97, 0.3),
            inset 0 -5px 15px rgba(0, 0, 0, 0.1),
            inset 0 5px 15px rgba(255, 255, 255, 0.3);
    transition: transform 0.5s var(--proc-ease);
}

.proc-card__icon i {
    transform: rotate(-45deg);
    font-size: 28px;
    color: var(--proc-white);
}

.proc-card:hover .proc-card__icon {
    transform: rotate(45deg) scale(1.1);
}

.proc-card__title {
    font-family: var(--proc-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--proc-primary-dark);
    margin-bottom: 12px;
}

.proc-card__hint {
    font-size: 12px;
    color: var(--proc-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.proc-card:hover .proc-card__hint {
    opacity: 0;
}

/* ---------- Back Face (Dark Premium) ---------- */
.proc-card__back {
    background: linear-gradient(160deg, var(--proc-primary-dark) 0%, var(--proc-primary) 100%);
    color: var(--proc-white);
    transform: rotateY(180deg);
    justify-content: center;
    padding: 40px 35px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

/* Decorative corner accent on back */
.proc-card__back::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--proc-gold);
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(20px);
}

.proc-card__back-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--proc-gold);
    font-size: 20px;
}

.proc-card__back-title {
    font-family: var(--proc-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--proc-gold);
    margin-bottom: 16px;
}

.proc-card__back-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.proc-card__back-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.proc-card__back-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.proc-card__back-list li i {
    color: var(--proc-gold);
    font-size: 12px;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
    .proc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .proc-grid::before {
        display: none; /* Hide timeline on smaller screens */
    }
}

@media (max-width: 640px) {
    .proc-wrap {
        padding: 80px 0;
    }
    .proc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .proc-card {
        height: 380px;
    }
    .proc-header {
        margin-bottom: 50px;
    }
}


@media (max-width: 768px) {
    .hro-bg__img {
        width: 100vw; /* Full viewport width */
        margin-left: calc(-50vw + 50%); /* Center it */
        object-fit: cover;
    }
}