/* =====================================================
   KASHMIR LINE HOLIDAYS - LANDING PAGE STYLES
   Color Palette: Navy Blue #1a2e5a | Orange #e8762a
   ===================================================== */

:root {
    --navy: #1a2e5a;
    --navy-dark: #0f1d3d;
    --navy-light: #2a4278;
    --orange: #e8762a;
    --orange-dark: #d06520;
    --orange-light: #f0934f;
    --gold: #f5c542;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --gray-light: #eef1f6;
    --gray: #6b7a99;
    --gray-dark: #3d4f6f;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --font-accent: 'Dancing Script', cursive;
    --shadow-sm: 0 2px 8px rgba(26, 46, 90, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 46, 90, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 46, 90, 0.15);
    --shadow-orange: 0 8px 30px rgba(232, 118, 42, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    color: var(--navy-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
.text-orange { color: var(--orange) !important; }
.bg-light-custom { background-color: var(--off-white); }
.section-padding { padding: 100px 0; }

/* ---- Buttons ---- */
.btn-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn-orange::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--orange-dark), var(--navy));
    z-index: -1;
    transition: left 0.4s ease;
}

.btn-orange:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-orange:hover::before { left: 0; }

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}

/* ---- Section Tags ---- */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(232, 118, 42, 0.1), rgba(26, 46, 90, 0.05));
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(232, 118, 42, 0.2);
}

.section-tag i { margin-right: 5px; }

.section-tag-women {
    background: linear-gradient(135deg, rgba(232, 118, 42, 0.15), rgba(232, 93, 117, 0.1));
    border-color: rgba(232, 118, 42, 0.35);
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* =======================
   PRELOADER
   ======================= */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.mountain-svg {
    width: 150px;
    animation: mountainFloat 3s ease-in-out infinite;
}

@keyframes mountainFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.preloader-klh {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 8px;
    margin-top: 15px;
}

.preloader-tagline {
    display: block;
    color: var(--orange);
    font-family: var(--font-accent);
    font-size: 18px;
    margin-top: 5px;
}

.preloader-bar {
    width: 200px; height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin: 20px auto 0;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0; height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    border-radius: 10px;
    animation: preloaderFill 2s ease-in-out forwards;
}

@keyframes preloaderFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* =======================
   NAVBAR
   ======================= */
#mainNavbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

#mainNavbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-klh {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

#mainNavbar:not(.scrolled) .brand-klh {
    background: linear-gradient(135deg, var(--white), #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
}

#mainNavbar:not(.scrolled) .brand-name { color: var(--white); }

.brand-sub {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gray);
    text-transform: uppercase;
}

#mainNavbar:not(.scrolled) .brand-sub { color: rgba(255, 255, 255, 0.7); }

.navbar-nav .nav-link {
    color: var(--navy);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px !important;
    position: relative;
    transition: var(--transition);
}

#mainNavbar:not(.scrolled) .navbar-nav .nav-link { color: rgba(255, 255, 255, 0.9); }

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }

.navbar-nav .nav-link:hover { color: var(--orange); }
#mainNavbar:not(.scrolled) .navbar-nav .nav-link:hover { color: var(--orange); }

.navbar-toggler {
    border: 2px solid var(--orange);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e8762a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =======================
   HERO SECTION
   ======================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%;
    background: url('https://images.pexels.com/photos/3278215/pexels-photo-3278215.jpeg?auto=compress&cs=tinysrgb&w=1920') center center / cover no-repeat;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15, 29, 61, 0.92) 0%, rgba(26, 46, 90, 0.85) 40%, rgba(26, 46, 90, 0.7) 100%);
    z-index: 1;
}

.hero-content { position: relative; z-index: 3; padding-top: 80px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 118, 42, 0.2);
    border: 1px solid rgba(232, 118, 42, 0.4);
    color: var(--orange-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 118, 42, 0.3); }
    50% { box-shadow: 0 0 0 15px rgba(232, 118, 42, 0); }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 0.8s ease forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.3s; }
.hero-title-line:nth-child(2) { animation-delay: 0.6s; }
.hero-title-line:nth-child(3) { animation-delay: 0.9s; }

.hero-title-highlight {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 80px;
    font-style: italic;
}

@keyframes titleReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    max-width: 550px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tagline-dash { width: 40px; height: 2px; background: var(--orange); }

.tagline-text {
    font-family: var(--font-accent);
    font-size: 22px;
    color: var(--orange-light);
    letter-spacing: 1px;
}

.hero-cta { margin-bottom: 40px; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
}

.stat-plus {
    font-size: 24px;
    color: var(--orange);
    font-weight: 700;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: -2px;
}

.stat-divider {
    width: 1px; height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: heroImgFloat 6s ease-in-out infinite;
}

@keyframes heroImgFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--navy);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.hero-image-badge i { color: var(--orange); margin-right: 5px; }

.scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px; height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    margin: 0 auto 8px;
    position: relative;
}

.mouse-wheel {
    width: 4px; height: 8px;
    background: var(--orange);
    border-radius: 4px;
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 1.5s ease infinite;
}

@keyframes mouseWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* =======================
   ABOUT SECTION
   ======================= */
.about-images {
    position: relative;
    padding: 20px;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img { transform: scale(1.05); }

.about-img-secondary {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 0; left: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-orange);
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    font-weight: 500;
    margin-top: 5px;
    line-height: 1.3;
}

.about-content { padding-left: 30px; }

.about-lead {
    font-size: 17px;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.about-text {
    color: var(--gray);
    margin-bottom: 25px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.about-feature-item:hover {
    background: var(--off-white);
    border-color: rgba(232, 118, 42, 0.15);
    transform: translateX(5px);
}

.feature-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: linear-gradient(135deg, rgba(232, 118, 42, 0.1), rgba(26, 46, 90, 0.05));
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

.about-feature-item h6 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
    color: var(--navy);
}

.about-feature-item p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* =======================
   WOMEN-LED SECTION (NEW DEDICATED SECTION)
   ======================= */
.women-led-section {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.women-led-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232, 118, 42, 0.06), transparent 70%);
    border-radius: 50%;
}

.women-led-image-block {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.women-led-image-block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.women-led-float-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 15px 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-orange);
    animation: badgeFloat 4s ease-in-out infinite;
}

.women-led-float-badge i {
    font-size: 28px;
}

.women-led-float-badge span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.women-led-content {}

.women-led-heading {
    font-size: 34px;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.3;
}

.women-led-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.women-led-values {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wl-value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.wl-value-item:hover {
    border-color: rgba(232, 118, 42, 0.3);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.wl-value-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: linear-gradient(135deg, rgba(232, 118, 42, 0.12), rgba(232, 93, 117, 0.08));
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}

.wl-value-item h6 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
    color: var(--navy);
}

.wl-value-item p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* =======================
   WOMEN STATS BANNER
   ======================= */
.women-stats-banner {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.women-stats-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232, 118, 42, 0.1), transparent 70%);
    border-radius: 50%;
}

.women-stats-banner::after {
    content: '';
    position: absolute;
    bottom: -50%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232, 118, 42, 0.1), transparent 70%);
    border-radius: 50%;
}

.ws-stat {
    padding: 20px;
}

.ws-stat i {
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
}

.ws-stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.ws-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =======================
   DESTINATIONS
   ======================= */
.destination-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

.destination-card:hover .destination-img img { transform: scale(1.1); }

.destination-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 46, 90, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.destination-card:hover .destination-overlay { opacity: 1; }

.destination-info { padding: 20px; }

.destination-rating {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.destination-info h4 { font-size: 19px; margin-bottom: 4px; }

.destination-info p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

.destination-info p i { color: var(--orange); margin-right: 4px; }

.destination-tag {
    display: inline-block;
    background: rgba(232, 118, 42, 0.1);
    color: var(--orange);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* =======================
   PACKAGES
   ======================= */
.package-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 8px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: var(--white);
}

.package-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.women-special-card {
    border: 2px solid rgba(232, 118, 42, 0.3);
    background: linear-gradient(180deg, rgba(232, 118, 42, 0.02) 0%, var(--white) 30%);
}

.women-special-card:hover { border-color: var(--orange); }

.package-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--navy);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    text-transform: uppercase;
}

.package-badge.badge-orange { background: var(--orange); }

.package-badge.badge-women {
    background: linear-gradient(135deg, var(--orange), #e85d75);
    animation: badgePulse 3s ease-in-out infinite;
    font-size: 12px;
    padding: 7px 18px;
}

.package-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.package-card:hover .package-img img { transform: scale(1.08); }

.package-duration {
    position: absolute;
    bottom: 12px; right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.package-duration i { margin-right: 4px; color: var(--orange); }

.package-body { padding: 22px; }
.package-body h4 { font-size: 19px; margin-bottom: 8px; }

.package-body > p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.package-features span {
    font-size: 12px;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 4px;
}

.package-features span i { color: var(--orange); font-size: 13px; }

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.price-from {
    display: block;
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}

.price-per { font-size: 12px; color: var(--gray); }

/* =======================
   WHY CHOOSE US
   ======================= */
.why-card {
    text-align: center;
    padding: 35px 22px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 72px; height: 72px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(232, 118, 42, 0.1), rgba(26, 46, 90, 0.05));
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    transform: rotateY(180deg);
}

.why-card h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--navy);
}

.why-card p { font-size: 13px; color: var(--gray); margin: 0; }

/* =======================
   GALLERY
   ======================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(15, 29, 61, 0.9));
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay { transform: translateY(0); }

.gallery-overlay h5 { color: var(--white); font-size: 17px; margin-bottom: 2px; }
.gallery-overlay p { font-size: 12px; color: var(--orange-light); margin: 0; }

.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

/* =======================
   TESTIMONIALS
   ======================= */
