
/* ============================================================
   IMPROVED COLOR SCHEME - Warm Egg Theme
   ============================================================ */
:root {
    /* Primary Colors - Warm Orange/Egg Theme */
    --primary: #E67E22;
    --primary-dark: #D35400;
    --primary-light: #F39C12;
    
    /* Secondary Colors */
    --secondary: #F5B041;
    --accent: #27AE60;
    --accent-light: #2ECC71;
    
    /* Neutral Colors */
    --dark: #2C3E50;
    --text: #34495E;
    --text-light: #7F8C8D;
    --light: #FDFEFE;
    --cream: #FEF9E7;
    --cream-dark: #FCF3CF;
    
    /* Background Colors */
    --bg-warm: linear-gradient(135deg, #FEF9E7 0%, #FDFEFE 50%, #FEF5E7 100%);
    --bg-card: #FFFFFF;
    
    /* Border Colors */
    --border: #F5CBA7;
    --border-light: #FDEBD0;
    
    /* Shadow */
    --shadow: 0 4px 15px rgba(230, 126, 34, 0.1);
    --shadow-hover: 0 8px 25px rgba(230, 126, 34, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

/* ============================================================
   IMPROVED BASE STYLES
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-warm);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================================
   IMPROVED HEADER STYLES
   ============================================================ */
header, .navbar, .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    margin-right: 12px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--dark);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--cream);
}

.nav-link i {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: var(--transition);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: -188px;
    width: 720px;
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    border: 1px solid var(--border-light);
}

.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.mega-column h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-links li {
    margin-bottom: 10px;
}

.mega-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 6px 0;
}

.mega-links a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.mega-links a i {
    margin-right: 10px;
    font-size: 0.75rem;
    color: var(--secondary);
    width: 18px;
}

.exp-dropdown {
    width: 560px;
    grid-template-columns: repeat(2, 1fr);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
    border-radius: 8px;
}

.search-btn:hover {
    color: var(--primary);
    background: var(--cream);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    background: var(--cream);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.language-btn:hover {
    background: var(--cream-dark);
    border-color: var(--primary);
}

.current-lang {
    font-weight: 600;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    padding: 8px 0;
    border: 1px solid var(--border-light);
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-option:hover {
    background: var(--cream);
}

.lang-option i {
    color: var(--primary);
    font-size: 0.75rem;
    opacity: 0;
}

.lang-option.active i {
    opacity: 1;
}

.lang-option span {
    font-size: 0.95rem;
    font-weight: 500;
    flex-grow: 1;
}

.lang-option small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
}

/* ============================================================
   IMPROVED HERO SECTION
   ============================================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.85) 0%,
        rgba(44, 62, 80, 0.6) 40%,
        rgba(230, 126, 34, 0.3) 100%
    );
    z-index: -1;
}

.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 100px;
}

.hero-text {
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.3s;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-tag i {
    color: var(--secondary);
}

/* Dynamic price display in hero */
.hero-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 12px 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.hero-price-badge .price-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.hero-price-badge .price-value {
    font-size: 1.8rem;
    font-weight: 800;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 32px;
    font-weight: 400;
    max-width: 580px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.6s;
}

.hero-btn {
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.video-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.video-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* ============================================================
   IMPROVED MAIN CONTENT SECTION
   ============================================================ */
.main-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.main-card h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.main-card .lead {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 24px;
    padding: 16px;
    background: var(--cream);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.main-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 24px 0 12px;
}

.main-card ul {
    padding-left: 0;
    list-style: none;
}

.main-card ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text);
}

.main-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.main-card .alert {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--dark);
}

.main-card .alert i {
    color: var(--primary);
    margin-right: 8px;
}

/* ============================================================
   IMPROVED CARD STYLES
   ============================================================ */
