/* D:\laragon\www\marigold\css\style.css */

/* --- DESIGN TOKENS (Design 4: Tropical Opulence) --- */
:root {
    --deep: #042f2e;
    --dark: #064e4e;
    --teal: #0d9488;
    --teal-dark: #064e4e;
    --teal-light: #14b8a6;
    --teal-pale: #7eecd4;
    --sand: #fbf8f3;
    --sand-dark: #f2ebd9;
    --gold: #d97706;
    --gold-light: #fef08a;
    --coral: #f97316;
    --coral-light: #ffedd5;
    --coral-dark: #c2410c;
    --white: #ffffff;
    --light: #f3f4f6;
    --border: rgba(13, 148, 136, 0.15);
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Nunito', sans-serif;

    --shadow-soft: 0 10px 30px rgba(4, 47, 46, 0.08);
    --shadow-deep: 0 20px 50px rgba(4, 47, 46, 0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-sans);
    background-color: var(--sand);
    color: #2b3a3a;
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- BUTTON UTILITIES --- */
.t-btn-main {
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: var(--white); font-family: var(--font-sans); font-size: 13px;
    font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 14px 32px; border-radius: var(--radius-full);
    border: none; cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}
.t-btn-main:hover {
    background: linear-gradient(135deg, var(--coral-dark), var(--coral));
    transform: translateY(-2px); box-shadow: 0 12px 30px rgba(249, 115, 22, 0.45);
}
.t-btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 13px 30px;
    border-radius: var(--radius-full); cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.t-btn-outline:hover {
    background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white);
}
.t-btn-outline-dark {
    background: transparent; color: var(--dark);
    border: 1.5px solid var(--dark); font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; padding: 12px 28px;
    border-radius: var(--radius-full); cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.t-btn-outline-dark:hover {
    background: var(--dark); color: var(--white);
}

/* --- HEADER / NAVBAR --- */
.t-header {
    position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--deep); transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.t-header.scrolled {
    background: rgba(4, 47, 46, 0.95); backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.t-header-inner {
    max-width: 1300px; margin: 0 auto; padding: 14px 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.t-logo-link { display: flex; align-items: center; gap: 12px; }
.t-brand-logo-img { height: 44px; border-radius: 8px; background: #fff; padding: 3px; }
.t-logo-words { display: flex; flex-direction: column; }
.t-logo-name {
    font-family: var(--font-serif); font-size: 18px; font-weight: 700;
    color: var(--white); line-height: 1.1; letter-spacing: 1px;
}
.t-logo-tag {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--teal-pale); font-weight: 600; margin-top: 2px;
}

.t-nav { display: flex; align-items: center; gap: 28px; }
.t-nav-link {
    font-size: 13px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: rgba(255,255,255,0.85); transition: var(--transition);
}
.t-nav-link:hover, .t-nav-link.active { color: var(--teal-pale); }
.t-nav-close { display: none; background: none; border: none; font-size: 28px; color: var(--dark); cursor: pointer; align-self: flex-end; }
.t-nav-btn { display: none; }

.t-header-cta { display: flex; align-items: center; gap: 14px; }

.t-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: transparent; border: none; cursor: pointer; padding: 6px;
}
.t-hamburger span {
    width: 24px; height: 2px; background: var(--white);
    border-radius: 2px; transition: var(--transition);
}

/* --- FEATURE 3: ANNOUNCEMENT SCROLLER BAR --- */
.announcement-scroller-bar {
    background: linear-gradient(90deg, var(--deep), var(--dark));
    color: var(--white); height: 40px; overflow: hidden;
    border-bottom: 2px solid var(--teal-light); display: flex; align-items: center;
    position: relative; z-index: 990;
}
.announcement-track {
    display: flex; white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
    will-change: transform;
}
.announcement-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}
.announcement-item {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 0 40px; font-size: 13px; font-weight: 500;
}
.ann-badge {
    background: var(--coral); color: var(--white);
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    padding: 3px 10px; border-radius: var(--radius-full);
}
.ann-text-link { color: var(--gold-light); text-decoration: none; transition: var(--transition); }
.ann-text-link:hover { color: var(--white); text-decoration: underline; }

/* --- FEATURE 2: WELCOME LEAD POPUP --- */
.welcome-popup-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(4, 47, 46, 0.85); backdrop-filter: blur(14px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.welcome-popup-overlay.active { opacity: 1; visibility: visible; }
.welcome-popup-card {
    background: var(--white); border-radius: var(--radius-lg);
    width: 100%; max-width: 440px; padding: 36px;
    box-shadow: 0 25px 70px rgba(4, 47, 46, 0.4);
    border: 2px solid var(--border); text-align: center;
    transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.welcome-popup-overlay.active .welcome-popup-card { transform: scale(1); }
.welcome-popup-logo { height: 50px; border-radius: 8px; margin: 0 auto 14px; background: #fff; padding: 4px; border: 1px solid #eee; }
.welcome-popup-header h3 { font-family: var(--font-serif); font-size: 24px; color: var(--dark); margin-bottom: 8px; font-weight: 700; }
.welcome-popup-header p { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 24px; }
.welcome-popup-form { text-align: left; }
.welcome-field { margin-bottom: 18px; }
.welcome-field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 6px; }
.welcome-field label i { margin-right: 4px; color: var(--coral); }
.req-star { color: var(--coral); }
.welcome-field input {
    width: 100%; padding: 12px 16px; border: 1.5px solid #d1d5db;
    border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-sans);
    outline: none; transition: var(--transition);
}
.welcome-field input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,0.15); }
.popup-alert { font-size: 13px; padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 16px; text-align: center; font-weight: 600; }
.popup-alert.success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.popup-alert.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.welcome-submit-btn { width: 100%; padding: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; margin-top: 6px; }

