/* ============================================================
   TRAVEL WITH SAADI — CINEMATIC ENHANCEMENTS (shared)
   ============================================================ */

/* ── Root cinema tokens ── */
:root {
    --cinema-green: #86B817;
    --cinema-orange: #FE8800;
    --cinema-dark: #0c1409;
    --cinema-card: #ffffff;
    --cinema-radius: 18px;
    --cinema-ease: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Page-transition overlay ── */
#page-transition {
    position: fixed;
    inset: 0;
    z-index: 999999;
    pointer-events: none;
    background: linear-gradient(135deg, #86B817 0%, #4a8c14 50%, #FE8800 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

#page-transition.out {
    transform-origin: top;
    transform: scaleY(1);
}

#page-transition.in {
    transform: scaleY(1);
    transform-origin: bottom;
}

#page-transition.done {
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1) 0.05s;
}

/* ── Scroll-progress bar ── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #86B817, #FE8800, #86B817);
    background-size: 200% auto;
    z-index: 99999;
    width: 0%;
    animation: spShimmer 2s linear infinite;
    box-shadow: 0 0 8px rgba(134, 184, 23, 0.6);
}

@keyframes spShimmer {
    to {
        background-position: 200% center;
    }
}

/* ── Cursor glow (desktop hover) ── */
.cursor-glow {
    position: fixed;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(134, 184, 23, 0.45) 0%, transparent 70%);
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear;
    display: none;
}

@media (hover: hover) {
    .cursor-glow {
        display: block;
    }
}

/* ── Branded navbar logo ── */
.brand-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-circle-wrap {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logo-circle-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(#86B817, #FE8800, #86B817);
    animation: logoRingRotate 4s linear infinite;
    z-index: 0;
}

.logo-circle-wrap::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: white;
    z-index: 1;
}

.logo-img {
    position: absolute;
    inset: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    transition: transform 0.4s ease;
}

.brand-logo-link:hover .logo-img {
    transform: rotate(12deg) scale(1.1);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-travel {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #86B817;
    letter-spacing: -0.5px;
}

.logo-saadi {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    color: #FE8800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-top: 1px;
}

@keyframes logoRingRotate {
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 992px) {
    .logo-circle-wrap {
        width: 56px;
        height: 56px;
    }

    .logo-travel {
        font-size: 1.5rem;
    }

    .logo-saadi {
        font-size: 0.78rem;
    }
}

@media (max-width: 575px) {
    .logo-circle-wrap {
        width: 42px;
        height: 42px;
    }

    .logo-travel {
        font-size: 1.15rem;
    }

    .logo-saadi {
        font-size: 0.62rem;
        letter-spacing: 2.5px;
    }
}

/* ── Cinematic hero ── */
.hero-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(8, 12, 22, 0.82), rgba(8, 12, 22, 0.78)),
        url('../img/Spring-Tour-Hunza-Skardu-Valley.jpg') center/cover no-repeat !important;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-header {
        min-height: 70vh;
    }
}

@media (min-width: 992px) {
    .hero-header {
        min-height: 78vh;
    }
}

.hero-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 55% 45%, rgba(134, 184, 23, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero-header .row,
.hero-header .container {
    position: relative;
    z-index: 2;
}

.hero-header h1 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #d4f07a 50%, #FE8800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroShift 6s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes heroShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-badge {
    display: inline-block;
    padding: 5px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.08);
}

.hero-p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

@media (min-width: 768px) {
    .hero-p {
        font-size: 1.25rem;
    }
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    animation: floatParticle linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatParticle {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ── Navbar scrolled glass ── */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1) !important;
}