.card-custom {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.card-custom .text-primary {
    color: var(--primary) !important;
}

/* ============================================================
   IMPROVED TABLE STYLES
   ============================================================ */
.table {
    margin-bottom: 0;
}

.table thead th {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 14px 12px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody td {
    padding: 12px;
    vertical-align: middle;
    border-color: var(--border-light);
    color: var(--text);
}

.table tbody tr:hover {
    background: var(--cream);
}

.table tbody td a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.table tbody td a:hover {
    color: var(--primary-dark);
}

/* Badge Styles */
.badge {
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

.badge.bg-success {
    background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, var(--secondary), var(--primary-light)) !important;
    color: var(--dark) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #3498DB, #2980B9) !important;
}

/* Button Styles */
.btn-info {
    background: linear-gradient(277deg, #ffffff, #ee711f);
    border: none;
    color: white;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-info:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
}

/* ============================================================
   IMPROVED EGG PRICES SECTION
   ============================================================ */
.odtourism_wrapper {
    display: flex;
    padding: 50px;
    gap: 50px;
    align-items: flex-start;
    min-height: 100vh;
    max-width: 1500px;
    margin: 0 auto;
    background: var(--bg-warm);
}

.odtourism_wrapper .odtourism_textbox {
    width: 28%;
    position: sticky;
    top: 100px;
    padding: 28px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.odtourism_wrapper .odtourism_textbox h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.odtourism_wrapper .odtourism_line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin-bottom: 20px;
    border-radius: 2px;
}

.odtourism_wrapper .odtourism_textbox p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.odtourism_wrapper .odtourism_cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    transition: var(--transition);
    background: white;
}

.odtourism_wrapper .odtourism_cta:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

/* Table Area */
.odtourism_wrapper .odtourism_table_area {
    position: relative;
    width: 72%;
    padding: 28px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    min-height: 600px;
}

/* Quick Navigation */
.odtourism_wrapper .odtourism_quick_nav {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    padding: 16px;
    background: var(--cream);
    border-radius: 14px;
    border: 1px solid var(--border-light);
}

.odtourism_wrapper .odtourism_quick_nav button {
    background: white;
    color: var(--primary);
    border: 2px solid var(--border);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.odtourism_wrapper .odtourism_quick_nav button:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

/* Stats Summary */
.odtourism_wrapper .odtourism_stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--cream);
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.odtourism_wrapper .odtourism_stat_item {
    text-align: center;
    flex: 1;
    padding: 8px;
}

.odtourism_wrapper .odtourism_stat_value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.odtourism_wrapper .odtourism_stat_label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Cards Container */
.odtourism_wrapper .odtourism_all_cards_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-height: 650px;
    overflow-y: auto;
    padding-right: 10px;
    padding-bottom: 80px;
}

/* Scrollbar */
.odtourism_wrapper .odtourism_all_cards_container::-webkit-scrollbar {
    width: 6px;
}

.odtourism_wrapper .odtourism_all_cards_container::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: 10px;
}

.odtourism_wrapper .odtourism_all_cards_container::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    border-radius: 10px;
}

/* Card Styling */
.odtourism_wrapper .odtourism_card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 420px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.odtourism_wrapper .odtourism_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color, var(--primary)), var(--card-color-light, var(--secondary)));
    z-index: 2;
}

.odtourism_wrapper .odtourism_card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border);
}

.odtourism_wrapper .odtourism_card .card-header {
    padding: 16px 18px;
    border-bottom: none;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--card-color, var(--primary)), var(--card-color-light, var(--secondary)));
}

