/* =========================================================================
   Tuntu Elementor Widgets — shared stylesheet
   Loaded once (tuntu-widgets handle) for all 10 widgets. Organised in the
   same order as the widget classes in inc/elementor/widgets/.
   ========================================================================= */

/* ---- Section header (eyebrow + title + subtitle), used by several widgets */
.tuntu-section-head { margin-bottom: 40px; }
.tuntu-section-head--center { text-align: center; }
.tuntu-section-head--center .tuntu-eyebrow { justify-content: center; }
.tuntu-section-head--center .tuntu-eyebrow::before { display: none; }
.tuntu-section-title { font-size: clamp(28px, 3.4vw, 44px); }
.tuntu-section-subtitle { margin-top: 14px; color: var(--tuntu-ink-600); max-width: 560px; }
.tuntu-section-head--center .tuntu-section-subtitle { margin-inline: auto; }

.tuntu-carousel-arrow {
	width: 44px; height: 44px; border-radius: 50%;
	border: 1px solid rgba(28,31,22,0.18);
	background: transparent; color: var(--tuntu-ink-900);
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer; transition: background-color .3s var(--tuntu-ease), color .3s var(--tuntu-ease), border-color .3s var(--tuntu-ease);
}
.tuntu-carousel-arrow svg { width: 18px; height: 18px; }
.tuntu-carousel-arrow:hover { background: var(--tuntu-gold-500); border-color: var(--tuntu-gold-500); color: var(--tuntu-green-900); }

/* =========================================================================
   1. HERO
   ========================================================================= */
.tuntu-hero { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; color: #fff; }
.tuntu-hero__media { position: absolute; inset: 0; z-index: 0; }
.tuntu-hero__image, .tuntu-hero__video { width: 100%; height: 100% !important; object-fit: cover; }
.tuntu-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,34,15,0.55) 0%, rgba(22,34,15,0.75) 100%); opacity: 0.45; }
.tuntu-hero__content { position: relative; z-index: 1; padding-block: 40px; padding-inline: clamp(20px, 5vw, 48px); }
.tuntu-hero__title { font-size: clamp(38px, 6vw, 76px); display: flex; flex-direction: column; }
.tuntu-hero__line { color: #fff; }
.tuntu-hero__accent { color: var(--tuntu-gold-400); font-style: italic; font-weight: 500; }
.tuntu-hero__subtitle { max-width: 520px; margin-top: 22px; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.88); }
.tuntu-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.tuntu-hero__content-outer { width: 100%; max-width: var(--container-max-width, 1340px); margin: auto; }
/* =========================================================================
   2. TRUST BADGES
   ========================================================================= */
.tuntu-badges {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
	padding-block: 34px; margin-top: -1px; position: relative; z-index: 2;
}
.tuntu-badge { display: flex; align-items: center; gap: 14px; }
.tuntu-badge__icon { flex: none; width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; }
.tuntu-badge__text { display: flex; flex-direction: column; }
.tuntu-badge__title { font-size: 15px; }
.tuntu-badge__subtitle { font-size: 13px; color: var(--tuntu-ink-600); }
@media (max-width: 900px) { .tuntu-badges { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================================
3. TRAVELLER TYPE SELECTOR
========================================================================= */
.tuntu-personas { padding-block: var(--tuntu-section-pad); }
.tuntu-personas__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 44px;
}
.tuntu-persona {
    display: flex; flex-direction: column; text-decoration: none; color: var(--tuntu-ink-900);
    border-radius: var(--tuntu-radius-lg); overflow: hidden;
    background: var(--tuntu-paper); 
    box-shadow: 0 10px 30px rgba(22,34,15,0.08);
    transition: transform .4s var(--tuntu-ease), box-shadow .4s var(--tuntu-ease);
}
.tuntu-persona:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(22,34,15,0.15); }

.tuntu-persona__media {
    position: relative;
}
.tuntu-persona__media img {
    width: 100%; height: 250px !important; object-fit: cover; display: block;
    transition: transform .6s var(--tuntu-ease);
}
.tuntu-persona:hover .tuntu-persona__media img { transform: scale(1.05); }

