/* =========================================
   styles.css - Complete Stylesheet for Trikaya Travel Bhutan
   ========================================= */

/* =========================================
   CSS CUSTOM PROPERTIES
========================================= */
:root {
    --primary: #c48b33;
    --primary-dark: #b7771c;
    --primary-light: #d8a24a;
    --dark: #111;
    --text: #555;
    --light: #faf7f2;
    --border-light: #ece7de;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: 0.4s ease;
    --radius-card: 18px;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-card-hover: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* =========================================
   RESET & BASE
========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    overflow-x: hidden;
    background: #fff;
    color: var(--text);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    color: #222;
}

/* Respect user reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================
   SCROLLBAR
========================================= */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* =========================================
   SECTION UTILITY
========================================= */
.section {
    padding: 90px 0;
}

.section-title {
    font-size: 52px;
    font-family: var(--font-serif);
    color: #1d1d1d;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
}

.section-title-sm {
    font-size: 42px;
    font-family: var(--font-serif);
    color: #111;
    font-weight: 700;
}

/* =========================================
   TOP BAR
========================================= */
.topbar {
    background: #0f0f0f;
    padding: 10px 0;
    font-size: 13px;
    color: #ddd;
}

.topbar a {
    color: #ddd;
    text-decoration: none;
    margin-left: 22px;
    transition: color var(--transition);
}

.topbar a:hover {
    color: var(--primary);
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    padding: 14px 0;
    background: #fff;
    transition: padding var(--transition), box-shadow var(--transition);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    width: 100px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform var(--transition);
}

.navbar-brand img:hover {
    transform: rotate(6deg) scale(1.05);
}

.nav-link {
    color: #222 !important;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* =========================================
   DROPDOWN MENU
========================================= */
.dropdown-menu {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    min-width: 200px;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 26px;
}

.dropdown-item .badge {
    font-size: 9px;
    padding: 2px 8px;
}

/* =========================================
   PLAN YOUR TRIP BUTTON
========================================= */
.plan-btn {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: #fff !important;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 10px 25px rgba(196, 139, 51, 0.3);
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(196, 139, 51, 0.4);
}

/* =========================================
   FLAG ICON STYLING
========================================= */
.fi {
    vertical-align: middle;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    width: 1.2em;
    line-height: 1em;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    will-change: transform;
    animation: zoomHero 18s infinite alternate ease-in-out;
}

@keyframes zoomHero {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.25)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    color: #fff;
}

.hero-sub {
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
    color: #e8d4b3;
    font-weight: 500;
}

.hero h1 {
    font-size: 82px;
    line-height: 0.95;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}

.hero-lead {
    font-size: 18px;
    line-height: 1.8;
    color: #eee;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: #fff;
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 10px 30px rgba(196, 139, 51, 0.35);
}

.hero-btn:hover {
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 18px 40px rgba(196, 139, 51, 0.45);
}

/* FLOATING CARD */
.floating-card {
    position: absolute;
    bottom: 40px;
    right: 70px;
    z-index: 3;
    width: 280px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    color: #fff;
    will-change: transform;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.floating-card h5 {
    color: #fff;
    font-size: 32px;
    margin: 6px 0;
}

.floating-card small {
    color: #ddd;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.floating-card p {
    color: #eee;
    font-size: 14px;
}

/* =========================================
   FEATURE SECTION
========================================= */
.feature-section {
    background: #f8f6f2;
    padding: 0;
}

.feature-wrapper {
    border-bottom: 1px solid var(--border-light);
}

.feature-item {
    display: flex;
    gap: 22px;
    padding: 50px 35px;
    border-right: 1px solid #e7e0d4;
    height: 100%;
    transition: background var(--transition);
}

.feature-item:hover {
    background: #fcfaf7;
}

.feature-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #c89b47;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* =========================================
   DISCOVER SECTION
========================================= */
.discover-section {
    padding: 90px 0;
    background: #fff;
}

.discover-content {
    max-width: 360px;
}

.discover-content h2 {
    font-size: 68px;
    line-height: 1;
    margin-bottom: 26px;
    color: #1d1d1d;
}

.discover-content p {
    font-size: 17px;
    line-height: 2;
    color: #666;
    margin-bottom: 38px;
}

.discover-link {
    color: #c89b47;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #d8c49b;
    padding-bottom: 10px;
    transition: color var(--transition), gap var(--transition);
}

.discover-link:hover {
    color: #8c6223;
    gap: 18px;
}

.discover-card {
    position: relative;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.discover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.discover-card:hover img {
    transform: scale(1.08);
}

.discover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88),
        rgba(0, 0, 0, 0.1)
    );
}

