/* ═══════════════════════════════════════════════
   TOP UTAZÓ CLUB — Global Shared Stylesheet
   Single source of truth for all pages.
   v2.0 — Wishlist, Share, Newsletter, Transitions
═══════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
html, body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
:root {
    --navy:       #002b4e;
    --navy-dark:  #001f38;
    --navy-mid:   #003d6e;
    --gold:       #FFCC00;
    --gold-hover: #e6b800;
    --white:      #ffffff;
    --light-gray: #f8f9fa;
    --green:      #1a9e4a;
    --green-dark: #158040;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; background: var(--white); color: var(--navy); }

/* ── ANIMATIONS ── */
@keyframes tuc-float    { 0%,100%{ transform: translateY(0);   } 50%{ transform: translateY(-10px); } }
@keyframes tuc-pulse-gold { 0%  { box-shadow: 0 0 0 0   rgba(255,204,0,.7); }
                            70% { box-shadow: 0 0 0 20px rgba(255,204,0,0);  }
                            100%{ box-shadow: 0 0 0 0   rgba(255,204,0,0);  } }
@keyframes tuc-page-in  { from { opacity: 0; transform: translateY(14px); }
                           to   { opacity: 1; transform: translateY(0);    } }
@keyframes wishlist-pop { 0%   { transform: scale(1); }
                          40%  { transform: scale(1.45); }
                          70%  { transform: scale(.85); }
                          100% { transform: scale(1); } }
.animate-float    { animation: tuc-float     4s ease-in-out infinite; }
.btn-pulse-gold   { animation: tuc-pulse-gold 2s infinite; }

/* ── PAGE TRANSITION ── */
.page-fade { animation: tuc-page-in 0.45s cubic-bezier(0.4,0,0.2,1) both; }

/* ── HEADER ── */
header {
    background-color: var(--navy);
    padding: 0.8rem 5%;
    position: sticky; top: 0; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.18);
    gap: 20px; flex-wrap: wrap;
}
.header-left { display: flex; align-items: center; gap: 30px; flex-grow: 1; }
.logo { font-size: 1.4rem; font-weight: 800; color: var(--gold); text-decoration: none; letter-spacing: -1px; text-transform: uppercase; white-space: nowrap; }
.logo span { color: var(--white); }

/* Header Search */
.header-search { position: relative; max-width: 400px; width: 100%; }
.header-search input {
    width: 100%; padding: 10px 15px 10px 40px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,.2); font-family: inherit; font-size: .9rem;
    outline: none; background: rgba(255,255,255,.1); color: white;
    transition: var(--transition); box-sizing: border-box;
}
.header-search input::placeholder { color: rgba(255,255,255,.6); }
.header-search input:focus { background: white; color: var(--navy); }
.header-search i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--gold); }

/* Nav */
.nav-links { display: flex; list-style: none; gap: 20px; align-items: center; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--white); font-weight: 600; font-size: .85rem; transition: var(--transition); padding-bottom: 2px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Auth Buttons */
.auth-links { display: flex; gap: 10px; align-items: center; }
.btn-auth {
    font-size: .75rem; font-weight: 700; color: var(--navy); background: var(--gold);
    padding: 8px 16px; border-radius: 6px; text-decoration: none; border: none;
    cursor: pointer; white-space: nowrap; transition: var(--transition); font-family: inherit;
}
.btn-auth:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn-auth.outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,.7); }
.btn-auth.outline:hover { background: rgba(255,255,255,.12); border-color: white; }

