/* 
* Dream Land Global Consultants - Premium "Human" Design System
* Theme: Luxury Editorial (Playfair Display + Lato)
*/

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Refined Color Palette */
    --primary-color: #0F172A;
    /* Deep Navy - softer than pure black */
    --primary-light: #1E293B;
    --accent-color: #C5A059;
    /* Muted Gold - more metallic, less "yellow" */
    --accent-light: #E5C376;

    --bg-body: #F8F9FA;
    /* Off-white/Slate tint for depth */
    --bg-white: #FFFFFF;

    --text-main: #334155;
    --text-heading: #0F172A;
    --text-light: #64748B;

    /* Spacing System */
    --spacing-section: 120px;
    /* Generous spacing */
    --spacing-card: 40px;

    /* Shadows - Soft & Diffused */
    --shadow-soft: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 30px 60px -12px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.8;
    /* Increased line-height for readability */
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Header & Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar-brand img {
    height: 55px;
    /* Slightly larger */
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.02);
}

.nav-link {
    color: var(--text-heading) !important;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 25px !important;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
    opacity: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    /* Squared edges for luxury feel */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-outline-light {
    border-radius: 0;
    padding: 14px 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-width: 1px;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

/* Updated Hero Section - Cinematic */
.hero-section {
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: #000;
    /* Loading placeholder */
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
    /* Parallax effect */
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
}

/* Feature/Info Bar - Minimalist */
.info-bar {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box {
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.feature-box h5 {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* Section Styling */
.section-padding {
    padding: var(--spacing-section) 0;
}

.section-header {
    margin-bottom: 80px;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Editorial Cards */
.editorial-card {
    background: #fff;
    border: none;
    border-radius: 0;
    transition: all 0.5s ease;
    height: 100%;
    margin-bottom: 30px;
    /* Safety margin for mobile/wrap */
}

/* Ensure sections contain their floated/flex children */
section {
    position: relative;
}

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

.editorial-card .card-img-wrap {
    height: 220px;
    /* Reduced for compact look */
    overflow: hidden;
    position: relative;
}

.editorial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.editorial-card .card-body {
    padding: 25px;
    /* Reduced padding */
}

.editorial-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.text-gold {
    color: var(--accent-color) !important;
}

/* --- NEW SECTIONS STYLES --- */

/* Statistics Section */
.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Process Timeline (Vertical) */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e9ecef;
    transform: translateX(-50%);
}

.timeline-item {
    padding-bottom: 60px;
    position: relative;
}

.timeline-content {
    padding: 30px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    position: relative;
    width: 45%;
    border-top: 3px solid var(--accent-color);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-point {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 4px solid #fff;
}

/* Team Section */
/* Team Section - Premium Modern */
.team-card {
    background: #fff;
    text-align: center;
    padding: 50px 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    /* Soft rounding */
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

.team-img-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 5px;
    background: transparent;
    border: 2px solid var(--accent-color);
    transition: all 0.4s ease;
}

.team-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    /* Slight offset from top to frame face perfectly */
    filter: none;
    /* Clear image */
    transition: all 0.4s ease;
}

.team-card:hover .team-img-wrap {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(197, 160, 89, 0.2);
    /* Gold glow ring */
}

.team-card:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.accordion-button {
    background: #fff;
    padding: 25px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid #eee;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
}

.accordion-button::after {
    filter: grayscale(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(100%);
}

.accordion-body {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-top: none;
    color: var(--text-light);
}

/* WhatsApp Float - Fixed & Clean */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding-top: 100px;
    padding-bottom: 40px;
    font-family: var(--font-body);
}

.footer h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-logo img {
    filter: brightness(0) invert(1);
    /* Make logo white */
    opacity: 0.9;
}

/* Responsive Design System */
@media (max-width: 991px) {

    /* Tablet & Mobile Navigation */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    /* Global Typography Scaling */
    html {
        font-size: 14px;
        /* Base scale down */
    }

    h1,
    .display-3,
    .display-4 {
        font-size: 2.5rem !important;
        word-wrap: break-word;
    }

    h2,
    .display-5 {
        font-size: 2rem !important;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Spacing Reduction */
    :root {
        --spacing-section: 60px;
        /* Halve spacing on mobile */
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Layout Stacking */
    .row.align-items-center {
        text-align: center;
        /* Center align text on mobile for better balance */
    }

    .row.align-items-center .text-start {
        text-align: center !important;
    }

    /* Reverse Column Fix for Alternating Layouts (Destinations) */
    .flex-row-reverse {
        flex-direction: row !important;
        /* Reset to normal flow first */
    }

    .row>* {
        width: 100%;
        /* Force full width cols */
    }

    /* Team Section Mobile */
    .team-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .team-img-wrap {
        width: 140px;
        height: 140px;
    }

    /* Contact Page Mobile */
    .glass-card {
        padding: 20px !important;
    }

    .contact-split-layout {
        flex-direction: column;
    }

    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        padding: 20px;
    }

    .timeline-point {
        left: 20px;
    }

    /* Destinations Page Mobile */
    .destination-block .row {
        flex-direction: column !important;
        /* Stack vertically */
    }

    .destination-block img {
        height: 300px !important;
        /* Reduce image height */
    }

    /* Specific overrides for visual balance */
    .section-header p {
        font-size: 1rem;
    }

    .hero-section {
        min-height: 500px;
        height: auto;
        padding: 100px 0;
    }

    /* Hide decorative borders on mobile if they take too much space */
    .border-start {
        border-left: none !important;
        border-top: 4px solid var(--accent-color) !important;
        padding-left: 0 !important;
        padding-top: 20px !important;
    }

    /* Footer */
    .footer {
        text-align: center;
    }

    .footer-links {
        margin-bottom: 30px;
    }

    .copyright .text-md-end,
    .copyright .text-md-start {
        text-align: center !important;
    }
}

/* Scholarship Spotlight Section */
.scholarship-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.scholarship-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.scholarship-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.scholarship-badge {
    background: var(--accent-color);
    color: #000;
    font-weight: 700;
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}