/* ── Section reveal animation ── */
.reveal-up {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Stats section ── */
.stats-section {
    background: linear-gradient(135deg, #2c5f0a 0%, #4a8c14 40%, #86B817 70%, #FE8800 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    display: block;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.stat-item:hover .stat-icon {
    transform: scale(1.25) rotate(10deg);
}

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 575px) {
    .stat-number {
        font-size: 2.2rem;
    }
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 575px) {
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

/* ── Destination cinema cards ── */
.dest-img-frame {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--cinema-dark);
    overflow: hidden;
}

.dest-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s var(--cinema-ease), filter 0.55s ease;
}

.dest-cine-card {
    position: relative;
    border-radius: var(--cinema-radius);
    overflow: hidden;
    background: var(--cinema-card);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.4s ease, transform 0.4s var(--cinema-ease);
    will-change: transform;
}

.dest-cine-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(134, 184, 23, 0.25);
}

.dest-cine-card:hover .dest-full-img {
    filter: brightness(0.88) saturate(1.15);
    transform: scale(1.07);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 40%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.9rem 1rem;
    transition: background 0.4s ease;
}

.dest-cine-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.dest-overlay h5 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

@media (min-width: 576px) {
    .dest-overlay h5 {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .dest-overlay h5 {
        font-size: 1.2rem;
    }
}

.dest-meta {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
}

.dest-meta span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 2px 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@media (min-width: 576px) {
    .dest-meta span {
        font-size: 0.75rem;
    }
}

.dest-explore-btn {
    display: inline-block;
    margin-top: 0.45rem;
    padding: 4px 14px;
    background: var(--cinema-green);
    color: #fff;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s, background 0.2s ease;
    width: fit-content;
}

.dest-cine-card:hover .dest-explore-btn {
    opacity: 1;
    transform: translateY(0);
}

.dest-explore-btn:hover {
    background: var(--cinema-orange);
    color: #fff;
}

/* ── Service cinematic cards ── */
.svc-cine-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(134, 184, 23, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.055);
    transition: transform 0.4s var(--cinema-ease), box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.svc-cine-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #86B817, #FE8800);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.svc-cine-card:hover::before {
    transform: scaleX(1);
}

.svc-cine-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 24px 55px rgba(134, 184, 23, 0.2);
    border-color: rgba(134, 184, 23, 0.25);
}

.svc-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(134, 184, 23, 0.1), rgba(254, 136, 0, 0.08));
    transition: transform 0.4s var(--cinema-ease), background 0.3s ease;
}

.svc-cine-card:hover .svc-icon-wrap {
    transform: scale(1.15) rotate(-6deg);
    background: linear-gradient(135deg, rgba(134, 184, 23, 0.2), rgba(254, 136, 0, 0.15));
}

.svc-icon-wrap i {
    font-size: 2rem;
    color: #86B817;
    transition: color 0.3s ease;
}

.svc-cine-card:hover .svc-icon-wrap i {
    color: #FE8800;
}

.svc-cine-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #1a2a0a;
    margin-bottom: 0.5rem;
}

.svc-cine-card p {
    font-size: 0.88rem;
    color: #6b7b6e;
    margin: 0;
}

/* ── About image 3D ── */
.about-img-3d {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
}

.about-img-3d:hover {
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-6px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2) !important;
}

.about-img-3d img {
    transition: transform 0.6s ease;
}

.about-img-3d:hover img {
    transform: scale(1.04);
}

/* ── About image fix: cover + smart position ── */
.about-img-frame {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.18);
}

.about-img-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-frame:hover img {
    transform: scale(1.04);
}

@media (max-width: 767px) {
    .about-img-frame img {
        height: 280px;
    }
}