/* ── HAMBURGER BUTTON ── */
.hamburger {
    display: none;
    flex-direction: column; justify-content: space-between;
    width: 28px; height: 20px;
    background: transparent; border: none; cursor: pointer; padding: 0; flex-shrink: 0;
}
.hamburger span {
    display: block; width: 100%; height: 2.5px;
    background: var(--gold); border-radius: 2px;
    transition: all 0.28s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

/* ── MOBILE MENU PANEL ── */
.mobile-menu {
    display: none; width: 100%; flex-basis: 100%;
    background: var(--navy-dark);
    border-top: 2px solid rgba(255,204,0,.25);
    animation: tuc-page-in 0.2s ease both;
}
.mobile-menu.open { display: block; }
.mobile-nav-list { list-style: none; margin: 0; padding: 6px 0; }
.mobile-nav-list li a {
    display: block; padding: 13px 5%;
    color: rgba(255,255,255,.85); font-weight: 600; font-size: .92rem;
    text-decoration: none; transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav-list li a:hover,
.mobile-nav-list li a.active { color: var(--gold); padding-left: 7%; }
.mobile-auth-links { display: flex; flex-wrap: wrap; gap: 10px; padding: 14px 5% 8px; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 14px 5%; background: var(--light-gray); border-bottom: 1px solid #e5e5e5; }
.breadcrumb a { color: var(--navy); text-decoration: none; font-size: .82rem; font-weight: 600; opacity: .65; transition: var(--transition); }
.breadcrumb a:hover { opacity: 1; color: var(--gold); }
.breadcrumb span { font-size: .82rem; opacity: .35; margin: 0 8px; }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--gold); color: var(--navy); font-weight: 800; font-size: 1rem; padding: 16px 36px; border-radius: 50px; text-decoration: none; border: none; cursor: pointer; transition: var(--transition); font-family: inherit; }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(255,204,0,.35); }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--navy); color: white; font-weight: 800; font-size: 1rem; padding: 16px 36px; border-radius: 50px; text-decoration: none; border: 2px solid var(--gold); cursor: pointer; transition: var(--transition); font-family: inherit; }
.btn-secondary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,43,78,.25); }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-dark); }

/* ── SECTION TITLES ── */
.section-title { font-size: 1.7rem; font-weight: 800; margin: 0 0 25px; display: flex; align-items: center; gap: 12px; }
.section-title i { color: var(--gold); font-size: 1.4rem; }
.section-title-center { text-align: center; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; text-transform: uppercase; margin-bottom: 15px; }
.section-subtitle { text-align: center; font-size: 1.05rem; opacity: .65; margin-bottom: 55px; font-weight: 500; }

