:root {
    --primary-color: #fbb03b;
    --secondary-color: #1c1c1c;
    --bg-light: #ffffff;
    --bg-card: #f8f9fa;
    --text-dark: #1c1c1c;
    --text-muted: #666666;
    --accent-glow: rgba(40, 167, 69, 0.1);
    --font-main: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Header Adjustments - LIGHT THEME */
.header-bottom {
    background: #ffffff !important;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo img {
    height: 60px;
    object-fit: contain;
}

.header-bottom .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.header-bottom .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-ladakh {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2)), url('../images/ladakh/hero.png');
    background-size: cover;
    background-position: center;
}

.hero-number {
    font-size: 80px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    /* Increased opacity for better visibility */
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-cta .btn-black {
    background: #000 !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 15px 40px;
}

/* Hero Side Cards - FIXED */
.hero-cards-side {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.hero-card {
    width: 200px;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.hero-card:hover {
    width: 240px;
    border-color: var(--primary-color);
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.hero-card h5 {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--primary-color);
    font-weight: 800;
    z-index: 2;
    margin: 0;
}

.hero-card span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
    text-transform: uppercase;
}

/* Navigation Highlights */
.main-nav ul li a {
    color: var(--text-dark) !important;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.main-nav ul li a:hover {
    color: var(--accent-color) !important;
}

/* Section Common Overrides */
.bg-dark,
.bg-darker {
    background-color: var(--bg-light) !important;
}

.text-white {
    color: var(--text-dark) !important;
}

.text-white-50 {
    color: var(--text-muted) !important;
}

/* Cards Styling - LIGHT MODE */
.ladakh-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.ladakh-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.ladakh-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.15);
    transform: translateY(-10px);
}

.ladakh-card h5,
.ladakh-card h4 {
    color: var(--text-dark) !important;
}

/* Destination Grid text fix */
.destin-content h4 {
    color: #ffffff !important;
    /* Keep white on image overlay */
}

/* Packages Table - LIGHT MODE */
.package-box {
    background: #ffffff !important;
    border: 1px solid #eeeeee !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
}

.package-box .table {
    color: var(--text-dark) !important;
}

/* Travel Essentials Grid */
.essential-box {
    background: #f8f9fa;
    border: 1px solid #eeeeee;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
}

/* Stats Bar */
.stats-bar {
    background: #f8f9fa;
    padding: 60px 0;
    border-radius: 30px;
    border: 1px solid #eeeeee;
}

/* Footer - Keep it Dark OR make it Light? */
/* User said "theme color is black i nned it white", implying the whole site. */
.footer-ladakh,
.footer {
    background: #111111 !important;
    border-top: 1px solid #333333 !important;
    color: #ffffff !important;
    padding-bottom: 0;
}

.footer h4,
.footer h6,
.footer a,
.footer p {
    color: #ffffff !important;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.footer-bottom {
    background: #0a0a0a !important;
    border-top: 1px solid #222222 !important;
    color: #888888 !important;
}

.social-icon-box {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #111111 !important;
    transition: 0.3s;
    text-decoration: none !important;
}

.social-icon-box:hover {
    background: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon-box:hover {
    background: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Modal Redesign - LIGHT */
.dark-modal .modal-content {
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
}

.modern-form .form-control {
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    color: var(--text-dark) !important;
}

.modern-form label {
    color: #666 !important;
}

/* Utilities */
.text-accent {
    color: var(--primary-color) !important;
}

.header-divider {
    background: var(--primary-color);
    height: 3px;
    width: 60px;
}