/* Kashmir Junction - Main Styles */

/* CSS Variables - Premium Kashmir Junction Theme */
:root {
    --primary-color: #2c5530;
    --primary-light: #4a7c59;
    --primary-dark: #1a3d1f;
    --secondary-color: #d4af37;
    --secondary-light: #e6c558;
    --secondary-dark: #b8941f;
    --accent-color: #8b4513;
    --accent-light: #a0522d;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --text-muted: #95a5a6;
    --text-light: #ffffff;
    --text-dark: #1a252f;
    --bg-light: #faf8f5;
    --bg-white: #ffffff;
    --bg-cream: #f8f6f0;
    --border-color: #e8e5df;
    --border-light: #f4f2ec;
    --shadow: 0 4px 20px rgba(44, 85, 48, 0.08);
    --shadow-lg: 0 8px 32px rgba(44, 85, 48, 0.12);
    --shadow-xl: 0 16px 48px rgba(44, 85, 48, 0.16);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
    --shadow-gold-lg: 0 8px 32px rgba(212, 175, 55, 0.2);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--bg-light);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
}
h2 { 
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
}
h4 { 
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--primary-light);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--secondary-light);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.btn-white:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1rem;
    font-weight: 700;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(44, 85, 48, 0.15);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px) saturate(180%);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled {
    background: rgba(44, 85, 48, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 
        0 8px 32px rgba(44, 85, 48, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
}

.logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    transition: var(--transition);
    filter: brightness(1.4) contrast(1.5) saturate(1.2) drop-shadow(0 0 15px rgba(244, 162, 97, 0.8)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    animation: logoShine 3s ease-in-out infinite alternate;
}

.logo:hover {
    transform: scale(1.08);
    filter: brightness(1.6) contrast(1.7) saturate(1.3) drop-shadow(0 0 25px rgba(244, 162, 97, 0.9)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: bold;
    font-size: 32px;
    box-shadow: 0 0 25px rgba(244, 162, 97, 0.5);
    transition: var(--transition);
    flex-shrink: 0;
}

.brand-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-brand:hover {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px 12px;
    margin: -8px -12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-light);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-light);
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(230, 197, 88, 0.9)),
        rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 16px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: 
        linear-gradient(135deg, rgba(230, 197, 88, 0.95), rgba(212, 175, 55, 0.95)),
        rgba(255, 255, 255, 0.15);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-cta::after { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Seasonal Hero Backgrounds */
.hero-spring {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/assets/img/hero/team2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-summer {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/assets/img/hero/hero2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-autumn {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/assets/img/hero/hero3.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-winter {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/assets/img/hero/hero4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider {
    height: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.8),
        4px 4px 16px rgba(0,0,0,0.6),
        0 0 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.9),
        4px 4px 12px rgba(0,0,0,0.7),
        0 0 16px rgba(0,0,0,0.5);
    font-style: italic;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    text-shadow: 
        1px 1px 4px rgba(0,0,0,0.8),
        2px 2px 8px rgba(0,0,0,0.6),
        0 0 12px rgba(0,0,0,0.4);
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Swiper Customization */



/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: var(--border-radius-lg);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--secondary-light);
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 4.5vw, 3.3rem);
}

.section-description {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

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

.bg-light { background-color: var(--bg-light); }

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    position: relative;
}

.bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 50%, 
        rgba(139, 69, 19, 0.1) 100%);
    pointer-events: none;
}