/* ── CARDS (Deal/Travel) ── */
.tuc-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,.06); display: flex; flex-direction: column; transition: var(--transition); border: 1px solid #eee; position: relative; }
.tuc-card:hover { transform: translateY(-12px); box-shadow: 0 28px 55px rgba(0,43,78,.18); }
.tuc-card-img-wrapper { height: 230px; width: 100%; overflow: hidden; position: relative; }
.tuc-card-img { height: 100%; width: 100%; object-fit: cover; transition: var(--transition); }
.tuc-card:hover .tuc-card-img { transform: scale(1.05); }
.tuc-locked-badge { position: absolute; top: 14px; left: 14px; background: rgba(0,43,78,.88); color: white; padding: 5px 12px; border-radius: 6px; font-size: .7rem; font-weight: 700; text-transform: uppercase; z-index: 5; display: flex; align-items: center; gap: 6px; backdrop-filter: blur(4px); }
.tuc-unlocked-badge { position: absolute; top: 14px; left: 14px; background: rgba(26,158,74,.9); color: white; padding: 5px 12px; border-radius: 6px; font-size: .7rem; font-weight: 700; text-transform: uppercase; z-index: 5; display: flex; align-items: center; gap: 6px; backdrop-filter: blur(4px); }
.tuc-card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.tuc-card-title { font-size: 1.25rem; font-weight: 700; margin: 0 0 12px; color: var(--navy); }
.tuc-card-footer { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 18px; border-top: 1px solid #f0f0f0; }
.tuc-price { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.tuc-btn-unlock { display: block; text-align: center; background: var(--navy); color: white; padding: 13px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: .9rem; transition: var(--transition); border: 2px solid var(--gold); cursor: pointer; font-family: inherit; }
.tuc-btn-unlock:hover { background: var(--gold); color: var(--navy); }
.tuc-btn-details { display: block; text-align: center; background: var(--green); color: white; padding: 13px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: .9rem; transition: var(--transition); border: none; }
.tuc-btn-details:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ── MODAL ── */
.tuc-modal { display: none; position: fixed; z-index: 3000; inset: 0; background: rgba(0,43,78,.88); backdrop-filter: blur(6px); align-items: center; justify-content: center; overflow-y: auto; padding: 20px; box-sizing: border-box; }
.tuc-modal.is-open { display: flex !important; }
/* Lock page scroll when modal is open */
body.modal-open { overflow: hidden !important; }
.tuc-modal-content { background: var(--white); padding: 45px; border-radius: 28px; max-width: 960px; width: 95%; position: relative; box-shadow: 0 25px 70px rgba(0,0,0,.3); margin: auto; }
.tuc-close { position: absolute; right: 22px; top: 16px; color: var(--navy); font-size: 28px; font-weight: 700; cursor: pointer; line-height: 1; opacity: .7; transition: var(--transition); }
.tuc-close:hover { opacity: 1; transform: scale(1.2); }
.tuc-modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.modal-divider { border-left: 1px solid #eee; padding-left: 40px; }

/* Modal Form Inputs */
.modal-input { width: 100%; padding: 13px 15px; border: 2px solid #eee; border-radius: 10px; font-family: inherit; font-size: .95rem; margin-bottom: 10px; box-sizing: border-box; outline: none; transition: var(--transition); }
.modal-input:focus { border-color: var(--gold); }

/* ── PROCESS STEPS ── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 40px; max-width: 1100px; margin: 0 auto; }
.process-item { text-align: center; }
.process-icon { width: 80px; height: 80px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 3px solid var(--gold); }
.process-icon i { font-size: 1.8rem; color: var(--gold); }
.process-item h4 { font-weight: 800; font-size: 1rem; margin: 0 0 8px; }
.process-item p { font-size: .85rem; opacity: .65; margin: 0; }

/* ── INFO CARD ── */
.info-card { background: var(--light-gray); padding: 35px; border-radius: 25px; margin-bottom: 50px; border-left: 6px solid var(--gold); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
.info-item { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .9rem; }
.info-item .icon-circle { color: var(--gold); font-size: 1rem; background: var(--navy); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 50px; }
.gallery-grid .gallery-img-main { grid-column: span 2; }
.gallery-img { width: 100%; height: 200px; object-fit: cover; border-radius: 15px; transition: var(--transition); display: block; }
.gallery-img:hover { transform: scale(1.02); box-shadow: 0 10px 30px rgba(0,43,78,.2); }
.gallery-img-main { height: 320px; }

/* ── HIGHLIGHT BOX ── */
.highlight-box { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: white; padding: 32px 38px; border-radius: 22px; margin: 30px 0; position: relative; overflow: hidden; }
.highlight-box::before { content: '"'; font-size: 9rem; font-weight: 800; color: var(--gold); opacity: .12; position: absolute; top: -25px; left: 18px; line-height: 1; }
.highlight-box p { margin: 0; font-size: 1rem; font-weight: 600; line-height: 1.75; position: relative; z-index: 1; }

/* ── PROGRAM CARDS ── */
.program-card { display: flex; gap: 18px; background: white; border: 1px solid #eee; padding: 20px; border-radius: 18px; margin-bottom: 14px; transition: var(--transition); align-items: center; }
.program-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,43,78,.1); border-color: var(--gold); }
.program-icon { width: 58px; height: 58px; background: var(--light-gray); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.6rem; }
.program-info h4 { margin: 0 0 5px; font-size: .95rem; font-weight: 700; }
.program-info p { margin: 0; font-size: .82rem; opacity: .65; font-weight: 500; }

/* ── TIP LIST ── */
.tip-list { list-style: none; padding: 0; margin: 0; }
.tip-list li { display: flex; align-items: flex-start; gap: 13px; padding: 13px 0; border-bottom: 1px solid #eee; font-size: .9rem; font-weight: 600; }
.tip-list li:last-child { border-bottom: none; }
.tip-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* ── SIDEBAR (Deal) ── */
.deal-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 22px; }
.booking-box { background: white; padding: 38px 30px; border-radius: 28px; text-align: center; box-shadow: 0 20px 50px rgba(0,43,78,.12); border: 3px solid var(--gold); }
.booking-box-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: .5; margin-bottom: 4px; }
.deal-price { font-size: 2.7rem; font-weight: 800; color: var(--navy); display: block; line-height: 1; margin: 5px 0 4px; }
.deal-price-note { font-size: .78rem; opacity: .5; font-weight: 600; margin-bottom: 24px; display: block; }
.btn-booking { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 17px 22px; border-radius: 14px; text-decoration: none; font-weight: 800; font-size: .95rem; transition: var(--transition); text-transform: uppercase; border: none; cursor: pointer; width: 100%; box-sizing: border-box; font-family: inherit; margin-bottom: 10px; }
.btn-booking:last-of-type { margin-bottom: 0; }
.btn-plane { background: var(--navy); color: white; }
.btn-plane:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,43,78,.3); }
.btn-hotel { background: var(--green); color: white; }
.btn-hotel:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,158,74,.35); }
.booking-disclaimer { font-size: .72rem; opacity: .48; margin-top: 16px; line-height: 1.55; font-weight: 500; }
.vip-sidebar-box { background: var(--navy); color: white; padding: 28px; border-radius: 22px; text-align: center; }
.vip-sidebar-box h3 { color: var(--gold); font-size: 1rem; margin: 0 0 8px; font-weight: 800; text-transform: uppercase; }
.vip-sidebar-box p { font-size: .82rem; opacity: .82; margin: 0 0 18px; line-height: 1.6; }
.btn-vip { display: block; background: var(--gold); color: var(--navy); padding: 13px; border-radius: 12px; font-weight: 800; font-size: .88rem; text-decoration: none; text-transform: uppercase; transition: var(--transition); cursor: pointer; border: none; width: 100%; box-sizing: border-box; font-family: inherit; }
.btn-vip:hover { background: var(--gold-hover); transform: translateY(-2px); }
.trust-box { background: var(--light-gray); padding: 22px 28px; border-radius: 18px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: .83rem; font-weight: 600; padding: 7px 0; }
.trust-item i { color: var(--gold); width: 18px; text-align: center; }