/* Icon has its own background/border and sits between the image and text */
.tuntu-persona__icon {
    position: absolute; bottom: 20px; left: 50%; transform: translate(-50%, 50%);
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--tuntu-gold-500); border: 4px solid var(--tuntu-paper);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--tuntu-green-900); z-index: 2;
    box-shadow: 0 8px 20px rgba(22,34,15,0.15);
    transition: background-color .3s var(--tuntu-ease), color .3s var(--tuntu-ease), transform .3s var(--tuntu-ease);
}
.tuntu-persona:hover .tuntu-persona__icon {
    background: var(--tuntu-green-900); color: var(--tuntu-gold-400);
    transform: translate(-50%, 50%) scale(1.1);
}
.tuntu-persona__icon svg { width: 26px; height: 26px; }

/* Name is on its own background */
.tuntu-persona__content {
    background: var(--tuntu-cream-100); 
    padding: 48px 20px 28px; /* Top padding accounts for the overlapping icon */
    text-align: center;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    z-index: 1;
    height: 100%;
}
.tuntu-persona__label {
    font-family: var(--tuntu-font-display); font-weight: 600; font-size: 18px;
    color: var(--tuntu-green-900);
}

@media (max-width: 1000px) { .tuntu-personas__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { 
    .tuntu-personas__grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; } 
}

.tuntu-destinations { background: var(--tuntu-olive-100); padding-block: var(--tuntu-section-pad); }
.tuntu-destinations__inner { display: flex; align-items: center; gap: 60px; }
.tuntu-destinations__text { flex: 0 0 25%; max-width: 400px; }
.tuntu-destinations__intro { margin: 16px 0 26px; color: var(--tuntu-ink-600); }
.tuntu-destinations__slider { flex: 1; position: relative; min-width: 0; }

.tuntu-swiper { overflow: hidden; }
.tuntu-swiper .swiper-wrapper { display: flex; }
.tuntu-swiper .swiper-slide { height: auto; flex-shrink: 0; }

.tuntu-destination-card {
    text-decoration: none; color: #fff; position: relative;
    border-radius: var(--tuntu-radius-lg); overflow: hidden;
    height: clamp(320px, 35vw, 460px) !important; display: block;
}
.tuntu-destination-card__media { position: absolute; inset: 0; }
.tuntu-destination-card__media img { width: 100%; height: 100% !important; object-fit: cover; transition: transform .6s var(--tuntu-ease); }
.tuntu-destination-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%); }
.tuntu-destination-card:hover .tuntu-destination-card__media img { transform: scale(1.08); }
.tuntu-destination-card__label {
    position: absolute; left: 24px; bottom: 24px; z-index: 1;
    font-family: var(--tuntu-font-display); font-size: 22px;
}
.tuntu-destinations__nav { display: flex; gap: 12px; margin-top: 24px; justify-content: flex-end; }

@media (max-width: 900px) {
    .tuntu-destinations__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
    .tuntu-destinations__text { flex: none; max-width: 100%; }
    .tuntu-destinations__slider { width: 100%; }
}

/* =========================================================================
   5. SPLIT PROMO
   ========================================================================= */

/* Standard Promo */
.tuntu-promo-standard {
    position: relative;
    display: flex;
    overflow: hidden;
}
.tuntu-promo-standard__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}
.tuntu-promo-standard__overlay {
    position: absolute;
    inset: 0;
}
.tuntu-promo-standard__content {
    position: relative;
    z-index: 1;
}

/* Diagonal Promo */
.tuntu-promo-diagonal {
    position: relative;
    overflow: hidden;
}
.tuntu-promo-diagonal__img {
    position: absolute;
    inset: 0;
}
.tuntu-promo-diagonal__img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
	max-width: 30vw;
    float: right;
}
.tuntu-promo-diagonal__left {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    display: flex;
    box-sizing: border-box;
}
.tuntu-promo-diagonal__left-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 0;
}
.tuntu-promo-diagonal__left-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.elementor-widget-tuntu-split-promo .tuntu-eyebrow::before {
    display: none;
}

/* Button Icon base (to show background circle) */
.tuntu-promo-btn .tuntu-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #C5A55A; /* fallback – overridden by Elementor */
    color: #1A2E1F;
    width: 36px;
    height: 36px;
}

@media( max-width: 560px ){
	.tuntu-promo-diagonal__left {
    	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
	}
}

/* =========================================================================
   6. BLOG GRID
   ========================================================================= */
