/* --- RESET & BASIC CONFIG --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Fixed Container Layout */
.custom-container {
    width: 100%;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

/* Typography Overrides */
h1, h2, h3, .logo, .tagline, .sub-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #b3b3b3;
    line-height: 1.6;
}

/* --- HEADER / NAVBAR --- */
.custom-header {
    width: 100%;
    padding: 24px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    letter-spacing: 2px;
    color: #e5b842;
    font-weight: 800;
}

.nav-links a {
    color: #8c8c8c;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 20px;
    transition: color 0.3s ease;
}

.nav-links a.active, .nav-links a:hover {
    color: #ffffff;
}

.btn-download-nav {
    background-color: transparent;
    color: #e5b842;
    border: 1px solid #e5b842;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download-nav:hover {
    background-color: #e5b842;
    color: #000000;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 950px;
    display: flex;
    align-items: center;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

.hero-flex {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    width: 52%;
}

.hero-mockup {
    width: 42%;
    display: flex;
    justify-content: flex-end;
}

.hero-mockup img {
    max-width: 100%;
    height: auto;
    display: block;
}

.tagline {
    color: #e5b842;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-highlight {
    color: #e5b842;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-store {
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease;
}

.btn-store i {
    font-size: 24px;
}

.btn-store span {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
}

.btn-store span small {
    font-size: 10px;
    font-weight: 400;
    color: #555;
}

.btn-store.btn-yellow {
    background-color: #e5b842;
}

.btn-store:hover {
    transform: translateY(-2px);
}

/* --- FEATURES SECTION --- */
.features-section {
    padding: 120px 0;
    background-color: #0f0f0f;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 70px;
}

.section-title-wrapper .sub-title {
    color: #e5b842;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title-wrapper h2 {
    font-size: 36px;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: #161616;
    border: 1px solid #222222;
    border-radius: 16px;
    padding: 40px 32px;
    transition: border-color 0.3s ease;
}

.features-grid .feature-card:nth-child(1),
.features-grid .feature-card:nth-child(2) {
    grid-column: span 3;
}

.features-grid .feature-card:nth-child(3),
.features-grid .feature-card:nth-child(4),
.features-grid .feature-card:nth-child(5) {
    grid-column: span 2;
}

.feature-card:hover {
    border-color: #e5b842;
}

.feature-icon {
    color: #e5b842;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.feature-card p {
    font-size: 14px;
    margin-bottom: 0;
}

/* --- JOURNEY SECTION --- */
.journey-section {
    padding: 100px 0;
    background-color: #0b0b0b;
}

.centered-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step-item {
    width: 22%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #e5b842;
    color: #000000;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.step-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 13px;
}

/* --- TOURS SECTION --- */
.tours-section {
    padding: 110px 0;
    background-color: #0f0f0f;
}

.section-title-wrapper.left-align {
    text-align: left;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tour-card {
    height: 420px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #222222;
}

.tour-badge {
    align-self: flex-start;
    background-color: rgba(229, 184, 66, 0.2);
    border: 1px solid #e5b842;
    color: #e5b842;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
}

.tour-info h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.tour-info p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #cccccc;
}

.btn-tour-action {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.btn-dark-blur {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-tour-action:hover {
    opacity: 0.9;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 110px 0;
    background-color: #0b0b0b;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: #111111;
    border: 1px solid #222222;
    border-radius: 20px;
    padding: 36px;
}

.stars {
    color: #e5b842;
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 15px;
    color: #dddddd;
    margin-bottom: 30px;
    font-style: italic;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    background-color: #222222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #e5b842;
}

.user-meta h4 {
    font-size: 15px;
    margin-bottom: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.user-meta span {
    font-size: 12px;
    color: #777777;
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 30px 0 50px 0;
    background-color: #0b0b0b;
}

.cta-box {
    background-color: #111111;
    border: 1px solid #222222;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 15px;
    max-width: 540px;
    margin: 0 auto 36px auto;
}

/* --- FOOTER SECTION --- */
.custom-footer {
    background-color: #070707;
    padding: 40px 0 30px 0;
    border-top: 1px solid #161616;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 14px;
    max-width: 320px;
    margin-top: 16px;
}

.footer-links h4, .footer-socials h4 {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777777;
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: #111111;
    border: 1px solid #222222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background-color: #e5b842;
    color: #000000;
    border-color: #e5b842;
}

.footer-bottom {
    border-top: 1px solid #161616;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 0;
}

.footer-legal a {
    color: #777777;
    text-decoration: none;
    font-size: 13px;
    margin-left: 24px;
}

.footer-legal a:hover {
    color: #ffffff;
}
/* --- CUSTOM BOOTSTRAP NAVBAR OVERRIDES --- */
.custom-header {
    width: 100%;
    padding: 24px 0 !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: transparent !important;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    letter-spacing: 2px;
    color: #e5b842 !important;
    font-weight: 800;
    text-decoration: none;
}

/* Desktop Navigation Alignment */
.offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
}

.nav-links {
    display: flex;
    justify-content: center;
}

.nav-links a.nav-link {
    color: #8c8c8c !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 20px;
    padding: 0;
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-links a.nav-link.active, 
.nav-links a.nav-link:hover {
    color: #C6A75E !important;
}

.btn-download-nav {
    background-color: transparent;
    color: #e5b842;
    border: 1px solid #e5b842;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-download-nav:hover {
    background-color: #e5b842;
    color: #000000;
}


/* --- ABOUT PAGE CUSTOM STYLES --- */
.about-hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 80px;
    min-height: 680px;
    display: flex;
    align-items: center;
    text-align: center;
}

.about-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-tagline {
    color: #e5b842;
    font-size: 11px;
    letter-spacing: 3px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-tagline .dot {
    width: 6px;
    height: 6px;
    background-color: #e5b842;
    border-radius: 50%;
}

.about-hero-container h1 {
    font-size: 54px;
    line-height: 1.15;
    max-width: 800px;
    margin-bottom: 24px;
}

.about-hero-container p {
    font-size: 16px;
    max-width: 580px;
    margin-bottom: 40px;
    color: #cccccc;
}

.scroll-indicator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* --- STATS SECTION --- */
.stats-section {
    padding: 80px 0;
    background-color: #0b0b0b;
    border-top: 1px solid #161616;
    border-bottom: 1px solid #161616;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.stat-box p {
    font-size: 11px;
    letter-spacing: 2px;
    color: #777777;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- STORY & MISSION GRID --- */
.story-mission-section {
    padding: 100px 0;
    background-color: #0b0b0b;
}

.story-grid-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
}

.story-large-card {
    grid-row: span 2;
    height: 520px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    padding: 48px;
    display: flex;
    align-items: flex-end;
    border: 1px solid #222222;
}

.story-card-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #ffffff;
}

.story-card-content p {
    font-size: 15px;
    color: #dddddd;
    line-height: 1.65;
}

.story-small-card {
    background-color: #111111;
    border: 1px solid #222222;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-small-card.gold-border {
    border-color: rgba(229, 184, 66, 0.25);
}

.story-icon-badge {
    width: 44px;
    height: 44px;
    background-color: rgba(229, 184, 66, 0.1);
    color: #e5b842;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.story-small-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.story-small-card p {
    font-size: 14px;
    color: #aaaaaa;
    margin-bottom: 0;
}

.story-quote-card {
    background-color: #141310;
    border: 1px solid rgba(229, 184, 66, 0.15);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.quote-mark {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 80px;
    color: rgba(229, 184, 66, 0.08);
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.story-quote-card blockquote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #e5b842;
    line-height: 1.5;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.story-quote-card cite {
    font-style: normal;
    font-size: 11px;
    letter-spacing: 2px;
    color: #888888;
    font-weight: 600;
}

/* --- TEAM SECTION --- */
.team-section {
    padding: 100px 0 120px 0;
    background-color: #0f0f0f;
}

.team-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    border-bottom: 1px solid #222222;
    padding-bottom: 24px;
}

.team-sub {
    color: #e5b842;
    font-size: 11px;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.team-title-left h2 {
    font-size: 36px;
    margin-bottom: 0;
}

.team-desc-right p {
    font-size: 15px;
    margin-bottom: 0;
    max-width: 340px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background-color: transparent;
}

.team-img-wrapper {
    width: 100%;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #222222;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.04);
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 11px;
    letter-spacing: 1px;
    color: #e5b842;
    font-weight: 600;
}

/* --- CONTACT PAGE CUSTOM STYLES --- */
.contact-hero-section {
    position: relative;
    padding-top: 190px;
    padding-bottom: 70px;
    text-align: center;
    background-color: #0b0b0b;
}

.contact-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.5;
}

.contact-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-tagline {
    color: #e5b842;
    font-size: 11px;
    letter-spacing: 3px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-hero-container h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-hero-container p {
    font-size: 15px;
    max-width: 620px;
    color: #aaaaaa;
}

/* --- CONTACT MAIN CONTENT SECTION --- */
.contact-content-section {
    padding: 60px 0 30px 0;
    background-color: #0b0b0b;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
    align-items: start;
}

/* Left side Info columns */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: #111111;
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(229, 184, 66, 0.08);
    color: #e5b842;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
}

.info-text p {
    font-size: 13px;
    color: #888888;
    margin-bottom: 16px;
    line-height: 1.5;
}

.info-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #e5b842;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.info-link:hover {
    color: #ffffff;
}

/* Right side Form design */
.contact-form-column {
    background-color: #111111;
    border: 1px solid #1f1f1f;
    border-radius: 20px;
    padding: 50px;
}

.contact-form-column h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.form-lead-time {
    font-size: 13px;
    color: #666666;
    margin-bottom: 36px;
}

.custom-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row-custom {
    display: flex;
    gap: 20px;
}

.form-group-custom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group-custom label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #888888;
    letter-spacing: 1px;
}

.form-group-custom input,
.form-group-custom textarea,
.form-group-custom select {
    background-color: #161616;
    border: 1px solid #262626;
    border-radius: 10px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group-custom input:focus,
.form-group-custom textarea:focus,
.form-group-custom select:focus {
    border-color: #e5b842;
}

/* Custom Select Dropdown setup */
.select-wrapper-custom {
    position: relative;
    width: 100%;
}

.select-wrapper-custom select {
    width: 100%;
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.select-caret {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #666666;
    pointer-events: none;
    font-size: 14px;
}

.btn-submit-form {
    background-color: #e5b842;
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* --- STAY IN VIBE SECTION --- */
.vibe-callout-section {
    padding: 20px 0 50px 0;
    background-color: #0b0b0b;
}

.vibe-box {
    background-image: linear-gradient(135deg, #141414 0%, #0f0e0c 100%);
    border: 1px solid #1f1f1f;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.vibe-box h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.vibe-highlight {
    color: #e5b842;
    font-weight: 800;
}

.vibe-box p {
    font-size: 14px;
    color: #888888;
    margin-bottom: 32px;
}

.vibe-btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-vibe-primary {
    background-color: #e5b842;
    color: #000000;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease;
}

.btn-vibe-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #333333;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.btn-vibe-primary:hover,
.btn-vibe-secondary:hover {
    transform: translateY(-2px);
    border-color: #e5b842;
}

/* privacy-policy// */
/* --- PRIVACY POLICY CUSTOM STYLES --- */
html {
    scroll-behavior: smooth;
}

.policy-hero-section {
    padding-top: 180px;
    padding-bottom: 60px;
    background-color: #0b0b0b;
    border-bottom: 1px solid #141414;
}

.policy-hero-container h1 {
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.policy-tagline {
    color: #e5b842;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 16px;
}

.policy-hero-container p {
    font-size: 15px;
    max-width: 600px;
    color: #aaaaaa;
    margin-bottom: 24px;
}

.policy-meta-badges {
    display: flex;
    gap: 20px;
}

.policy-meta-badges span {
    font-size: 12px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-meta-badges span i {
    color: #e5b842;
}

/* --- MAIN BODY GRID LAYOUT --- */
.policy-body-section {
    padding: 40px 0;
    background-color: #0b0b0b;
}

.policy-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

/* Sticky Sidebar Setup */
.policy-sidebar {
    position: sticky;
    top: 100px;
}

.sticky-nav-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.side-link span {
    font-size: 11px;
    color: #444444;
}

.side-link.active, .side-link:hover {
    color: #e5b842;
}

.side-link.active span {
    color: #e5b842;
}

/* Content Stream Area */
.policy-content-stream {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.policy-block h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.policy-block p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Sub Collection Card Grids */
.collection-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.collection-box {
    background-color: #111111;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 24px;
}

.collection-box h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.collection-box p {
    font-size: 13px;
    color: #777777;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Data Usage Row Listing */
.usage-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.usage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.usage-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(229, 184, 66, 0.08);
    color: #e5b842;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.usage-item h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    margin-bottom: 6px;
}

.usage-item p {
    font-size: 13px;
    color: #777777;
    margin-bottom: 0;
}

/* Rights Layout Box */
.rights-card {
    background-color: #111111;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 32px;
}

.rights-bullets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.right-bullet {
    font-size: 13px;
    color: #aaaaaa;
    display: flex;
    align-items: center;
    gap: 12px;
}

.right-bullet i {
    color: #e5b842;
    font-size: 14px;
}

.privacy-contact-text a {
    color: #e5b842;
    text-decoration: none;
    font-weight: 600;
}

/* Cookies Block Box */
.cookies-card {
    background-color: #141310;
    border-left: 3px solid #e5b842;
    padding: 24px 30px;
    border-radius: 4px 12px 12px 4px;
}

.cookies-card p {
    font-size: 13.5px;
    color: #b5a990;
}

/* --- BOTTOM CONTACT BOX --- */
.policy-question-section {
    padding: 60px 0 100px 0;
    background-color: #0b0b0b;
    border-top: 1px solid #141414;
}

.policy-question-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.policy-question-section p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 30px;
}

.btn-policy-contact {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 32px;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.btn-policy-contact:hover {
    background-color: #e5b842;
    color: #000000;
    transform: translateY(-2px);
}
/* privacy-policy// */