/* ── FORM ── */
.form-container { max-width: 900px; margin: 0 auto; background: white; color: var(--navy); padding: 55px 60px; border-radius: 30px; box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 30px; }
.full-width { grid-column: span 2; }
.form-label { display: block; font-weight: 700; margin-bottom: 8px; font-size: .9rem; }
.form-input { width: 100%; padding: 14px 16px; border: 2px solid #eee; border-radius: 12px; font-family: inherit; font-size: .95rem; outline: none; transition: var(--transition); box-sizing: border-box; }
.form-input:focus { border-color: var(--gold); }
.child-logic-box { display: none; grid-column: span 2; background: var(--light-gray); padding: 25px; border-radius: 15px; }
.btn-submit { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 22px; border-radius: 14px; font-size: 1.15rem; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: var(--transition); margin-top: 30px; font-family: inherit; }
.btn-submit:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,204,0,.4); }

/* ── VIP BANNER ── */
.vip-banner { background: var(--white); border: 4px solid var(--gold); border-radius: 28px; max-width: 1000px; margin: 0 auto 80px; padding: 55px 35px; text-align: center; box-shadow: 0 25px 55px rgba(0,0,0,.08); }
.vip-banner h2 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; margin: 0 0 12px; }
.vip-banner p { font-size: 1.05rem; opacity: .7; margin: 0 0 30px; }

/* ── FOOTER ── */
footer { background: var(--navy); color: white; padding: 80px 5% 20px; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; max-width: 1300px; margin: 0 auto; }
.footer-col h4 { color: var(--gold); margin-bottom: 25px; text-transform: uppercase; font-weight: 800; letter-spacing: .5px; }
.footer-col p { font-size: .88rem; opacity: .78; line-height: 1.85; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: white; text-decoration: none; font-size: .88rem; transition: var(--transition); opacity: .75; }
.footer-col ul li a:hover { color: var(--gold); opacity: 1; padding-left: 5px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a { color: var(--navy); background: var(--gold); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: .9rem; }
.footer-socials a:hover { transform: scale(1.18); background: white; }
.footer-bottom { margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; font-size: .78rem; opacity: .58; flex-wrap: wrap; gap: 16px; }

/* ── FLOATING WHATSAPP ── */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 2500; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,.5); text-decoration: none; transition: var(--transition); }
.whatsapp-float i { color: white; font-size: 1.6rem; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 28px rgba(37,211,102,.6); }