/* ── About section label ── */
.about-label {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(134, 184, 23, 0.1);
    border: 1px solid rgba(134, 184, 23, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #86B817;
    margin-bottom: 1rem;
}

/* ── Feature list hover ── */
.feature-item {
    transition: transform 0.25s ease, color 0.25s ease;
    padding: 3px 0;
    border-radius: 6px;
    cursor: default;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-item:hover i {
    transform: rotate(90deg) scale(1.2);
    color: #FE8800 !important;
}

.feature-item i {
    transition: transform 0.3s ease, color 0.3s ease;
}

/* ── Contact icon float ── */
.contact-icon-wrap {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.contact-icon-wrap:hover {
    transform: scale(1.18) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(134, 184, 23, 0.4) !important;
}

/* ── Contact form cinematic ── */
.contact-form-cine {
    background: linear-gradient(145deg, #fff 60%, #f4fce8 100%);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(134, 184, 23, 0.12);
    border: 1px solid rgba(134, 184, 23, 0.12);
}

/* ── WhatsApp float button ── */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 18px;
    z-index: 9998;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.55);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: waPulse 2.5s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.75);
    animation: none;
}

.whatsapp-float i {
    color: white;
    font-size: 28px;
    line-height: 1;
}

.wa-tooltip {
    position: absolute;
    right: 68px;
    background: #25D366;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.83rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.55);
    }

    50% {
        box-shadow: 0 4px 35px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ── Button ripple ── */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

/* ── Wave dividers ── */
.wave-top,
.wave-bottom {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg,
.wave-bottom svg {
    display: block;
}

/* ── Trip category headings ── */
.trip-category-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(134, 184, 23, 0.15);
}

.trip-cat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #86B817, #5a8a0a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(134, 184, 23, 0.35);
}

.trip-category-head h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
    color: #1a2a0a;
}

/* ── Section title with animated underline ── */
.section-title-animated {
    position: relative;
    display: inline-block;
}

.section-title-animated::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #86B817, #FE8800);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.text-center .section-title-animated::after {
    transform-origin: center;
}

.section-title-animated.animated::after {
    transform: scaleX(1);
}

/* ── BEAUTIFIED FOOTER ── */
.footer-beautiful {
    background: linear-gradient(160deg, #0d1a04 0%, #14141F 60%, #0d1a04 100%);
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    overflow: hidden;
}

.footer-beautiful::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(134, 184, 23, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(254, 136, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.footer-logo-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.footer-logo-brand span {
    color: #86B817;
}

.footer-tagline {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-beautiful h5 {
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-beautiful h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #86B817, #FE8800);
}

.footer-beautiful .footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    text-decoration: none;
    padding: 3px 0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-beautiful .footer-link i {
    font-size: 0.65rem;
    color: #86B817;
    transition: transform 0.25s ease;
}

.footer-beautiful .footer-link:hover {
    color: #86B817;
    transform: translateX(5px);
}

.footer-beautiful .footer-link:hover i {
    transform: translateX(3px);
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.9rem;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(134, 184, 23, 0.12);
    border: 1px solid rgba(134, 184, 23, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #86B817;
    transition: background 0.25s ease;
}

.footer-contact-row:hover .footer-contact-icon {
    background: rgba(134, 184, 23, 0.25);
}

.footer-contact-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.footer-social-btn:hover {
    background: #86B817;
    border-color: #86B817;
    color: #fff;
    transform: translateY(-4px);
}

.footer-social-btn.insta:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.footer-social-btn.wa:hover {
    background: #25D366;
    border-color: #25D366;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 1.5rem 0 1rem;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    padding-bottom: 1rem;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-copyright a:hover {
    color: #86B817;
}

.designed-by {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.designed-by a {
    color: #86B817;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}

.designed-by a:hover {
    color: #FE8800;
}

/* ── Page navigation links in footer bottom ── */
.footer-bottom-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.25s ease;
}

.footer-bottom-nav a:hover {
    color: #86B817;
}

/* ── Newsletter input ── */
.newsletter-wrap {
    position: relative;
}

.newsletter-wrap input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: white !important;
    border-radius: 50rem;
    padding: 0.65rem 1.25rem;
    font-family: 'Heebo', sans-serif;
}

.newsletter-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-wrap input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(134, 184, 23, 0.5) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(134, 184, 23, 0.15) !important;
}