/* --- HERO SECTION --- */
.t-hero {
    position: relative; min-height: 85vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden; padding: 70px 0;
}
.t-hero-bg { position: absolute; inset: 0; z-index: 0; }
.t-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.t-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(4, 47, 46, 0.7) 0%, rgba(4, 47, 46, 0.5) 50%, rgba(4, 47, 46, 0.75) 100%);
}
.t-hero-body { position: relative; z-index: 3; text-align: center; max-width: none !important; width: 100%; padding: 0 40px; margin-bottom: 40px; }
.t-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25); color: var(--teal-pale);
    font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 8px 20px; border-radius: var(--radius-full); margin-bottom: 24px;
}
.t-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #22d3ee; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.5;transform:scale(1.5);} }

.t-hero-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.05; color: var(--white); margin-bottom: 24px; }
.t-hero-title em { font-style: italic; color: var(--gold-light); }
.t-hero-sub { font-size: clamp(1rem, 1.3vw, 1.15rem); color: rgba(255,255,255,0.9); max-width: 700px; margin: 0 auto 32px; font-weight: 400; line-height: 1.8; }
.t-hero-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.t-hero-cards { display: flex; gap: 20px; justify-content: center; position: relative; z-index: 3; max-width: 1300px; margin: 0 auto; padding: 0 40px; flex-wrap: wrap; }
.t-hero-card {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-md);
    padding: 18px 28px; color: var(--white); text-align: center; min-width: 200px;
}
.t-hero-card i { font-size: 20px; color: var(--teal-pale); margin-bottom: 6px; }
.t-hero-card strong { display: block; font-size: 15px; font-weight: 700; }
.t-hero-card span { font-size: 12px; color: rgba(255,255,255,0.75); }