.tuntu-blog { padding-block: var(--tuntu-section-pad); }
.tuntu-blog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 44px; }
.tuntu-blog-card { text-decoration: none; color: var(--tuntu-ink-900); display: flex; flex-direction: column; }
.tuntu-blog-card__media { position: relative; display: block; border-radius: var(--tuntu-radius-md); overflow: hidden; margin-bottom: 16px; }
.tuntu-blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--tuntu-ease); }
.tuntu-blog-card:hover .tuntu-blog-card__media img { transform: scale(1.08); }
.tuntu-blog-card__tag { position: absolute; top: 14px; left: 14px; background: var(--tuntu-gold-500); color: var(--tuntu-green-900); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.tuntu-blog-card__meta { font-size: 12.5px; color: var(--tuntu-ink-600); margin-bottom: 8px; }
.tuntu-blog-card__title { font-family: var(--tuntu-font-display); font-size: 18px; line-height: 1.3; margin-bottom: 10px; }
.tuntu-blog-card__readmore { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--tuntu-gold-500); margin-top: auto; }
.tuntu-blog-card__readmore svg { width: 13px; height: 13px; transition: transform .3s var(--tuntu-ease); }
.tuntu-blog-card:hover .tuntu-blog-card__readmore svg { transform: translateX(4px); }
@media (max-width: 1000px) { .tuntu-blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tuntu-blog__grid { grid-template-columns: 1fr; } }
.tuntu-blog .tuntu-blog__nav {
    max-width: 350px;
    margin: auto;
    margin-top: 30px;
}

/* =========================================================================
   7. INLINE CTA BAR
   ========================================================================= */
.tuntu-inline-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--tuntu-cream-100);
    border-radius: var(--tuntu-radius-lg);
    padding: 26px 34px;
    margin-block: var(--tuntu-section-pad);
    margin: 0;
}
.tuntu-inline-cta__text {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}
.tuntu-inline-cta__icon {
    flex: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--tuntu-gold-100);
    color: var(--tuntu-gold-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.tuntu-inline-cta__title {
    display: block;
    font-size: 16px;
}
.tuntu-inline-cta__subtitle {
    display: block;
    font-size: 13.5px;
    color: var(--tuntu-ink-600);
    margin-top: 2px;
}
/* Button icon base */
.tuntu-inline-cta-btn .tuntu-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #C5A55A;
    color: #1A2E1F;
    width: 36px; height: 36px;
}
@media (max-width: 767px) { 
    .tuntu-inline-cta { flex-direction: column; }
}

/* =========================================================================
   8. TESTIMONIALS (rebuilt)
   ========================================================================= */
.tuntu-testimonials { padding-block: var(--tuntu-section-pad); }

/* Head area */
.tuntu-testimonials__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}
.tuntu-testimonials__nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Grid / Slider */
.tuntu-testimonials__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
@media (max-width: 1000px) { .tuntu-testimonials__track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tuntu-testimonials__track { grid-template-columns: 1fr; } }

/* Swiper overrides */
.tuntu-testimonials__slider-wrapper {
    position: relative;
}
.tuntu-testimonials__slider .swiper-slide {
    height: auto;
}

/* Card */
.tuntu-testimonial-card {
    background: var(--tuntu-paper);
    border: 1px solid rgba(28,31,22,0.08);
    border-radius: var(--tuntu-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Top row */
.tuntu-testimonial-card__top-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}
.tuntu-testimonial-card__avatar {
    flex-shrink: 0;
}
.tuntu-testimonial-card__avatar img {
    width: 65px; height: 65px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.tuntu-testimonial-card__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0;
}
.tuntu-testimonial-card__name {
    font-weight: 600;
    font-size: 14px;
    color: var(--tuntu-ink-900);
}
.tuntu-testimonial-card__flag {
    font-size: 16px;
}
.tuntu-testimonial-card__location {
    font-size: 12.5px;
    color: var(--tuntu-ink-600);
}
.tuntu-stars {
    display: flex;
    gap: 2px;
    margin-top: 2px;
    width: 100%; /* force new line */
}
.tuntu-star svg {
    width: 14px; height: 14px;
    color: rgba(28,31,22,0.18);
}
.tuntu-star.is-filled svg {
    color: var(--tuntu-gold-500);
}

/* Quote icon – absolute top-right */
.tuntu-testimonial-card__quote-icon {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    line-height: 1;
}
.tuntu-testimonial-card__quote-icon svg {
    width: 24px; height: 24px;
    color: var(--tuntu-gold-500);
}

/* Divider bar */
.tuntu-testimonial-card__divider {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 16px 0;
}

/* Quote text */
.tuntu-testimonial-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--tuntu-ink-900);
    flex: 1;
}

