/* ===== RESET & VARIABLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #0a1628;
    --navy-light: #111d33;
    --gold: #c9a84c;
    --gold-light: #e0c872;
    --white: #ffffff;
    --gray: #a0a8b4;
    --light-bg: #f5f3ef;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s, padding 0.3s;
}

nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 60px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s;
}

nav.scrolled .logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO (Search-first) ===== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 24px 50px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 700px;
    padding: 0 24px;
    margin-top: 30px;
}

.hero-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--white);
}

.hero-title em {
    color: var(--gold-light);
    font-style: italic;
}

/* ===== SEARCH BAR ===== */
.search-container { width: 100%; max-width: 600px; margin: 0 auto 24px; }

.search-bar {
    display: flex;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-bar:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.15);
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 14px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--white);
}

.search-bar input::placeholder { color: var(--gray); }

.search-bar button {
    background: var(--gold);
    border: none;
    padding: 14px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: background 0.3s;
    white-space: nowrap;
}

.search-bar button:hover { background: var(--gold-light); }
.search-bar button svg { width: 16px; height: 16px; }

/* ===== QUICK PILLS ===== */
.quick-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.pill-destination {
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
}

.pill-destination:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.pill-gear {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--gray);
}

.pill-gear:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

/* ===== HERO TABS ===== */
.hero-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 4px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    background: none;
    color: var(--gray);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
}

.hero-tab.active {
    background: var(--gold);
    color: var(--navy);
}

.hero-tab:not(.active):hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.hero-tab svg { flex-shrink: 0; }

.hero-panel {
    display: none;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.hero-panel.active { display: block; }

/* ===== DEALS ===== */
.deals-filter-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.deals-cat-btn {
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: var(--gray);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s;
}

.deals-cat-btn.active,
.deals-cat-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.deals-list {
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

.deals-list::-webkit-scrollbar { width: 4px; }
.deals-list::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

.deal-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    margin-bottom: 8px;
    transition: background 0.3s, border-color 0.3s;
}

.deal-row:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,168,76,0.2);
}

.deal-brand {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    min-width: 90px;
    white-space: nowrap;
}

.deal-info {
    flex: 1;
    min-width: 0;
}