/* --- FEATURE 4: BOOKING BAR & PROMO CODE INPUT --- */
.t-booking-bar { background: linear-gradient(135deg, var(--dark), var(--deep)) !important; padding: 0; position: relative; z-index: 10; }
.t-booking-inner { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: flex; align-items: stretch; min-height: 80px; flex-wrap: wrap; }
.t-booking-field { flex: 1; min-width: 140px; display: flex; flex-direction: column; justify-content: center; padding: 16px 20px; }
.t-book-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-pale); font-weight: 700; margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
.t-booking-field input, .t-booking-field select { background: transparent; border: none; outline: none; color: var(--white); font-size: 14px; font-family: var(--font-sans); font-weight: 500; width: 100%; cursor: pointer; }
.t-booking-field select option { background: var(--deep); }
.t-book-sep { width: 1px; background: rgba(255,255,255,0.1); margin: 14px 0; }
.t-book-btn { background: linear-gradient(135deg, var(--coral), var(--coral-light)); border: none; color: var(--white); padding: 0 32px; font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: var(--transition); flex-shrink: 0; display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.t-book-btn:hover { background: linear-gradient(135deg, var(--coral-dark), var(--coral)); }

/* Promo Input Field */
.promo-code-input-wrap { position: relative; display: flex; align-items: center; }
.promo-code-input-wrap input { text-transform: uppercase; letter-spacing: 1.5px; }
.btn-apply-promo { background: var(--coral); color: var(--white); border: none; padding: 4px 10px; border-radius: var(--radius-sm); font-size: 10px; font-weight: 700; cursor: pointer; margin-left: 6px; white-space: nowrap; }
.btn-apply-promo:hover { background: var(--coral-dark); }
.promo-msg-feedback { font-size: 11px; margin-top: 4px; font-weight: 600; display: block; }
.promo-msg-feedback.valid { color: var(--teal-pale); }
.promo-msg-feedback.invalid { color: #fca5a5; }

/* --- SHARED SECTIONS --- */
.t-container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.t-section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); background: rgba(13, 148, 136, 0.08); padding: 6px 14px; border-radius: var(--radius-full); margin-bottom: 16px; }
.t-section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; color: var(--dark); margin-bottom: 20px; }
.t-section-title em { font-style: italic; color: var(--coral); }
.t-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 50px; gap: 20px; }
.t-center { text-align: center; }
.t-text-link { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); display: flex; align-items: center; gap: 6px; white-space: nowrap; transition: var(--transition); }
.t-text-link:hover { color: var(--coral); gap: 10px; }

/* --- ABOUT SECTION --- */
.t-about { padding: 90px 0; background: var(--white); }
.t-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.t-about-img-stack { position: relative; }
.t-img-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.t-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.t-img-card:hover img { transform: scale(1.04); }
.t-img-big { height: 380px; margin-bottom: 14px; }
.t-img-small { height: 180px; width: 66%; }
.t-img-label { position: absolute; bottom: 14px; left: 14px; background: rgba(4,47,46,0.8); backdrop-filter: blur(8px); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius-full); }
.t-about-award { position: absolute; top: 180px; right: -10px; background: linear-gradient(135deg, var(--coral), var(--gold)); color: var(--white); padding: 18px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-deep); min-width: 140px; }
.t-about-award i { font-size: 24px; margin-bottom: 6px; display: block; }
.t-about-award strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.t-about-award span { display: block; font-size: 10px; opacity: 0.85; margin-top: 2px; }
.t-about-text { font-size: 15px; color: #555; line-height: 1.8; font-weight: 400; margin-bottom: 18px; }
.t-features-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.t-feat { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.t-feat-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(13,148,136,0.1); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.t-feat span { font-size: 12px; font-weight: 700; color: var(--dark); }

/* --- VILLAS SECTION --- */
.t-villas { padding: 90px 0; background: var(--sand); }
.t-villas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.t-villa-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-soft); transition: var(--transition); display: flex; flex-direction: column; }
.t-villa-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); }
.t-villa-hero-card { grid-column: span 1; border: 2px solid var(--teal); }
.t-villa-img { position: relative; height: 240px; overflow: hidden; }
.t-villa-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.t-villa-card:hover .t-villa-img img { transform: scale(1.06); }
.t-villa-price { position: absolute; bottom: 14px; left: 14px; background: rgba(4,47,46,0.9); backdrop-filter: blur(8px); color: var(--gold-light); font-size: 18px; font-weight: 700; font-family: var(--font-serif); padding: 6px 16px; border-radius: var(--radius-full); }
.t-villa-price span { font-size: 11px; font-family: var(--font-sans); color: rgba(255,255,255,0.7); font-weight: 400; }
.t-villa-tag { position: absolute; top: 14px; right: 14px; background: var(--teal); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: var(--radius-full); }
.t-villa-tag-hot { background: var(--coral); }
.t-villa-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.t-villa-body h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.t-villa-body p { font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.t-villa-specs { display: flex; gap: 14px; font-size: 12px; color: #777; border-top: 1px solid #f0f0f0; padding-top: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.t-villa-specs span { display: flex; align-items: center; gap: 6px; }
.t-villa-specs i { color: var(--teal); }
.t-villa-btn { background: var(--sand); color: var(--dark); border: 1px solid var(--dark); padding: 12px 20px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); text-align: center; }
.t-villa-btn:hover { background: var(--dark); color: var(--white); }

/* --- EXPERIENCES BAND --- */
.t-experiences { position: relative; padding: 90px 0; overflow: hidden; background: var(--deep); }
.t-exp-bg { position: absolute; inset: 0; }
.t-exp-bg img { width: 100%; height: 100%; object-fit: cover; }
.t-exp-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(4,47,46,0.92), rgba(6,78,78,0.82)); }
.t-exp-content { position: relative; z-index: 2; }
.t-exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.t-exp-item { background: rgba(255,255,255,0.06); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 28px 20px; transition: var(--transition); }
.t-exp-item:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); }
.t-exp-icon { font-size: 28px; color: var(--teal-pale); margin-bottom: 16px; }
.t-exp-item h3 { font-family: var(--font-serif); font-size: 18px; color: var(--white); margin-bottom: 10px; font-weight: 600; }
.t-exp-item p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7; font-weight: 300; }