/* Navigation dots inside Swiper (already styled globally) */
.tuntu-testimonials__nav .swiper-pagination {
    position: static;
    width: auto;
    flex: 1;
    text-align: center;
}

/* =========================================================================
   9. PARTNERS
   ========================================================================= */
.tuntu-partners { text-align: center; padding-block: 60px; }
.tuntu-partners .tuntu-eyebrow { justify-content: center; }
.tuntu-partners .tuntu-eyebrow::before { display: none; }
.tuntu-partners__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 46px; margin-top: 30px; }
.tuntu-partners__logo { display: inline-flex; }
.tuntu-partners__logo img { max-height: 42px; width: auto; display: block; }
.tuntu-partners--grayscale .tuntu-partners__logo img { filter: grayscale(1); opacity: .6; transition: filter .3s var(--tuntu-ease), opacity .3s var(--tuntu-ease); }
.tuntu-partners--grayscale .tuntu-partners__logo:hover img { filter: none; opacity: 1; }

.tuntu-partners__heading { display: flex; align-items: center; justify-content: center; }
.tuntu-partners__heading-content { display: flex; align-items: center; }
.tuntu-partners__side-bar { flex-shrink: 0; }
.tuntu-partners__icon { display: inline-flex; align-items: center; }
.tuntu-partners__bar { /* dynamic */ }
.tuntu-partners__row { display: flex; flex-wrap: wrap; align-items: center; }
/* Slider */
.tuntu-partners__slider-wrapper { overflow: hidden; }
.tuntu-partners__nav { /* dynamic */ }
.tuntu-partners__nav .swiper-pagination { position: static; width: auto; }

.tuntu-partners__slider .swiper-wrapper { align-items: center; }

/* =========================================================================
   10. CTA BANNER
   ========================================================================= */
.tuntu-cta-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background-color: var(--tuntu-green-900); /* fallback */
    border-radius: var(--tuntu-radius-lg);
    padding: 34px 42px;
    color: #fff;
    overflow: hidden; /* for overlay */
}
.tuntu-cta-banner__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.tuntu-cta-banner__text,
.tuntu-cta-banner__actions {
    position: relative;
    z-index: 1;
}
.tuntu-cta-banner__text {
    display: flex;
    align-items: center;
    gap: 18px;
}
.tuntu-cta-banner__icon {
    flex: none;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--tuntu-gold-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}
.tuntu-cta-banner__title {
    display: block;
    font-family: var(--tuntu-font-display);
    font-size: 20px;
}
.tuntu-cta-banner__subtitle {
    display: block;
    font-size: 13.5px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}
.tuntu-cta-banner__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
/* Dotted border */
.tuntu-cta-banner__dotted {
    display: block;
    width: 2px;
    height: 50px;
    background-color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}