.discover-card-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    color: #fff;
}

.discover-card-content i {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.discover-card-content h5 {
    color: #fff;
    font-size: 28px;
    margin: 0;
}

.discover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

/* =========================================
   JOURNEY SECTION
========================================= */
.journey {
    position: relative;
    padding: 100px 0;
    background: url('../images/hero/journey.jpg') center / cover no-repeat fixed;
}

.journey::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 15, 25, 0.68);
}

.journey-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
}

.journey h2 {
    color: #fff;
    font-size: 62px;
}

.journey p {
    color: #ddd;
    line-height: 1.9;
    margin: 22px 0 35px;
    font-size: 16px;
}

.outline-btn {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.outline-btn:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

/* =========================================
   SIGNATURE ITINERARIES
========================================= */
.itinerary-wrapper {
    padding: 40px;
    border-radius: 24px;
}

.view-all-link {
    color: #111;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

.view-all-link:hover {
    color: var(--primary);
}

.itinerary-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-card);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.itinerary-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.itinerary-image {
    overflow: hidden;
}

.itinerary-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 1s ease;
    display: block;
}

.itinerary-card:hover .itinerary-image img {
    transform: scale(1.08);
}

.itinerary-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.itinerary-content h4 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.location-text {
    color: #888;
    font-size: 14px;
    margin-bottom: 18px;
}

.trip-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 22px;
    color: #666;
    font-size: 14px;
}

.trip-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.badge-easy {
    color: #28a745 !important;
    font-size: 11px;
}

.badge-moderate {
    color: #c9900a !important;
    font-size: 11px;
}

.itinerary-btn {
    margin-top: auto;
    width: 100%;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
}

.itinerary-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================
   INNER HERO (For sub-pages)
========================================= */
.inner-hero {
    position: relative;
    height: 50vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    color: #fff;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 60%);
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.inner-hero h1 {
    font-size: 64px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.inner-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

/* =========================================
   CATEGORY NAV (For packages page)
========================================= */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.category-btn {
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    background: #fff;
    color: var(--text);
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    font-size: 15px;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 139, 51, 0.25);
}

.category-heading {
    font-size: 42px;
    font-family: var(--font-serif);
    color: #1d1d1d;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.category-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* =========================================
   TOUR CARD (For packages page)
========================================= */
.tour-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-card);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.tour-card-img {
    overflow: hidden;
    height: 220px;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.tour-card:hover .tour-card-img img {
    transform: scale(1.08);
}

.tour-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-body h5 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #2a2a2a;
    font-family: var(--font-serif);
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    color: #888;
    margin-bottom: 14px;
}

.tour-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.tour-card-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    flex: 1;
    margin-bottom: 18px;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    margin-top: auto;
}

.tour-price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 22px;
    font-family: var(--font-serif);
}

.tour-price small {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    font-family: var(--font-sans);
}

.tour-detail-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tour-detail-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateX(5px);
}

/* =========================================
   TRAVEL INFO SECTION
========================================= */
.travel-info-section {
    position: relative;
    background: linear-gradient(rgba(8, 15, 25, 0.9)), 
                url('assets/images/hero/hero.jpg') center/cover no-repeat fixed;
    padding: 100px 0;
    color: #ffffff;
}

