/* === GLOBAL STYLES === */
:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1e40af;
    --secondary: #f59e0b;
    --secondary-light: #fbbf24;
    --secondary-dark: #d97706;
    --danger: #dc2626;
    --warning: #f59e0b;
    --success: #10b981;
    --dark: #1f2937;
    --gray-dark: #4b5563;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --light: #f9fafb;
    --white: #ffffff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

.insight-page {
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--primary-light);
    color: white;
    margin-bottom: 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* === NAVIGATION === */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(31, 41, 55, 0.95);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
    height: 40px;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    position: relative;
}

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

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

/* === HERO SECTION === */
.insight-hero {
    height: 500px;
    background: 
    /* linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),  */
                url('../resources/images/TravelInsights\ &\ Advisory.jpg') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* Account for fixed navbar */
    height: 70vh;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
}

.search-box button {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background-color: var(--secondary-dark);
}

/* === ADVISORY SECTION === */
.advisory-section {
    padding: 80px 0;
    background-color: var(--white);
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advisory-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--gray-light);
}

.advisory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.advisory-card.critical {
    border-left-color: var(--danger);
}

.advisory-card.warning {
    border-left-color: var(--warning);
}

.advisory-card.notice {
    border-left-color: var(--success);
}

.advisory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--light);
    border-bottom: 1px solid var(--gray-light);
}

.alert-level {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.critical .alert-level {
    background-color: rgba(220, 38, 38, 0.1);
    color: var(--danger);
}

.warning .alert-level {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.notice .alert-level {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.date {
    font-size: 0.75rem;
    color: var(--gray);
}

.advisory-card h3 {
    padding: 0 20px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.advisory-card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.read-more {
    display: inline-block;
    padding: 0 20px 20px;
    font-weight: 600;
    color: var(--primary);
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.btn-view-all {
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* === STORIES SECTION === */
.stories-section {
    padding: 80px 0;
    background-color: var(--light);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.story-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.story-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.story-card.featured .story-image {
    height: 100%;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.story-content {
    padding: 20px;
}

.story-card.featured .story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.meta span {
    display: flex;
    align-items: center;
}

.meta .category {
    background-color: var(--light);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--primary);
    font-weight: 500;
}

.story-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.story-card p {
    color: var(--gray-dark);
    margin-bottom: 15px;
}

/* === ABOUT EDGEWAY SECTION === */
.about-edgeway {
    padding: 80px 0;
    background-color: var(--white);
}

.about-edgeway  .row .col-lg-6 {
}
.mission-box, .values-box, .specialty-box {
    background-color: var(--light);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mission-box h3, .values-box h3, .specialty-box h3 {
    display: flex;
    align-items: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.mission-box h3 i, .values-box h3 i, .specialty-box h3 i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--gray-light);
}

.values-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.values-list li i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 3px;
}

.image-collage {
    position: relative;
    /* height: 100%; */
    
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-caption {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 20px;
    font-weight: 500;
}

.secondary-images {
    display: flex;
    gap: 20px;
}

.secondary-images img {
    border-radius: 12px;
    width: 100%;
    height: 180px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.specialty-item {
    margin-bottom: 20px;
}

.specialty-item:last-child {
    margin-bottom: 0;
}

.specialty-item h4 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.specialty-item h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    margin-right: 10px;
}

/* === TEAM SECTION === */
.trusted-brands {
    padding: 80px 0;
    background-color: var(--white);
}

.brands-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.brands-carousel img {
    max-height: 100px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    object-fit: contain;
}

.brands-carousel img:hover {
    opacity: 1;
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.5);
    transition: all 0.3s ease-in-out;
}
.team-section {
    padding: 80px 0;
    background-color: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.social-links {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-member:hover .social-links {
    opacity: 1;
    transform: translateY(0);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.position {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.875rem;
}

.bio {
    color: var(--gray-dark);
    font-size: 0.875rem;
}

.team-departments {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.team-departments h3 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.department-list {
    list-style: none;
}

.department-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray-light);
}

.department-list li:last-child {
    border-bottom: none;
}

.department-list li i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 1.25rem;
}

/* === FOUNDER'S MESSAGE === */
.founder-message {
    padding: 80px 0;
    background-color: var(--white);
}

.message-card {
    background-color: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.founder-image {
    height: 100%;
}

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

.message-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message-content .badge {
    margin-bottom: 20px;
    align-self: flex-start;
}

.message-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--gray-light);
    font-family: serif;
    line-height: 1;
}

.signature {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.title {
    color: var(--gray);
    font-size: 0.875rem;
}

/* === NEWSLETTER SECTION === */
.newsletter-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
}

.newsletter-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.newsletter-content {
    padding: 40px;
    background-color: var(--primary);
    color: white;
}

.newsletter-content h2 {
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
}

.btn-subscribe {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: var(--secondary-dark);
}

.newsletter-image {
    height: 100%;
}

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

/* === FOOTER === */
.insight-footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 20px;
}

.footer-brand .footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

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

.contact-info {
    list-style: none;
}

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

.contact-info i {
    margin-right: 10px;
    color: var(--secondary);
    font-size: 1.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.8;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
    .story-card.featured {
        grid-template-columns: 1fr;
    }
    
    .message-card,
    .newsletter-card {
        grid-template-columns: 1fr;
    }
    
    .founder-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .secondary-images {
        flex-direction: column;
    }
    
    .secondary-images img {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box input {
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .search-box button {
        border-radius: 8px;
        padding: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        margin-top: 15px;
        justify-content: center;
    }
}