.deal-desc {
    font-size: 13px;
    color: var(--gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deal-discount-badge {
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.deal-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Inter', monospace;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.deal-copy-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    border-style: solid;
}

.deal-copy-label {
    font-size: 10px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deal-get-btn {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    transition: background 0.3s;
    white-space: nowrap;
    text-decoration: none;
}

.deal-get-btn:hover { background: var(--gold-light); }

.deal-verified {
    color: #10b981;
    font-size: 14px;
    font-weight: 700;
}

.deals-view-all {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.deals-view-all:hover { opacity: 0.7; }

/* ===== SECTIONS ===== */
.section {
    padding: 80px 60px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.gear-section {
    background: var(--navy-light);
}

.gear-card-img-wrapper {
    overflow: hidden;
}

.gear-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s;
}

.gadget-card:hover .gear-card-img {
    transform: scale(1.05);
}

.experiences-section {
    background: var(--navy-light);
    padding: 80px 0;
}

.experiences-section .section-header {
    padding: 0 60px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--gray);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ===== DESTINATIONS ===== */
.destinations {
    padding: 120px 60px;
    background: var(--navy);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 28px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background: transparent;
    color: var(--gray);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.filter-tab:hover, .filter-tab.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.dest-card {
    background: var(--navy-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.dest-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.dest-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.dest-card-img {
    height: 240px;
    overflow: hidden;
}

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

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

.dest-card-body {
    padding: 24px;
}

.dest-location {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.dest-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--white);
}

.dest-meta {
    font-size: 13px;
    color: var(--gray);
    font-weight: 300;
}

/* ===== EXPERIENCES ===== */
.experiences {
    padding: 120px 0;
    background: var(--navy-light);
}

.experiences .section-header {
    padding: 0 60px;
}

.exp-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 0 60px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.exp-scroll::-webkit-scrollbar { display: none; }

.exp-card {
    flex: 0 0 380px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    cursor: pointer;
}

.exp-card a {
    display: block;
    height: 100%;
}

.exp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.exp-card:hover img {
    transform: scale(1.05);
}

.exp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 28px 28px;
    background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 100%);
}

.exp-type {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.exp-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.exp-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 300;
}

/* ===== ABOUT ===== */
.about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.about-image {
    background: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?w=900&q=80') center/cover;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, transparent 70%, var(--navy) 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--navy);
}

.about-content .section-tag {
    text-align: left;
    margin-bottom: 16px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.stats-row {
    display: flex;
    gap: 48px;
    margin-top: 32px;
}

.stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

/* ===== TECH GADGETS ===== */
.gadgets {
    padding: 120px 60px;
    background: var(--navy);
}

.gadget-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.gadget-card {
    background: var(--navy-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
}

.gadget-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.gadget-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.3);
}

.gadget-img {
    height: 220px;
    background: linear-gradient(135deg, #1a2a4a, #0f1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
}

.gadget-info {
    padding: 24px;
}

.gadget-category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.gadget-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.gadget-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 300;
}

.gadget-rating {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
}

/* ===== LATEST POSTS ===== */
.latest,
.blog-archive {
    padding: 120px 60px;
    background: var(--navy-light);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.post-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
    cursor: pointer;
}

.post-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.post-card:hover { transform: translateY(-4px); }

.post-img {
    height: 240px;
    overflow: hidden;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.post-card:hover .post-img img {
    transform: scale(1.06);
}

.post-content {
    padding: 28px;
}

.post-date {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.post-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 300;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 100px 60px;
    text-align: center;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(201,168,76,0.05) 0%, transparent 50%);
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 16px;
}

.newsletter p {
    color: var(--gray);
    margin-bottom: 36px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.1);
    border-right: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 0 4px 4px 0;
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.newsletter-note {
    font-size: 12px !important;
    color: var(--gray) !important;
    opacity: 0.6;
    margin-top: 12px !important;
}

/* ===== FOOTER ===== */
footer {
    padding: 80px 60px 40px;
    background: var(--navy-light);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand .logo img {
    height: 60px;
    width: auto;
}

.footer-brand p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--gray);
    font-size: 13px;
    font-weight: 300;
}

/* ===== SINGLE POST ===== */
.single-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.single-hero-overlay {
    width: 100%;
    padding: 80px 60px 60px;
    background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
}

.single-hero-simple {
    padding: 160px 60px 60px;
    text-align: center;
    background: var(--navy);
}

.single-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 800px;
}

.single-meta {
    display: flex;
    gap: 12px;
    color: var(--gray);
    font-size: 14px;
    font-weight: 300;
}

.single-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--gray);
    font-weight: 300;
}

.single-content h2,
.single-content h3,
.single-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin: 40px 0 16px;
}

.single-content h2 { font-size: 32px; }
.single-content h3 { font-size: 26px; }

.single-content p {
    margin-bottom: 24px;
}

.single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.single-content a {
    color: var(--gold);
    text-decoration: underline;
}

.single-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--navy-light);
    font-style: italic;
    color: var(--white);
}

.single-content ul,
.single-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.single-content li {
    margin-bottom: 8px;
}

.single-tags {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px 40px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.single-nav {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.single-nav a {
    color: var(--gold);
    font-size: 14px;
    transition: opacity 0.3s;
}

.single-nav a:hover { opacity: 0.7; }

/* ===== PAGINATION ===== */
.pagination {
    text-align: center;
    padding: 60px 0 0;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    padding: 10px 18px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gray);
    font-size: 14px;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination .current {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ===== DEALS PAGE ===== */
.deals-hero {
    padding: 160px 60px 60px;
    text-align: center;
    background: var(--navy);
}

.deals-page-section {
    padding: 40px 60px 80px;
}

.deals-page-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.deals-tab {
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: var(--gray);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.deals-tab.active, .deals-tab:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.deals-full-list .deal-row {
    max-width: 100%;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    padding: 160px 60px 80px;
    text-align: center;
    background: var(--navy);
}

.about-hero-content .single-title {
    max-width: 100%;
}

.about-main {
    padding: 80px 60px;
    background: var(--navy-light);
}

.about-main-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.about-photo img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid rgba(201,168,76,0.2);
}

.about-bio h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-bio p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}

.about-stats-section {
    padding: 60px;
    background: var(--navy);
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
}

.about-stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 8px;
}

.about-stat span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    padding: 160px 60px 80px;
    text-align: center;
    background: var(--navy);
}