/* ── COOKIE BANNER ── */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--navy-dark); color: white; padding: 18px 5%; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; box-shadow: 0 -4px 20px rgba(0,0,0,.3); border-top: 3px solid var(--gold); }
#cookie-banner p { margin: 0; font-size: .85rem; opacity: .88; line-height: 1.6; flex: 1; min-width: 250px; }
#cookie-banner a { color: var(--gold); text-decoration: none; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--gold); color: var(--navy); border: none; padding: 10px 24px; border-radius: 8px; font-weight: 800; font-size: .82rem; cursor: pointer; font-family: inherit; transition: var(--transition); }
.cookie-accept:hover { background: var(--gold-hover); }
.cookie-decline { background: transparent; color: white; border: 1px solid rgba(255,255,255,.4); padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: .82rem; cursor: pointer; font-family: inherit; transition: var(--transition); }
.cookie-decline:hover { border-color: white; }

/* ── HERO (Page) ── */
.page-hero { color: white; padding: 100px 5% 80px; text-align: center; position: relative; }
.page-hero h1 { font-size: clamp(2.2rem,6vw,4rem); font-weight: 800; text-transform: uppercase; margin: 12px 0; letter-spacing: -1px; }
.page-hero p { font-size: 1.12rem; opacity: .9; font-weight: 500; margin: 0; }
.page-hero-tag { display: inline-block; background: var(--gold); color: var(--navy); padding: 7px 24px; border-radius: 50px; font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }

/* ── CARD ACTION ROW (Wishlist + Share) ── */
.card-actions { display: flex; gap: 8px; margin-top: 10px; }

