/* ==========================================================================
   SUBHA LAXMI TOURS & TRAVELS - MODERN DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --- CSS VARIABLES & DESIGN TOKENS --- */
:root {
    --primary-navy: #07162c;
    --secondary-navy: #0b1d3a;
    --primary-orange: #f25816;
    --primary-orange-hover: #d94708;
    --accent-blue: #0284c7;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #f1f5f9;
    --border-light: #e2e8f0;
    
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Caveat', 'Yellowtail', cursive;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(11, 29, 58, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(11, 29, 58, 0.12);
    --shadow-glow: 0 8px 25px rgba(242, 88, 22, 0.35);

    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   1. TOP INFORMATION HEADER BAR
   ========================================================================== */
.top-bar {
    background-color: var(--primary-navy);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-info-link, .top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-weight: 500;
}

.top-info-link:hover {
    color: var(--primary-orange);
}

.top-info-link i, .top-info-item i {
    color: var(--primary-orange);
    font-size: 0.95rem;
}

.top-bar-left .divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.social-icon-link:hover {
    background-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* ==========================================================================
   2. MAIN NAVIGATION BAR
   ========================================================================== */
.main-navbar {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

.main-navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    padding: 2px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 95px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.main-navbar.scrolled .brand-logo {
    height: 75px;
}

/* Navigation Menu */
.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
    padding: 10px 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--primary-orange);
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
}

.dropdown-link:hover {
    background-color: #fff7ed;
    color: var(--primary-orange);
    padding-left: 24px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.btn-plan-trip {
    background-color: var(--primary-orange);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(242, 88, 22, 0.3);
}

.btn-plan-trip:hover {
    background-color: var(--primary-orange-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-navy);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.mobile-nav-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   3. HERO SECTION WITH CONCAVE CURVED BOTTOM
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 140px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroZoomIn 20s infinite alternate ease-in-out;
    transform-origin: center center;
}

@keyframes heroZoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(7, 22, 44, 0.65) 0%, 
        rgba(11, 29, 58, 0.45) 50%,
        rgba(7, 22, 44, 0.55) 100%
    );
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 2;
}

.hero-text-content {
    max-width: 680px;
    color: #ffffff;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 14px;
    text-transform: uppercase;
    opacity: 0.95;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.script-highlight {
    font-family: var(--font-script);
    color: var(--primary-orange);
    font-size: 4.5rem;
    font-weight: 700;
    display: inline-block;
    transform: rotate(-2deg);
    margin-left: 8px;
    line-height: 0.8;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 34px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(242, 88, 22, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background-color: #ffffff;
    color: var(--secondary-navy);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.btn-icon {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* TOP CURVED DIVIDER BELOW NAVBAR */
.hero-top-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-top-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* CONCAVE CURVED BOTTOM DIVIDER SVG */
.hero-concave-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-concave-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* ==========================================================================
   4. FLOATING FEATURES HIGHLIGHT SECTION
   ========================================================================== */
.features-floating-section {
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.floating-features-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(11, 29, 58, 0.1);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -45px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-smooth);
}

.floating-features-card:hover {
    box-shadow: 0 25px 60px rgba(11, 29, 58, 0.14);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
    padding: 8px 12px;
}

.feature-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.feature-item:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Icon Palette Variants matching the reference design */
.icon-blue {
    background-color: #e0f2fe;
    color: #0284c7;
}

.icon-orange {
    background-color: #ffedd5;
    color: #ea580c;
}

.icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.icon-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.icon-blue-accent {
    background-color: #dbeafe;
    color: #2563eb;
}

.feature-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.25;
}

.feature-info p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.25;
}

.feature-card-divider {
    width: 1px;
    height: 42px;
    background-color: var(--border-light);
    flex-shrink: 0;
}

/* ==========================================================================
   5. RESPONSIVE BREAKPOINTS & MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    .script-highlight {
        font-size: 3.8rem;
    }
    .floating-features-card {
        padding: 20px 16px;
    }
    .feature-item {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .top-bar-left .divider,
    .top-info-item {
        display: none;
    }

    .hero-section {
        min-height: 580px;
        padding-top: 60px;
        padding-bottom: 120px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .script-highlight {
        font-size: 3.4rem;
    }

    .floating-features-card {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: -30px;
    }

    .feature-item {
        flex: 1 1 calc(33.33% - 20px);
        justify-content: flex-start;
    }

    .feature-card-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .brand-logo {
        height: 160px;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 32px;
        transition: var(--transition-smooth);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 16px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        display: none;
        padding-left: 16px;
        background-color: var(--bg-light);
        margin-top: 8px;
    }

    .nav-item.has-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-cta-wrapper {
        width: 100%;
        margin-top: 24px;
    }

    .btn-plan-trip {
        width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .script-highlight {
        font-size: 2.8rem;
        display: block;
        margin-left: 0;
        margin-top: 6px;
    }

    .hero-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-explore, .btn-contact {
        width: 100%;
    }

    .feature-item {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (max-width: 480px) {
    .feature-item {
        flex: 1 1 100%;
    }
}

/* ==========================================================================
   SHARED SECTION UTILITIES & TYPOGRAPHY
   ========================================================================== */
.section-padding {
    padding: 90px 0;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.25;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.section-header-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-header-left {
    margin-bottom: 48px;
}

.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background-color: #ffffff;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--primary-orange);
    color: #ffffff;
    border-color: var(--primary-orange);
}

.btn-outline-orange {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    background-color: transparent;
}

.btn-outline-orange:hover {
    background-color: var(--primary-orange);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   1. POPULAR PACKAGES SECTION
   ========================================================================== */
.packages-section {
    background-color: #ffffff;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.package-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(242, 88, 22, 0.3);
}

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

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.package-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: var(--primary-orange);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(242, 88, 22, 0.4);
}

.package-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
    line-height: 1.35;
}