.contact-main {
    padding: 80px 60px;
    background: var(--navy-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    padding: 28px;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.contact-card:hover {
    border-color: rgba(201,168,76,0.25);
}

.contact-icon {
    color: var(--gold);
    margin-bottom: 12px;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--gray);
    font-size: 15px;
    font-weight: 300;
}

.contact-card a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-card a:hover { opacity: 0.7; }

.contact-social {
    margin-top: 20px;
}

.contact-social h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 16px;
}

.contact-form-wrap {
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 40px;
}

.contact-form-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 24px;
}

/* Style Contact Form 7 inputs */
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    border-color: var(--gold);
}

.contact-form-wrap input[type="submit"] {
    padding: 14px 40px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    width: auto;
}

.contact-form-wrap input[type="submit"]:hover {
    background: var(--gold-light);
}

.contact-form-wrap label {
    color: var(--gray);
    font-size: 13px;
}

.contact-form-wrap input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--gold);
}

.contact-map {
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.8) contrast(1.1);
}

/* ===== DEALS PAGE V2 ===== */
.deals-hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.deals-stat {
    text-align: center;
}

.deals-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.deals-stat-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deals-updated {
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray);
    opacity: 0.6;
}

/* Sticky Nav */
.deals-sticky-nav {
    position: sticky;
    top: 68px;
    z-index: 99;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 60px;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    margin: 0 -60px 32px;
    flex-wrap: wrap;
}

.deals-nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.deals-nav-item:hover,
.deals-nav-item.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.deals-nav-item:hover svg,
.deals-nav-item.active svg {
    stroke: var(--navy);
}

.deals-nav-icon {
    display: flex;
    align-items: center;
}

.deals-nav-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray);
    transition: stroke 0.3s;
}

.deals-nav-count {
    font-size: 10px;
    font-weight: 700;
    background: rgba(201,168,76,0.2);
    color: var(--gold);
    padding: 2px 6px;
    border-radius: 10px;
}

.deals-nav-item.active .deals-nav-count,
.deals-nav-item:hover .deals-nav-count {
    background: rgba(10,22,40,0.2);
    color: var(--navy);
}

/* Category Sections */
.deals-category-section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.deals-category-section:last-child {
    border-bottom: none;
}

.deals-category-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.deals-cat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.1);
    border-radius: 12px;
}

.deals-cat-icon svg {
    stroke: var(--gold);
}

.deals-cat-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--white);
    margin: 0 0 4px;
}

.deals-cat-count {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    background: rgba(201,168,76,0.12);
    padding: 2px 10px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

.deals-cat-info p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* City Sub-groups */
.deals-city-group {
    margin-bottom: 28px;
}

.deals-city-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
}

/* Deals Grid */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

/* Deal Card */
.deal-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.deal-card:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(255,255,255,0.09);
    transform: translateY(-2px);
}

.deal-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.deal-card-brand {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.deal-card-verified {
    color: #10b981;
    font-size: 14px;
    font-weight: 700;
}

.deal-card-discount {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.deal-card-body {
    flex: 1;
    margin-bottom: 16px;
}

.deal-card-body p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.deal-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.deal-card-expiry {
    font-size: 11px;
    color: var(--gray);
    opacity: 0.7;
}

.deal-card-footer .deal-copy-btn {
    margin-left: auto;
}

.deal-card-footer .deal-get-btn {
    margin-left: auto;
}

/* ===== DEALS LANDING PAGE ===== */

.deals-landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.deals-landing-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.deals-landing-card:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(255,255,255,0.09);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.08);
}

.deals-landing-card-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.deals-landing-card-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    margin: 0 0 6px;
}