.odtourism_wrapper .odtourism_card .card-header h5 {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Table in Cards */
.odtourism_wrapper .odtourism_card .table-container {
    flex-grow: 1;
    overflow: hidden;
    padding: 14px;
}

.odtourism_wrapper .odtourism_card .table {
    font-size: 0.8rem;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.odtourism_wrapper .odtourism_card .table thead th {
    background: var(--cream);
    border-bottom: 2px solid var(--card-color, var(--primary));
    font-weight: 700;
    color: var(--dark);
    font-size: 0.7rem;
    padding: 10px 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.odtourism_wrapper .odtourism_card .table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--cream);
}

.odtourism_wrapper .odtourism_card .table-bordered th,
.odtourism_wrapper .odtourism_card .table-bordered td {
    border: 1px solid var(--border-light);
    padding: 8px 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Chart in Cards */
.odtourism_wrapper .odtourism_card_chart {
    padding: 0 14px 14px;
    background: linear-gradient(to bottom, white, var(--cream));
    height: 130px;
    flex-shrink: 0;
    border-top: 1px solid var(--border-light);
}

/* Navigation Buttons */
.odtourism_wrapper .odtourism_buttons {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    gap: 10px;
    z-index: 10;
    background: white;
    padding: 10px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.odtourism_wrapper .odtourism_buttons button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.odtourism_wrapper .odtourism_buttons button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

/* ============================================================
   IMPROVED QUICK GUIDE SECTION
   ============================================================ */
.guide-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.guide-icon.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.guide-icon.success {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.guide-icon.warning {
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
}

/* ============================================================
   IMPROVED FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: white;
    padding: 70px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    margin-right: 12px;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.footer-logo-text span {
    color: var(--primary);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: white;
}

.footer-column h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 24px;
    padding-bottom: 12px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--secondary);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary);
    font-size: 1.1rem;
    min-width: 20px;
    margin-top: 3px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */
@media (max-width: 1200px) {
    .odtourism_wrapper {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }
    
    .odtourism_wrapper .odtourism_textbox,
    .odtourism_wrapper .odtourism_table_area {
        width: 100%;
    }
    
    .odtourism_wrapper .odtourism_textbox {
        position: static;
        text-align: center;
    }
    
    .odtourism_wrapper .odtourism_line {
        margin: 0 auto 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        height: calc(100vh - 80px);
        transition: var(--transition);
        padding: 30px;
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.4rem;
    }
    
    .mega-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 20px 0 0 20px;
        display: block;
        border: none;
    }
    
    .odtourism_wrapper .odtourism_all_cards_container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a,
    .contact-info li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-price-badge {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    
    .odtourism_wrapper {
        padding: 20px;
    }
    
    .odtourism_wrapper .odtourism_stats {
        flex-wrap: wrap;
    }
    
    .odtourism_wrapper .odtourism_stat_item {
        flex: 0 0 50%;
        margin-bottom: 10px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .main-card {
        padding: 20px;
    }
    
    .main-card h1 {
        font-size: 1.4rem;
    }
    
    .odtourism_wrapper .odtourism_textbox h2 {
        font-size: 1.6rem;
    }
    
    .odtourism_wrapper .odtourism_card {
        height: 380px;
    }
    
    .odtourism_wrapper .odtourism_buttons {
        flex-direction: column;
        border-radius: 25px;
    }
}

/* ============================================================
   HIGH-FIDELITY PREMIUM ORANGE THEME (SHARED)
   ============================================================ */
.price-highlight-card {
    background: #E67E22 !important;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    color: white !important;
    box-shadow: 0 10px 40px rgba(230, 126, 34, 0.4);
    text-align: center;
}

.price-highlight-card h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 10px 0 25px;
    color: white !important;
    letter-spacing: -1px;
}

.price-highlight-card .state-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white !important;
}

.price-highlight-card p {
    font-size: 1rem;
    opacity: 0.9;
}

.price-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-stat {
    padding: 15px 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.price-stat:last-child {
    border-right: none;
}

.price-stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2px;
    display: block;
}

.price-stat-label {
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.85;
    display: block;
}

.district-card {
    background: white;
    padding: 24px;
    border-radius: 15px;
    border: 1px solid #F5CBA7;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.district-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.district-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.table thead th {
    background: #E67E22 !important;
    color: white !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 14px 12px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

