/* 
   Biaja Tours & Travels - Premium Design System
   Colors based on logo directly:
   Orange (Sun): #E65100 -> Used text-orange but let's be precise.
   Cyan (Text): #00ACC1 
   Neutral: #F5F7FA (Light bg), #1F2937 (Dark text)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --primary: #DD5426;
    /* Logo Orange approx */
    --primary-light: #FF8A50;
    --primary-dark: #A3300D;

    --secondary: #1FBBDD;
    /* Logo Cyan approx */
    --secondary-light: #64D8F0;
    --secondary-dark: #0D8FA8;

    /* Neutrals */
    --bg-body: #FAFAFA;
    --bg-surface: #FFFFFF;
    --text-main: #111827;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;

    /* UI Toolkit */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

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

    --container-width: 1280px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(221, 84, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 84, 38, 0.6);
    background: var(--primary-light);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.title-display {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.title-section {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.title-section::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

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

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.0);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    height: 70px;
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary);
}

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

.nav-link {
    font-weight: 500;
    color: #fff;
    position: relative;
    padding: 0.5rem 0;
}

.header.scrolled .nav-link,
.header.static-dark .nav-link {
    color: var(--text-main) !important;
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.header-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    max-width: 650px;
    padding-top: 60px;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero.small-hero {
    height: 50vh;
    min-height: 400px;
    align-items: center;
    justify-content: center;
}

/* Destinations Cards */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;

}

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

.card-image {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-info {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Categories / Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    text-align: center;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(221, 84, 38, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.service-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Corporate Section */
.corporate-section {
    background: #111827;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.corporate-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.corporate-text {
    flex: 1;
    min-width: 300px;
}

.corporate-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-sm);
    background: #F9FAFB;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(221, 84, 38, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #0F172A;
    color: #E2E8F0;
    padding: 5rem 0 2rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
    display: block;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

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

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

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* Mobile */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .title-display {
        font-size: 2.25rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        padding: 2rem;
    }

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

    .nav-link {
        color: var(--text-main);
        font-size: 1.25rem;
    }

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

/* Language Toggle (Simple) */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-left: 1rem;
}

.header.scrolled .lang-switch,
.header.static-dark .lang-switch {
    color: var(--text-main);
}

.lang-opt {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lang-opt:hover {
    opacity: 1;
}

.lang-opt.active {
    opacity: 1;
    font-weight: 800;
    /* Make it bolder */
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--primary);
    /* Highlight active language */
}

.lang-divider {
    opacity: 0.5;
}

/* Custom Contact Form Styles */
.custom-form-container {
    padding: 1rem 0 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

/* Icons in Inputs */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-right {
    position: absolute;
    right: 1rem;
    color: var(--text-light);
    pointer-events: none;
    transition: color 0.3s;
}

.form-control:focus+.input-icon-right {
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #F3F4F6;
    border-radius: var(--radius-sm);
    background: #F9FAFB;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(221, 84, 38, 0.1);
    outline: none;
}

/* Floating Labels */
.floating-label label {
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-control:focus~label,
.form-control:not(:placeholder-shown)~label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: var(--primary);
    background: #fff;
    padding: 0 0.4rem;
}

/* Static Label for Select */
.static-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    margin-left: 0.2rem;
}

.select-wrapper {
    position: relative;
}

.select-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary);
}

select.form-control {
    appearance: none;
    cursor: pointer;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Textarea specific */
/* Textarea specific */
textarea.form-control {
    min-height: 150px;
}

/* =========================================
   PACKAGES & PAYMENT SECTION (Refined)
   ========================================= */

.paquetes-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.paquetes-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .paquetes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paquetes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paquete-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.paquete-card:hover {
    transform: translateY(-5px);
}

.paquete-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.paquete-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-main);
}