/* Wishlist Button */
.btn-wishlist {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    flex: 1; padding: 10px 14px; border-radius: 10px;
    border: 1.5px solid #eee; background: white; cursor: pointer;
    font-family: inherit; font-size: .78rem; font-weight: 700;
    color: var(--navy); transition: var(--transition);
}
.btn-wishlist:hover { border-color: #ff4d6d; color: #ff4d6d; background: #fff5f7; }
.btn-wishlist.saved { border-color: #ff4d6d; color: #ff4d6d; background: #fff5f7; }
.btn-wishlist.saved .wish-heart { animation: wishlist-pop .35s ease; }
.btn-wishlist .wish-heart { font-size: .9rem; display: inline-block; }

/* Share Button */
.btn-share {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    flex: 1; padding: 10px 14px; border-radius: 10px;
    border: 1.5px solid #eee; background: white; cursor: pointer;
    font-family: inherit; font-size: .78rem; font-weight: 700;
    color: var(--navy); transition: var(--transition); position: relative;
}
.btn-share:hover { border-color: var(--gold); color: var(--navy); background: #fffbe6; }

/* Share Tooltip / Dropdown */
.share-dropdown {
    display: none; position: absolute; bottom: calc(100% + 12px); right: 0;
    background: white; border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,43,78,.2); border: 1px solid #eee;
    padding: 8px; z-index: 500; min-width: 210px; white-space: nowrap;
}
.share-dropdown::after {
    content: ''; position: absolute; top: 100%; right: 18px;
    border: 7px solid transparent; border-top-color: white;
}
.share-dropdown::before {
    content: ''; position: absolute; top: 100%; right: 17px;
    border: 8px solid transparent; border-top-color: #eee;
}
.share-dropdown.open { display: block; animation: tuc-page-in .18s ease both; }
.share-option {
    display: flex; align-items: center; gap: 11px; padding: 10px 12px;
    border-radius: 10px; cursor: pointer; font-size: .83rem; font-weight: 700;
    color: var(--navy); text-decoration: none; transition: .15s;
    border: none; background: none; font-family: inherit; width: 100%; text-align: left;
}
.share-option:hover { background: var(--light-gray); }
.share-option i { width: 20px; text-align: center; font-size: 1rem; flex-shrink: 0; }
.share-option .ico-fb       { color: #1877F2; }
.share-option .ico-wa       { color: #25D366; }
.share-option .ico-messenger{ color: #0084FF; }
.share-option .ico-copy     { color: var(--gold); }

/* Copy success flash */
.copy-success {
    display: none; position: absolute; bottom: calc(100% + 10px); left: 50%;
    transform: translateX(-50%); background: var(--green); color: white;
    padding: 8px 16px; border-radius: 50px; font-size: .78rem; font-weight: 700;
    white-space: nowrap; pointer-events: none;
}
.copy-success.show { display: block; animation: tuc-page-in .2s ease both; }

/* ── NEWSLETTER SECTION ── */
.newsletter-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 80px 5%; text-align: center; border-top: 4px solid var(--gold);
}
.newsletter-inner { max-width: 640px; margin: 0 auto; }
.newsletter-section .nl-icon {
    font-size: 2.8rem; display: block; margin-bottom: 18px;
}
.newsletter-section h2 {
    color: white; font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 800;
    text-transform: uppercase; margin: 0 0 12px; letter-spacing: -.5px;
}
.newsletter-section p {
    color: rgba(255,255,255,.78); font-size: .98rem; margin: 0 0 32px; font-weight: 500;
}
.nl-form { display: flex; gap: 0; max-width: 520px; margin: 0 auto 16px; }
.nl-input {
    flex: 1; padding: 16px 22px; border-radius: 50px 0 0 50px; border: none;
    font-family: inherit; font-size: .95rem; outline: none; color: var(--navy); font-weight: 600;
}
.nl-btn {
    padding: 16px 28px; background: var(--gold); color: var(--navy);
    border: none; border-radius: 0 50px 50px 0; font-family: inherit;
    font-size: .9rem; font-weight: 800; cursor: pointer; transition: var(--transition);
    white-space: nowrap;
}
.nl-btn:hover { background: var(--gold-hover); }
.nl-note { color: rgba(255,255,255,.45); font-size: .75rem; font-weight: 500; }
.nl-success { display: none; color: var(--gold); font-weight: 800; font-size: 1.05rem; margin-top: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .nav-links { display: none; } .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .hamburger { display: flex; } }

@media (max-width: 850px) {
    .header-search { display: none; }
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tuc-modal-grid { grid-template-columns: 1fr; }
    .modal-divider { border-left: none; padding-left: 0; border-top: 1px solid #eee; padding-top: 30px; }
    .info-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid .gallery-img-main { grid-column: span 1; }
    .deal-sidebar { position: static; }
    .form-container { padding: 35px 25px; }
    /* Newsletter form stacks on tablet */
    .nl-form { flex-direction: column; gap: 10px; }
    .nl-input { border-radius: 50px; }
    .nl-btn { border-radius: 50px; }
}

@media (max-width: 768px) {
    /* On mobile: auth-links hidden from header top row — hamburger handles everything */
    .auth-links { display: none !important; }
}

@media (max-width: 600px) {
    /* Header shrink */
    .logo { font-size: 1.15rem; letter-spacing: -.5px; }
    .btn-auth { font-size: .72rem; padding: 7px 12px; }
    header { padding: 0.7rem 4%; gap: 12px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .vip-banner { padding: 35px 20px; }

    /* WhatsApp float */
    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }

    /* Cookie banner */
    #cookie-banner { flex-direction: column; text-align: center; }
    .cookie-btns { justify-content: center; }

    /* Hero sections */
    .page-hero { padding: 60px 5% 50px; }
    .page-hero p { font-size: .95rem; }

    /* Cards grid — single column */
    .tuc-cards-grid { grid-template-columns: 1fr !important; }

    /* Process steps */
    .process-grid { gap: 24px; }

    /* Form container */
    .form-container { padding: 28px 18px; border-radius: 18px; }

    /* Section padding */
    section { padding-left: 4% !important; padding-right: 4% !important; }
}

@media (max-width: 400px) {
    /* Extra small phones */
    .logo { font-size: 1rem; }
    .btn-auth { font-size: .68rem; padding: 6px 10px; }
    .auth-links { gap: 6px; }
    .tuc-card-title { font-size: 1.1rem; }
    .deal-price { font-size: 2.2rem; }
}