/* Popular Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Package Image Placeholders */
.package-image-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.package-spring {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.package-summer {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.package-autumn {
    background: linear-gradient(135deg, #ff9a56 0%, #ffad56 100%);
}

.package-winter {
    background: linear-gradient(135deg, #d5dee7 0%, #ffafbd 100%);
}

.package-placeholder-text {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.package-placeholder-text i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
}

.package-placeholder-text span {
    font-size: 1.125rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: block;
    line-height: 1.3;
}

.package-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

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

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.package-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-description {
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.package-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.package-actions {
    display: flex;
    gap: 0.75rem;
}

.package-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 10px;
    font-size: 0.875rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Seasons Carousel */
.seasons-carousel {
    margin-top: 2rem;
}

.season-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    min-height: 400px;
}

.season-image {
    flex: 1;
    position: relative;
}

.season-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.season-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.season-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.season-content h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.season-content ul {
    list-style: none;
    margin-top: 1rem;
}

.season-content li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.season-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Reviews */
.reviews-carousel {
    margin-top: 2rem;
}

.review-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    margin: 0 10px;
}

.review-stars {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.review-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author h4 {
    margin: 0;
    color: var(--primary-color);
}

.review-author span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* How It Works */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    font-size: 2rem;
    color: var(--primary-color);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-title {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 30%, 
        rgba(139, 69, 19, 0.15) 100%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: var(--text-light);
    margin: 1rem 0;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(1.15) contrast(1.25) drop-shadow(0 0 12px rgba(244, 162, 97, 0.5));
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.25) contrast(1.35) drop-shadow(0 0 20px rgba(244, 162, 97, 0.7));
}

.footer-logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 0 25px rgba(244, 162, 97, 0.5);
    transition: var(--transition);
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-links a[href*="facebook"]:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.social-links a[href*="instagram"]:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: var(--text-light);
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: 
            linear-gradient(135deg, rgba(44, 85, 48, 0.85) 0%, rgba(26, 61, 31, 0.9) 100%),
            rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(25px) saturate(180%);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 
            -10px 0 40px rgba(44, 85, 48, 0.3),
            inset 1px 0 0 rgba(255, 255, 255, 0.1),
            -5px 0 20px rgba(0, 0, 0, 0.2);
        border-left: 2px solid rgba(212, 175, 55, 0.6);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1500;
    }
    
    .nav-menu .nav-link {
        color: var(--text-light);
        font-size: 1.2rem;
        margin: 1rem 0;
    }
    
    .nav-menu-active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .season-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Logo Shine Animation */
@keyframes logoShine {
    0% {
        filter: brightness(1.4) contrast(1.5) saturate(1.2) drop-shadow(0 0 15px rgba(244, 162, 97, 0.8)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: brightness(1.5) contrast(1.6) saturate(1.25) drop-shadow(0 0 20px rgba(244, 162, 97, 0.9)) drop-shadow(0 0 35px rgba(255, 255, 255, 0.4));
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light) !important;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-light) !important;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light) !important;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Ensure all modal header text is white and visible */
.modal-header,
.modal-header *,
.modal-header h1,
.modal-header h2,
.modal-header h3,
.modal-header span {
    color: var(--text-light) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

/* Package Details Modal */
#packageModal .modal-content {
    width: 800px;
}

.package-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.package-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.package-season {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.package-duration {
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.package-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.package-section {
    margin-bottom: 2rem;
}

.package-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.included-item i {
    color: var(--success-color);
}

.itinerary-item {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

/* Booking Modal */
#bookingModal .modal-content {
    width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--accent-color);
}

.booking-summary {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.summary-item.total {
    border-top: 1px solid var(--border-color);
    padding-top: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.error-message {
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Modal Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95vw;
        height: 95vh;
    }
    
    #packageModal .modal-content,
    #bookingModal .modal-content {
        width: 95vw;
    }
    
    .package-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        border-radius: 0;
        width: 100vw;
        height: 100vh;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
}

/* Collapsible Social Media Widget */
.social-media-widget {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-trigger {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold-lg);
    margin-bottom: 12px;
    border: 2px solid var(--secondary-light);
}

.social-trigger i {
    font-size: 26px;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-trigger:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.social-trigger.expanded {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    transform: scale(1.15) rotate(180deg);
    box-shadow: var(--shadow-gold-lg);
}

.social-icons-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.social-icons-container.expanded {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow);
    transform: scale(0);
}

.social-icons-container.expanded .social-icon {
    transform: scale(1);
}

.social-icon:nth-child(1) { transition-delay: 0.1s; }
.social-icon:nth-child(2) { transition-delay: 0.15s; }
.social-icon:nth-child(3) { transition-delay: 0.2s; }
.social-icon:nth-child(4) { transition-delay: 0.25s; }
.social-icon:nth-child(5) { transition-delay: 0.3s; }

.social-icon i {
    font-size: 20px;
    transition: var(--transition);
}

.social-icon:hover {
    transform: scale(1.2);
    box-shadow: var(--shadow-lg);
}

/* Premium Social Icon Colors */
.social-icon.whatsapp {
    background: linear-gradient(135deg, var(--success-color), #2ecc71);
    color: var(--text-light);
    border: 1px solid #2ecc71;
}

.social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #2ecc71, var(--success-color));
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: var(--text-light);
    border: 1px solid #1d4ed8;
}

.social-icon.facebook:hover {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.4);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #ec4899, #f97316, #eab308);
    color: var(--text-light);
    border: 1px solid #f97316;
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #eab308, #f97316, #ec4899);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: var(--text-light);
    border: 1px solid #0284c7;
}

.social-icon.twitter:hover {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
}

.social-icon.email {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--text-light);
    border: 1px solid var(--accent-light);
}

.social-icon.email:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    box-shadow: var(--shadow-gold-lg);
}

/* Responsive Social Widget */
@media (max-width: 768px) {
    .social-media-widget {
        right: 15px;
    }
    
    .social-trigger {
        width: 55px;
        height: 55px;
    }
    
    .social-trigger i {
        font-size: 22px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .social-media-widget {
        right: 10px;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }
    
    .nav-menu-active ~ .social-media-widget {
        opacity: 0;
        pointer-events: none;
    }
    
    .social-trigger {
        width: 50px;
        height: 50px;
    }
    
    .social-trigger i {
        font-size: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon i {
        font-size: 16px;
    }
}