.duracion {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.precio span {
    font-size: 14px;
    color: #777;
    display: block;
}

.precio strong {
    display: block;
    font-size: 28px;
    /* Slightly larger */
    color: var(--secondary);
    /* Brand Teal instead of blue */
    margin: 5px 0 15px;
}

.paquete-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.paquete-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.paquete-content ul li i {
    color: var(--primary);
    /* Orange checks */
}

.btn-reservar {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    /* Brand Orange */
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 1rem;
}

.btn-reservar:hover {
    background: var(--primary-dark);
}



/* Submit Button & Loader */
.submit-btn {
    width: auto;
    min-width: 200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.submit-btn i {
    margin-left: 0.5rem;
}

.submit-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.submit-btn.loading span {
    display: none;
}

.submit-btn.loading .loader {
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* =========================================
   ABOUT SECTION
   ========================================= */

.about-section {
    padding: 6rem 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

.text-block {
    margin-bottom: 2.5rem;
}

.text-block h3 {
    color: var(--secondary-dark);
    /* Brand Blue/Teal */
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.text-block p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1rem;
    text-align: justify;
}

.about-image {
    position: sticky;
    top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-logo {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* =========================================
   FIXES & UTILITIES
   ========================================= */

/* Force centering for Paquetes Section Headers */
.paquetes-section .section-subtitle,
.paquetes-section .title-section,
.paquetes-section p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    /* Ensure they take full width to center text inside */
}

/* Fix title underline to be centered if it uses pseudo-element */
.paquetes-section .title-section::after {
    left: 50%;
    transform: translateX(-50%);
}

/* =========================================
   ABOUT US PAGE STYLES (USER DESIGN IMPL)
   ========================================= */

/* Hero Section */
.about-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/hero-about.jpg') center/cover no-repeat;
    /* Fallback if image missing */
    background-color: #2c3e50;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: -80px;
    /* Counteract main padding if needed, or adjust structure */
}

/* Adjust main padding for this page if using full width hero */
body.about-page main {
    padding-top: 0;
}

.about-hero .overlay {
    max-width: 800px;
    padding: 2rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.about-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* General Grid */
.about-history,
.about-security {
    padding: 100px 0;
}

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

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

.about-grid img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.about-grid img:hover {
    transform: scale(1.02);
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse>div {
    direction: ltr;
}

/* Section Tag */
.section-tag {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.about-history h2,
.about-security h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-dark);
    line-height: 1.2;
}

.about-history p,
.about-security p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Awards Section */
.about-awards {
    background: #f8fafc;
    padding: 100px 0;
    text-align: center;
}

.about-awards h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 3rem;
}

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

.card-award {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-align: center;
}

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

.card-award h3 {
    font-size: 1.25rem;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.card-award i {
    color: #FFD700;
    /* Gold */
    font-size: 1.5rem;
}

.card-award p {
    color: var(--text-muted);
}


/* Security List */
.highlight-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.highlight-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-main);
}

.highlight-list li i {
    color: var(--primary);
}


/* Mission & Vision (Dark) */
.mission-vision {
    background: #0f172a;
    color: white;
    padding: 100px 0;
    margin-bottom: -5rem;
    /* Remove padding bottom overlap with footer if any */
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.mv-card-dark {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.mv-card-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.mv-card-dark h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
}

.mv-card-dark p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}


/* Values Grid Dark */
.values-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: white;
}

.values-grid-dark {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.value-item-dark {
    text-align: center;
}

.value-item-dark .icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary-light);
    height: 80px;
    width: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.value-item-dark:hover .icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.value-item-dark h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-item-dark p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}


/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */

/* Fix for fixed header */
.about-hero {
    margin-top: var(--header-height);
    /* Clear the fixed header */
    height: 60vh;
    min-height: 500px;
    background: radial-gradient(circle at center, #1e3c72, #2a5298, #0f172a);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .overlay {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.about-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    opacity: 0.9;
}

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

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-main);
}

/* History Section */
.about-history {
    background-color: var(--bg-body);
}

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

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-tag {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.about-text p {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Awards Section */
.about-awards {
    background-color: #F8FAFC;
}

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

.award-card {
    background: var(--bg-surface);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.award-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.award-card p {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Security Section */
.highlight-list {
    list-style: none;
    margin-top: 1.5rem;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-main);
}

.highlight-list li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Mission & Vision (Dark) */
.mission-vision {
    background: #111827;
    color: white;
    padding: 100px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mv-card p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-title {
    color: white;
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 cols for 5 values */
    gap: 20px;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    transition: var(--transition-fast);
}

.value-item:hover .value-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.value-item h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.value-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {

    .about-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid .reverse {
        order: -1;
        /* Image first on mobile */
    }

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

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

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

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

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

    .about-container {
        width: 90%;
    }
}

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