.package-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

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

.package-price-row {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--border-light);
}

.price-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-orange);
}

/* ==========================================================================
   2. ABOUT US SECTION
   ========================================================================== */
.about-section {
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text-content .btn-outline-orange {
    margin-top: 10px;
}

/* About Visual Collage */
.about-visual-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    align-items: center;
}

.collage-main-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 380px;
}

.collage-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-side-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-img-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 180px;
}

.collage-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    left: -20px;
    background-color: #ffffff;
    padding: 16px 24px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(11, 29, 58, 0.14);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 5;
}

.exp-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.25;
}

/* ==========================================================================
   3. WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-section {
    background-color: #ffffff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.why-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(242, 88, 22, 0.4);
}

.why-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #fff4ed;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
    transition: var(--transition-fast);
}

.why-card:hover .why-icon-box {
    background-color: var(--primary-orange);
    color: #ffffff;
}

.why-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
    line-height: 1.3;
}

.why-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   TOUR DIARIES SECTION
   ========================================================================== */
.diaries-section {
    background-color: #ffffff;
}

.header-accent-line {
    width: 48px;
    height: 3px;
    background-color: var(--primary-orange);
    border-radius: 3px;
    margin: 12px auto 0;
}

.diaries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.diary-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.diary-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(242, 88, 22, 0.35);
}

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

.diary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.diary-content {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.diary-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.35;
}

.diary-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.diaries-btn-wrapper {
    text-align: center;
    margin-top: 10px;
}

.btn-view-diaries {
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
}

/* ==========================================================================
   4. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--primary-orange);
    font-family: Georgia, serif;
    margin-bottom: -10px;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-orange);
}

.user-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
}

.user-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.star-rating {
    color: #fbbf24;
    font-size: 0.75rem;
    margin-top: 4px;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    width: 24px;
    border-radius: 10px;
    background-color: var(--primary-orange);
}

/* ==========================================================================
   5. CONTACT US SECTION
   ========================================================================== */
.contact-section {
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.1fr;
    gap: 28px;
}

.contact-info-card {
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid var(--border-light);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff4ed;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-text .label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.info-text a, .info-text span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
}

.info-text a:hover {
    color: var(--primary-orange);
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background-color: var(--bg-light);
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--text-heading);
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary-orange);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(242, 88, 22, 0.1);
}

.form-textarea {
    resize: vertical;
}

.btn-send-message {
    margin-top: 8px;
    align-self: flex-start;
}

.contact-map-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: 100%;
    min-height: 320px;
}

.map-container {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   6. FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--primary-navy);
    color: #e2e8f0;
    padding-top: 80px;
    padding-bottom: 24px;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    margin-bottom: 18px;
}

.footer-about-text {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--primary-orange);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: var(--transition-fast);
}

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

.footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 24px;
}

.newsletter-text {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 14px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--primary-orange);
    background-color: rgba(255, 255, 255, 0.12);
}

.btn-subscribe {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 12px;
}

.heart-icon {
    color: var(--primary-orange);
}

/* ==========================================================================
   RESPONSIVE LAYOUT ADJUSTMENTS FOR NEW SECTIONS
   ========================================================================== */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual-wrapper {
        margin-top: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .diaries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diaries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .diaries-grid {
        grid-template-columns: 1fr;
    }

    .about-visual-wrapper {
        grid-template-columns: 1fr;
    }

    .collage-side-stack {
        display: none;
    }
}