/* Responsive */
@media (max-width: 700px) {
    .tuntu-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================================
   BUTTON
   ========================================================================= */
.tuntu-button-wrap {
    display: block;
}
.tuntu-btn-widget {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s var(--tuntu-ease);
}
.tuntu-btn-widget .tuntu-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #C5A55A;
    color: #1A2E1F;
    width: 36px;
    height: 36px;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.tuntu-header {
	position: sticky; top: 0; z-index: 999; width: 100%;
	background: var(--tuntu-green-900);
	transition: background-color .4s var(--tuntu-ease), box-shadow .4s var(--tuntu-ease), padding .3s var(--tuntu-ease);
}
.tuntu-header--transparent { background: transparent; box-shadow: none; }
.tuntu-header--transparent.is-scrolled { background: var(--tuntu-green-900); box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.tuntu-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 18px; }
.tuntu-header__logo { display: inline-flex; align-items: center; text-decoration: none; }
.tuntu-header__logo img { max-height: 42px; width: auto; display: block; }
.tuntu-header__logo-text { font-family: var(--tuntu-font-display); font-size: 22px; font-weight: 600; color: #fff; letter-spacing: .02em; }
.tuntu-header__nav { flex: 1; display: flex; justify-content: center; }
.tuntu-header__menu { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.tuntu-header__menu a {
	color: rgba(255,255,255,0.88); text-decoration: none; font-size: 14px; font-weight: 500;
	letter-spacing: .01em; padding: 6px 0; position: relative; transition: color .3s var(--tuntu-ease);
}
.tuntu-header__menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--tuntu-gold-500); transition: right .3s var(--tuntu-ease); }
.tuntu-header__menu a:hover { color: #fff; }
.tuntu-header__menu a:hover::after { right: 0; }
.tuntu-header__actions { display: flex; align-items: center; gap: 18px; }
.tuntu-header__cta { padding: 12px 24px; font-size: 12px; }
.tuntu-header__burger {
	display: none; flex-direction: column; justify-content: center; gap: 5px;
	width: 40px; height: 40px; border: none; background: transparent; cursor: pointer; padding: 0;
}
.tuntu-header__burger span { display: block; width: 22px; height: 2px; background: #fff; transition: transform .3s var(--tuntu-ease), opacity .3s var(--tuntu-ease); }
.tuntu-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tuntu-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tuntu-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.tuntu-header__mobile-panel {
	display: none; overflow: hidden; height: 0; opacity: 0;
	background: var(--tuntu-green-800); padding-inline: clamp(20px, 5vw, 48px);
}
.tuntu-header__mobile-menu { list-style: none; margin: 0; padding: 20px 0 8px; display: flex; flex-direction: column; gap: 4px; }
.tuntu-header__mobile-menu a { display: block; padding: 12px 0; color: #fff; text-decoration: none; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tuntu-header__mobile-panel .tuntu-btn { margin: 16px 0 24px; width: 100%; justify-content: center; }

@media (max-width: 900px) {
	.tuntu-header__nav, .tuntu-header__cta { display: none; }
	.tuntu-header__burger { display: flex; }
	.tuntu-header__mobile-panel { display: block; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.tuntu-footer { position: relative; background: var(--tuntu-green-900); color: rgba(255,255,255,0.82); overflow: hidden; padding-top: 72px; }
.tuntu-footer__mountains { position: absolute; left: 0; right: 0; bottom: 0; height: 220px; pointer-events: none; }
.tuntu-footer__mountains svg { width: 100%; height: 100%; display: block; }
.tuntu-footer__top { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 2fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.tuntu-footer__logo img { max-height: 40px; }
.tuntu-footer__logo-text { font-family: var(--tuntu-font-display); font-size: 22px; color: #fff; }
.tuntu-footer__tagline { font-size: 14px; line-height: 1.7; margin: 18px 0 22px; max-width: 320px; color: rgba(255,255,255,0.65); }
.tuntu-footer__social { display: flex; gap: 12px; }
.tuntu-footer__social-link {
	width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
	display: inline-flex; align-items: center; justify-content: center; color: #fff;
	transition: background-color .3s var(--tuntu-ease), border-color .3s var(--tuntu-ease);
}
.tuntu-footer__social-link svg, .tuntu-footer__social-link i { font-size: 15px; }
.tuntu-footer__social-link:hover { background: var(--tuntu-gold-500); border-color: var(--tuntu-gold-500); color: var(--tuntu-green-900); }
.tuntu-footer__columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tuntu-footer__col-title { font-family: var(--tuntu-font-body); font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--tuntu-gold-400); margin: 0 0 18px; }
.tuntu-footer__col-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.tuntu-footer__col-list a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 14px; transition: color .3s var(--tuntu-ease); }
.tuntu-footer__col-list a:hover { color: #fff; }
.tuntu-footer__newsletter-form { display: flex; margin-top: 4px; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 10px; max-width: 260px; }
.tuntu-footer__newsletter-form input { flex: 1; background: transparent; border: none; color: #fff; font-size: 14px; outline: none; }
.tuntu-footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.tuntu-footer__newsletter-form button { background: transparent; border: none; color: var(--tuntu-gold-400); cursor: pointer; width: 22px; height: 22px; }
.tuntu-footer__newsletter-form button svg { width: 18px; height: 18px; }
.tuntu-footer__bottom { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 26px; font-size: 12.5px; color: rgba(255,255,255,0.55); flex-wrap: wrap; }
.tuntu-footer__legal-menu { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.tuntu-footer__legal-menu a { color: rgba(255,255,255,0.55); text-decoration: none; }
.tuntu-footer__legal-menu a:hover { color: #fff; }

@media (max-width: 900px) {
	.tuntu-footer__top { grid-template-columns: 1fr; gap: 40px; }
	.tuntu-footer__columns { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
	.tuntu-footer__columns { grid-template-columns: 1fr; }
	.tuntu-footer__bottom { flex-direction: column; align-items: flex-start; }
}



/* ==========================================================================
   Tuntu Inline CTA — Popup
   Structural / behavioural styles only. Colors, spacing, radius, shadow,
   typography etc. are controlled per-widget from the Elementor "Popup"
   style tab (see tuntu-inline-cta-widget.php) and are injected inline by
   Elementor, so they will override the safe defaults set here.
   ========================================================================== */

.tuntu-popup {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.tuntu-popup.tuntu-popup--active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.tuntu-popup__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(17, 17, 17, 0.72); /* overridden inline per-widget */
	cursor: pointer;
}

.tuntu-popup__dialog {
	position: relative;
	z-index: 1;
	width: 560px;
	max-width: 100%;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	background: #fff;
	border-radius: 16px;
	padding: 40px;
	transform: translateY(16px) scale(0.98);
	transition: transform 0.28s ease;
	-webkit-overflow-scrolling: touch;
}

.tuntu-popup--active .tuntu-popup__dialog {
	transform: translateY(0) scale(1);
}

.tuntu-popup__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.05);
	color: #111;
	cursor: pointer;
	padding: 0;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.tuntu-popup__close:hover,
.tuntu-popup__close:focus-visible {
	background-color: rgba(0, 0, 0, 0.1);
	transform: rotate(90deg);
}

.tuntu-popup__close svg {
	width: 16px;
	height: 16px;
}

.tuntu-popup__heading {
	margin: 0 0 12px;
	padding-right: 36px;
	font-size: 24px;
	line-height: 1.3;
}

.tuntu-popup__description {
	margin: 0 0 24px;
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.8;
}

.tuntu-popup__description p:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------
   Contact Form 7 baseline styling so the form looks good inside the
   popup out of the box, even before any theme-wide CF7 CSS applies.
   -------------------------------------------------------------------- */

.tuntu-popup__form .wpcf7-form p {
	margin: 0 0 16px;
}

.tuntu-popup__form .wpcf7-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
}

.tuntu-popup__form .wpcf7-form input[type="text"],
.tuntu-popup__form .wpcf7-form input[type="email"],
.tuntu-popup__form .wpcf7-form input[type="tel"],
.tuntu-popup__form .wpcf7-form input[type="url"],
.tuntu-popup__form .wpcf7-form input[type="number"],
.tuntu-popup__form .wpcf7-form textarea,
.tuntu-popup__form .wpcf7-form select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	font-size: 14px;
	background-color: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tuntu-popup__form .wpcf7-form input:focus,
.tuntu-popup__form .wpcf7-form textarea:focus,
.tuntu-popup__form .wpcf7-form select:focus {
	outline: none;
	border-color: #c9a15a;
	box-shadow: 0 0 0 3px rgba(201, 161, 90, 0.15);
}

.tuntu-popup__form .wpcf7-form textarea {
	min-height: 120px;
	resize: vertical;
}

.tuntu-popup__form .wpcf7-form .wpcf7-list-item {
	margin: 0 12px 0 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}

.tuntu-popup__form .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border: none;
	border-radius: 999px;
	background-color: #c9a15a;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.tuntu-popup__form .wpcf7-submit:hover {
	transform: translateY(-1px);
}

.tuntu-popup__form .wpcf7-submit:disabled {
	opacity: 0.6;
	cursor: default;
	transform: none;
}

.tuntu-popup__form .wpcf7-spinner {
	margin-left: 10px;
}

.tuntu-popup__form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #d9534f;
}

.tuntu-popup__form .wpcf7-response-output {
	margin: 16px 0 0;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 13px;
	border-width: 1px;
	border-style: solid;
}

.tuntu-popup__form-notice {
	font-size: 13px;
	opacity: 0.7;
	font-style: italic;
}

/* Prevent background scroll while a popup is open */
body.tuntu-popup-open {
	overflow: hidden;
}

.tuntu-popup-trigger {
	display: inline-block;
}

@media (max-width: 480px) {
	.tuntu-popup__dialog {
		padding: 28px 20px;
		border-radius: 12px;
	}

	.tuntu-popup__heading {
		font-size: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tuntu-popup,
	.tuntu-popup__dialog,
	.tuntu-popup__close {
		transition: none !important;
	}
}