.testimonials-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.testimonials-section .section-tag {
    background: rgba(232, 118, 42, 0.15);
    border-color: rgba(232, 118, 42, 0.3);
}

.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255, 255, 255, 0.6); }

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(232, 118, 42, 0.3);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 15px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    font-size: 40px;
    color: var(--orange);
    line-height: 1;
}

.testimonial-author h6 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* =======================
   CONTACT
   ======================= */
.contact-info-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(232, 118, 42, 0.15), transparent);
    border-radius: 50%;
}

.contact-info-card h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-info-card > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.contact-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(232, 118, 42, 0.15);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
}

.contact-info-item h6 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.contact-social a {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-control, .form-select {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 14px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(232, 118, 42, 0.15);
}

.form-floating label { font-size: 14px; color: var(--gray); }

.form-success-msg {
    text-align: center;
    padding: 40px;
    animation: fadeInUp 0.5s ease;
}

.form-success-msg i {
    font-size: 60px;
    color: #28a745;
    display: block;
    margin-bottom: 15px;
}

.form-success-msg h5 {
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 8px;
}

.form-success-msg p { color: var(--gray); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =======================
   FOOTER
   ======================= */
.footer-section {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top { padding: 70px 0 45px; }

.footer-brand .brand-wrapper { margin-bottom: 5px; }

.footer-brand .brand-klh {
    background: linear-gradient(135deg, var(--white), #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub { color: rgba(255, 255, 255, 0.5); }

.footer-desc { font-size: 13px; line-height: 1.7; }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 2px;
    background: var(--orange);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: var(--transition);
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 8px;
}

.newsletter-form .input-group {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 13px;
}

.newsletter-form .form-control::placeholder { color: rgba(255, 255, 255, 0.4); }

.newsletter-form .form-control:focus {
    border-color: var(--orange);
    box-shadow: none;
    background: rgba(255, 255, 255, 0.12);
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 8px;
}

.cert-badge i { color: var(--orange); }

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .text-orange {
    animation: heartBeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* =======================
   BACK TO TOP & WHATSAPP
   ======================= */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible { opacity: 1; visibility: visible; }

.back-to-top:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 90px; right: 30px;
    width: 52px; height: 52px;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover { color: var(--white); transform: scale(1.1); }

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* =======================
   PARTICLES
   ======================= */
.particles-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(232, 118, 42, 0.3);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* =======================
   RESPONSIVE
   ======================= */
@media (max-width: 1199px) {
    .hero-title { font-size: 52px; }
    .hero-title-highlight { font-size: 66px; }
    .section-title { font-size: 36px; }
    .women-led-heading { font-size: 30px; }
}

@media (max-width: 991px) {
    .section-padding { padding: 70px 0; }
    .hero-title { font-size: 44px; }
    .hero-title-highlight { font-size: 56px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .about-content { padding-left: 0; margin-top: 40px; }
    .about-img-secondary { right: 10px; bottom: -10px; width: 150px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .women-led-heading { font-size: 28px; }
    .women-led-image-block img { height: 350px; }

    #mainNavbar {
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
    }
    #mainNavbar .brand-klh {
        background: linear-gradient(135deg, var(--navy), var(--navy-light)) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    #mainNavbar .brand-name { color: var(--navy) !important; }
    #mainNavbar .brand-sub { color: var(--gray) !important; }
    #mainNavbar .navbar-nav .nav-link { color: var(--navy) !important; }
    #mainNavbar .navbar-nav .nav-link:hover { color: var(--orange) !important; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 36px; }
    .hero-title-highlight { font-size: 46px; }
    .section-title { font-size: 30px; }
    .hero-stats { justify-content: center; }
    .stat-number { font-size: 28px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .gallery-item-wide { grid-column: span 1; }
    .gallery-item-tall { grid-row: span 1; }
    .contact-form-card { padding: 25px; }
    .contact-info-card { padding: 30px; }
    .ws-stat-number { font-size: 32px; }
    .women-led-image-block img { height: 280px; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 30px; }
    .hero-title-highlight { font-size: 38px; }
    .hero-cta .btn { display: block; width: 100%; margin-bottom: 10px; }
    .hero-cta .btn:last-child { margin-bottom: 0; }
    .package-filters { gap: 5px; }
    .filter-btn { padding: 6px 16px; font-size: 12px; }
    .hero-badge { font-size: 10px; padding: 8px 14px; }
    .section-title { font-size: 26px; }
    .women-led-heading { font-size: 24px; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--navy), var(--orange));
    border-radius: 10px;
}

::selection { background: var(--orange); color: var(--white); }

.package-item { transition: opacity 0.4s ease, transform 0.4s ease; }

.package-item.hide {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

.package-item.show { opacity: 1; transform: scale(1); }