/* --- AMENITIES --- */
.t-amenities { padding: 90px 0; background: var(--sand); }
.t-amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.t-amenity { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; transition: var(--transition); border: 1px solid var(--border); text-align: center; }
.t-amenity:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.t-amenity-icon { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(14,165,133,0.15)); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--teal); transition: var(--transition); }
.t-amenity:hover .t-amenity-icon { background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: var(--white); }
.t-amenity h4 { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.t-amenity p { font-size: 13px; color: #666; line-height: 1.7; }

/* --- GALLERY --- */
.t-gallery { padding: 90px 0 80px; background: var(--white); }
.t-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.t-gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; height: 240px; }
.t-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.t-gallery-item:hover img { transform: scale(1.08); }
.t-g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,47,46,0.8), transparent 50%); display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: var(--transition); }
.t-gallery-item:hover .t-g-overlay { opacity: 1; }
.t-g-overlay span { color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

/* --- TESTIMONIALS --- */
.t-testimonials { padding: 90px 0; background: var(--light); }
.t-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.t-testi { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; border: 1px solid rgba(13,148,136,0.12); transition: var(--transition); }
.t-testi:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.t-testi-featured { background: linear-gradient(135deg, var(--teal-dark), var(--deep)); color: var(--white); border-color: transparent; }
.t-testi-stars { font-size: 15px; color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.t-testi > p { font-family: var(--font-serif); font-size: 15px; font-style: italic; line-height: 1.8; color: #555; margin-bottom: 20px; }
.t-testi-featured > p { color: rgba(255,255,255,0.85); }
.t-testi-author { display: flex; align-items: center; gap: 12px; }
.t-testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--white); font-family: var(--font-serif); flex-shrink: 0; }
.t-av-teal { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.t-testi-author strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); }
.t-testi-featured .t-testi-author strong { color: var(--white); }
.t-testi-author span { display: block; font-size: 11px; color: #888; }
.t-testi-featured .t-testi-author span { color: rgba(255,255,255,0.6); }

/* --- CTA BANNER --- */
.t-cta { position: relative; padding: 100px 0; overflow: hidden; text-align: center; }
.t-cta-bg { position: absolute; inset: 0; }
.t-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.t-cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(4,47,46,0.9), rgba(6,78,78,0.8)); }
.t-cta-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; padding: 0 40px; }
.t-cta-title { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 20px; }
.t-cta-title em { font-style: italic; color: var(--gold-light); }
.t-cta-content > p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.8; }
.t-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* --- FOOTER --- */
.t-footer { background: var(--dark); }
.t-footer-top { max-width: 1300px; margin: 0 auto; padding: 60px 40px 40px; display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.t-footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 300px; margin: 16px 0 24px; font-weight: 300; }
.t-footer-social { display: flex; gap: 12px; }
.t-footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 13px; transition: var(--transition); }
.t-footer-social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); transform: translateY(-3px); }
.t-footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.t-footer-col h5 { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal-pale); margin-bottom: 16px; font-weight: 700; }
.t-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.t-footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 400; transition: var(--transition); display: flex; align-items: center; }
.t-footer-col ul li a:hover { color: var(--teal-pale); }
.t-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 40px; max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.t-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
.t-footer-bottom div { display: flex; gap: 20px; }
.t-footer-bottom div a { font-size: 12px; color: rgba(255,255,255,0.4); transition: var(--transition); }
.t-footer-bottom div a:hover { color: var(--teal-pale); }