.travel-info-header h2 {
    color: #ffffff !important;
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.row-grid {
    border: 1px solid rgba(196, 139, 51, 0.3);
}

.info-card {
    border-right: 1px solid rgba(196, 139, 51, 0.3);
    padding: 50px 35px;
    height: 100%;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
}

@media (min-width: 992px) {
    .col-lg-3:last-child .info-card {
        border-right: none;
    }
}

@media (max-width: 991px) {
    .info-card {
        border-right: none;
        border-bottom: 1px solid rgba(196, 139, 51, 0.3);
    }
}

.info-card:hover {
    background: rgba(196, 139, 51, 0.08);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 35px;
    color: #c48b33;
    margin-bottom: 25px;
    display: block;
}

.info-card h4 {
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.info-card p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* =========================================
   NEWS SECTION
========================================= */
.news-card {
    transition: transform var(--transition);
}

.news-card:hover {
    transform: translateY(-8px);
}

.news-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
    display: block;
}

.news-date {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #aaa;
    text-transform: uppercase;
    font-weight: 500;
}

.news-card h5 {
    font-size: 26px;
    line-height: 1.3;
    margin-top: 10px;
    color: #222;
}

/* =========================================
   QUICK LINKS
========================================= */
.quick-links {
    background: linear-gradient(145deg, #faf7f2, #f5f0e8);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quick-links h4 {
    font-size: 38px;
    margin-bottom: 20px;
}

.quick-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5ddd1;
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: color var(--transition), padding-left var(--transition);
}

.quick-links a:last-child {
    border-bottom: none;
}

.quick-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

/* =========================================
   FOOTER
========================================= */
footer {
    background: #0f0f0f;
    color: #aaa;
    padding: 70px 0 0;
}

.footer-logo {
    width: 85px;
    border-radius: 50%;
    margin-bottom: 18px;
}

footer address {
    font-style: normal;
    line-height: 2;
    font-size: 15px;
    color: #aaa;
}

footer address a {
    color: #aaa;
    text-decoration: none;
    display: inline;
    margin: 0;
    transition: color var(--transition);
}

footer address a:hover {
    color: var(--primary);
}

.footer-heading {
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-right: 8px;
    margin-bottom: 8px;
    color: #ccc;
    text-decoration: none;
    font-size: 17px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), color var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 50px;
    padding: 20px 0;
    font-size: 13px;
    color: #666;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1199px) {
    .hero h1 { font-size: 68px; }
    .discover-content h2 { font-size: 56px; }
    .section-title { font-size: 44px; }
}

@media (max-width: 991px) {
    .hero { min-height: 75vh; }
    .hero h1 { font-size: 52px; }
    .section-title { font-size: 40px; }
    .section-title-sm { font-size: 34px; }

    .floating-card { display: none !important; }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .discover-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .discover-content h2 { font-size: 48px; }
    .discover-card { height: 300px; }

    .journey h2 { font-size: 46px; }

    .itinerary-wrapper { padding: 20px; }

    .navbar-brand img { width: 72px; height: 54px; }
    
    /* Mobile Navigation */
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.12);
        margin-top: 10px;
        max-height: 80vh;
        overflow-y: auto;
        border: 1px solid #f0ebe3;
    }
    
    .navbar-nav .nav-item {
        padding: 4px 0;
        border-bottom: 1px solid #f5f0e8;
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
        margin: 0;
        font-size: 16px;
    }
    
    .dropdown-menu {
        border: none !important;
        padding: 5px 0 5px 15px !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .dropdown-item {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .dropdown-item:hover {
        padding-left: 20px;
    }
    
    .plan-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
    
    .nav-link::after {
        left: 0 !important;
        transform: none !important;
    }
    
    .nav-link.active::after {
        width: 30% !important;
    }
}

@media (max-width: 767px) {
    .hero h1 { font-size: 40px; }
    .hero-sub { font-size: 12px; letter-spacing: 4px; }
    .discover-content h2 { font-size: 40px; }
    .journey h2 { font-size: 38px; }
    .feature-item { padding: 30px 20px; }
    .section { padding: 60px 0; }
    .quick-links { padding: 28px; }
    .section-title { font-size: 34px; }
    .section-title-sm { font-size: 28px; }
    .section-subtitle { font-size: 16px; }
    .navbar-brand img { width: 72px; height: 54px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 34px; }
    .hero-btn { padding: 12px 24px; font-size: 14px; }
    .section-title { font-size: 28px; }
    .navbar-brand img { width: 60px; height: 45px; }
    .navbar-collapse { padding: 15px; }
}