.deals-landing-card-info p {
    font-size: 13px;
    color: var(--gray);
    margin: 6px 0 0;
    line-height: 1.5;
}

.deals-landing-card-arrow {
    position: absolute;
    top: 28px;
    right: 28px;
    color: var(--gray);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

.deals-landing-card:hover .deals-landing-card-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--gold);
}

/* Logo Strips */
.deals-logo-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.deals-brand-pill {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s;
}

.deals-landing-card:hover .deals-brand-pill {
    color: var(--gold);
    border-color: rgba(201,168,76,0.25);
    background: rgba(201,168,76,0.08);
}

/* Provider header on category pages */
.deals-provider-header {
    text-align: center;
    margin-bottom: 12px;
}

.deals-provider-header .deals-logo-strip {
    justify-content: center;
    gap: 20px;
    padding-top: 0;
    border-top: none;
}

.deals-provider-header .deals-brand-pill {
    font-size: 13px;
    padding: 6px 16px;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

.deals-provider-header .deals-brand-pill:hover {
    color: var(--gold);
    border-color: rgba(201,168,76,0.3);
}

/* Breadcrumb */
.deals-breadcrumb {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

.deals-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

.deals-breadcrumb a:hover {
    opacity: 0.8;
}

.deals-breadcrumb-sep {
    margin: 0 10px;
    opacity: 0.4;
}

/* Back link */
.deals-back-link {
    text-align: center;
    padding: 40px 0;
}

.deals-back-link a {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.deals-back-link a:hover {
    opacity: 0.8;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .dest-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .dest-card:first-child { grid-row: auto; }
    .gadget-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    nav { padding: 16px 24px; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 18px; }
    .hero { min-height: 380px; }
    .hero-title { font-size: 30px; }
    .search-bar input { padding: 12px 18px; font-size: 14px; }
    .search-bar button { padding: 12px 18px; font-size: 13px; }
    .search-bar button span { display: none; }
    .section, .destinations, .gadgets, .latest, .blog-archive, .newsletter { padding: 60px 24px; }
    .experiences-section .section-header { padding: 0 24px; }
    .experiences .section-header { padding: 0 24px; }
    .exp-scroll { padding: 0 24px 20px; }
    .dest-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .dest-card:first-child { grid-row: auto; }
    .gadget-grid { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: 1fr; }
    .about-strip { grid-template-columns: 1fr; }
    .about-image { height: 300px; }
    .about-content { padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .section-title { font-size: 36px; }
    .single-title { font-size: 32px; }
    .single-hero-overlay,
    .single-hero-simple { padding: 120px 24px 40px; }
    .single-content { padding: 40px 24px; }
    .single-tags { padding: 0 24px 40px; }
    .single-nav { padding: 40px 24px; }
    .single-meta { flex-wrap: wrap; }
    .deals-hero { padding: 120px 24px 40px; }
    .deals-page-section { padding: 20px 16px 60px; }
    .deals-sticky-nav { top: 56px; gap: 6px; padding: 10px 16px; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
    .deals-nav-item { padding: 6px 12px; font-size: 12px; }
    .deals-nav-label { display: none; }
    .deals-category-header { flex-direction: column; gap: 8px; }
    .deals-cat-icon { width: 36px; height: 36px; }
    .deals-cat-info h2 { font-size: 20px; }
    .deals-grid { grid-template-columns: 1fr; }
    .deals-landing-grid { grid-template-columns: 1fr; }
    .deals-landing-card { padding: 20px; }
    .deals-landing-card-info h2 { font-size: 18px; }
    .deals-landing-card-arrow { display: none; }
    .deals-provider-header .deals-logo-strip { gap: 12px; }
    .deals-hero-stats { gap: 16px; }
    .deals-stat-num { font-size: 22px; }
    .about-hero, .contact-hero { padding: 120px 24px 60px; }
    .about-main { padding: 40px 24px; }
    .about-main-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .about-photo img { max-width: 200px; margin: 0 auto; }
    .about-stats-section { padding: 40px 24px; }
    .about-stats { gap: 32px; }
    .contact-main { padding: 40px 24px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .contact-map { height: 280px; }
}