/* --- FLOAT BUTTONS --- */
.t-float-btns { position: fixed; bottom: 24px; right: 24px; z-index: 500; display: flex; flex-direction: column; gap: 12px; }
.t-float { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.25); transition: var(--transition); }
.t-float:hover { transform: scale(1.12); }
.t-float-wa { background: #25D366; color: #fff; }
.t-float-call { background: var(--coral); color: #fff; }

/* --- LIGHTBOX --- */
.lightbox { position: fixed; inset: 0; z-index: 20000; background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--transition); }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-content img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 30px; right: 40px; color: var(--white); font-size: 40px; cursor: pointer; }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (DESKTOP & MOBILE OPTIMIZED SPACING)
   ========================================================================== */
@media (max-width: 1024px) {
    .t-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .t-villas-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .t-exp-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .t-amenities-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .t-testimonials-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .t-footer-top { grid-template-columns: 1fr; gap: 40px; }
    .t-footer-nav { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    /* Header Mobile Cleaning */
    .t-header-inner { padding: 12px 18px; }
    .header-reserve-btn { display: none !important; }
    .t-brand-logo-img { height: 38px; border-radius: 6px; }
    .t-logo-name { font-size: 15px; }
    .t-logo-tag { font-size: 9px; }
    
    .t-hamburger { display: flex; }
    
    .t-nav {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--white); flex-direction: column; align-items: flex-start;
        padding: 70px 24px 28px; gap: 16px;
        box-shadow: -8px 0 40px rgba(4,47,46,0.2);
        transition: right .35s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999;
    }
    .t-nav.open { right: 0; }
    .t-nav-link { color: var(--dark); font-size: 14px; font-weight: 700; width: 100%; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
    .t-nav-close { display: block; position: absolute; top: 20px; right: 24px; color: var(--dark); font-size: 32px; }
    .t-nav-btn { display: flex !important; width: 100%; margin-top: 14px; justify-content: center; text-align: center; }

    /* Sections & Hero Mobile Spacing */
    .t-hero { min-height: 75vh; padding: 50px 0 40px; }
    .t-hero-body { padding: 0 18px; margin-bottom: 24px; }
    .t-hero-title { font-size: clamp(2.2rem, 8vw, 3.4rem); margin-bottom: 16px; }
    .t-hero-sub { font-size: 14px; margin-bottom: 24px; }
    .t-hero-cards { padding: 0 18px; flex-direction: column; gap: 12px; width: 100%; }
    .t-hero-card { width: 100%; min-width: 0; padding: 14px; }
    
    /* Booking Bar Mobile */
    .t-booking-inner { flex-direction: column; padding: 18px; gap: 12px; }
    .t-book-sep { display: none; }
    .t-booking-field { padding: 0; width: 100%; }
    .t-book-btn { padding: 14px 20px; justify-content: center; width: 100%; }
    
    /* Content Layout Mobile */
    .t-container { padding: 0 18px; }
    .t-section-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
    .t-section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    .t-about { padding: 50px 0; }
    .t-about-grid { grid-template-columns: 1fr; gap: 30px; }
    .t-img-big { height: 260px; }
    .t-img-small { height: 140px; width: 60%; }
    .t-about-award { top: 130px; right: 0; padding: 14px; min-width: 120px; }
    .t-features-row { grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; }
    .t-feat-icon { width: 38px; height: 38px; font-size: 16px; }
    .t-feat span { font-size: 11px; }

    .t-villas { padding: 50px 0; }
    .t-villas-grid { grid-template-columns: 1fr; gap: 20px; }
    .t-villa-img { height: 200px; }
    .t-villa-body { padding: 20px; }
    
    .t-experiences { padding: 50px 0; }
    .t-exp-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
    .t-exp-item { padding: 20px; }

    .t-amenities { padding: 50px 0; }
    .t-amenities-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
    .t-amenity { padding: 24px 18px; }

    .t-gallery { padding: 50px 0 0; }
    .t-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 30px; }
    .t-gallery-item { height: 180px; }

    .t-testimonials { padding: 50px 0; }
    .t-testimonials-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
    .t-testi { padding: 24px 18px; }

    .t-cta { padding: 60px 0; }
    .t-cta-content { padding: 0 18px; }

    .t-footer-top { padding: 40px 18px 30px; gap: 30px; }
    .t-footer-nav { grid-template-columns: 1fr; gap: 24px; }
    .t-footer-bottom { padding: 16px 18px; flex-direction: column; text-align: center; gap: 12px; }
    .t-footer-bottom div { justify-content: center; }
}

@media (max-width: 480px) {
    .t-gallery-grid { grid-template-columns: 1fr; }
    .t-gallery-item { height: 220px; }
}
