/* ==========================================================================
   BHM Holding — Main Stylesheet
   Version: 1.0.0
   Author: BHM Holding Web Team
   Description: Production-quality stylesheet for BHM Holding corporate site
   ========================================================================== */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */

:root {
    /* Brand Colors */
    --navy-dark:      #002266;
    --navy:           #003399;
    --green:          #FFCC00;
    --green-dark:     #E6B800;
    --gold:           #FFCC00;
    --gold-dark:      #E6B800;

    /* Neutral Colors */
    --gray-light:     #F5F7FA;
    --gray-dark:      #2C3E50;
    --gray-medium:    #7F8C8D;
    --white:          #FFFFFF;

    /* Gradients */
    --gradient-hero:  linear-gradient(135deg, rgba(10,22,40,0.85), rgba(0,51,153,0.4));
    --gradient-btn:   linear-gradient(135deg, #FFCC00, #E6B800);

    /* Shadows */
    --shadow-card:       0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition: all 0.3s ease;

    /* Border Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

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

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background-color: var(--green);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--green);
    color: var(--white);
}

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

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

a:hover {
    text-decoration: none;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h1 { font-size: 56px; }
h2 { font-size: 42px; font-weight: 600; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray-medium);
}

.accent-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 700;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--gray-medium);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.small-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    display: block;
    margin-bottom: 10px;
}

blockquote {
    border-left: 4px solid var(--green);
    padding: 16px 24px;
    margin: 24px 0;
    color: var(--navy);
    font-size: 1.1rem;
    font-style: italic;
    background: var(--gray-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ==========================================================================
   4. UTILITY CLASSES
   ========================================================================== */

/* Color Utilities */
.text-green  { color: var(--green) !important; }
.text-navy   { color: var(--navy-dark) !important; }
.text-white  { color: var(--white) !important; }
.text-gray   { color: var(--gray-medium) !important; }

/* Background Utilities */
.bg-navy       { background-color: var(--navy-dark); color: var(--white); }
.bg-navy-light { background-color: var(--navy); }
.bg-light      { background-color: var(--gray-light); }
.bg-green      { background-color: var(--green); }

/* Spacing */
.section-padding {
    padding: 100px 0;
}

/* Container */
.container-custom {
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

/* Section Title with Green Underline */
.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--green);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-title.text-left,
.section-title.align-left {
    text-align: left;
}

.section-title.text-left::after,
.section-title.align-left::after {
    margin-left: 0;
}

/* Divider */
.divider-green {
    width: 60px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    margin: 16px 0;
}

.divider-green.center {
    margin: 16px auto;
}

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Aspect Ratios */
.ratio-16x9 { aspect-ratio: 16/9; }
.ratio-4x3  { aspect-ratio: 4/3; }

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

/* Base Button Reset */
.btn-primary-green,
.btn-outline-white,
.btn-outline-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    white-space: nowrap;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    appearance: none;
}

/* Primary Green Button */
.btn-primary-green {
    background: var(--gradient-btn);
    color: #002266;
    border-color: var(--gold, #FFCC00);
    font-weight: 700;
}

.btn-primary-green:hover,
.btn-primary-green:focus {
    background: linear-gradient(135deg, #E6B800, #D4A500);
    color: #002266;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
    text-decoration: none;
}

.btn-primary-green:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Outline White Button */
.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background-color: var(--white);
    color: var(--navy-dark);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-outline-white:active {
    transform: translateY(0);
}

/* Outline Green Button */
.btn-outline-green {
    background-color: transparent;
    color: var(--green);
    border-color: var(--green);
}

.btn-outline-green:hover,
.btn-outline-green:focus {
    background-color: var(--green);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.35);
}

.btn-outline-green:active {
    transform: translateY(0);
}

/* Large Button Modifier */
.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

/* Icon Buttons */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: var(--transition);
}

/* Bootstrap overrides */
.btn-success {
    background: var(--gradient-btn);
    border-color: var(--green-dark);
    font-weight: 600;
}

.btn-success:hover {
    background: linear-gradient(135deg, #002d80, #001a4d);
    border-color: #001a4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.35);
}

/* ==========================================================================
   6. CARDS
   ========================================================================== */

.card-custom {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
    border: none;
    height: 100%;
}

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

.card-custom .card-img-top {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.card-custom:hover .card-img-top {
    transform: scale(1.03);
}

.card-custom .card-body {
    padding: 24px;
}

.card-custom .card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-custom .card-text {
    color: var(--gray-medium);
    font-size: 15px;
    line-height: 1.7;
}

.card-custom .card-footer {
    background: transparent;
    border-top: 1px solid var(--gray-light);
    padding: 16px 24px;
}

/* ==========================================================================
   7. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    padding: 15px 0;
    background: transparent;
}

.site-header.scrolled {
    background-color: var(--navy-dark);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.site-header .navbar {
    background: transparent !important;
    padding: 0;
}

.site-header .navbar-brand {
    padding: 0;
}

.site-header .navbar-brand img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

/* Nav Links */
.site-header .nav-link {
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.3s ease;
}

.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--green);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.site-header .nav-link:hover,
.site-header .nav-link.active,
.site-header .nav-link:focus {
    color: var(--green) !important;
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown */
.site-header .dropdown-menu {
    background-color: var(--navy-dark);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    padding: 8px 0;
    margin-top: 8px;
    min-width: 200px;
}

.site-header .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--transition);
    letter-spacing: 0.03em;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus {
    background-color: rgba(46, 204, 113, 0.15);
    color: var(--green);
}

/* Hamburger Toggle */
.site-header .navbar-toggler {
    border: none;
    padding: 6px;
    background: transparent;
    outline: none;
    box-shadow: none !important;
}

.site-header .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.site-header .navbar-toggler-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 7px);
}

.site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
}

/* Search Toggle */
.search-toggle {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 20px;
    padding: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.search-toggle:hover {
    color: var(--green);
}

/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 120px;
    width: 100%;
}

/* Hero Slides */
.hero-slide {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: all;
}

.hero-slide.exit {
    opacity: 0;
    transform: translateY(-30px);
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 22px;
    font-family: var(--font-accent);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Scroll Arrow */
.hero-scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    cursor: pointer;
    color: var(--white);
    font-size: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-scroll-arrow:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40%                      { transform: translateX(-50%) translateY(-12px); }
    60%                      { transform: translateX(-50%) translateY(-6px); }
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-indicator.active {
    background: var(--green);
    transform: scale(1.3);
}

/* Hero Background Image Fallback */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* ==========================================================================
   9. ABOUT TEASER / STATS
   ========================================================================== */

.stats-section {
    position: relative;
}

.stats-card {
    text-align: center;
    padding: 40px 20px;
    transition: var(--transition);
}

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

.stats-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stats-label {
    color: var(--gray-medium);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stats-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
    align-self: stretch;
    margin: 10px 0;
}

/* About Intro */
.about-intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-dark);
}

.about-badge {
    display: inline-block;
    background: rgba(46, 204, 113, 0.12);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* ==========================================================================
   10. BUSINESS CARDS (SECTOR CARDS)
   ========================================================================== */

.business-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.business-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

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

.business-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 30%, rgba(10, 22, 40, 0.1) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.business-card:hover .overlay {
    background: linear-gradient(to top, rgba(10, 22, 40, 0.92) 40%, rgba(26, 155, 82, 0.25) 100%);
}

.business-card .content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: var(--white);
    z-index: 2;
}

.business-card .content .card-icon {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--green);
    display: block;
}

.business-card .content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.business-card .content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    line-height: 1.6;
}

.business-card:hover .content p {
    max-height: 80px;
    opacity: 1;
}

.business-card .content .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.business-card:hover .content .learn-more {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   11. HIGHLIGHT SECTIONS (PETROLEUM / RENEWABLE SPLITS)
   ========================================================================== */

.highlight-section {
    position: relative;
    overflow: hidden;
}

.highlight-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.highlight-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.3), transparent);
    border-radius: var(--radius-lg);
}

.highlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 40px 0;
}

.highlight-content .section-subtitle {
    margin-bottom: 12px;
}

.highlight-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.25;
}

.highlight-content .lead {
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.85;
}

.highlight-features {
    margin-bottom: 32px;
}

.highlight-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.highlight-feature-item .feature-icon {
    color: var(--green);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.highlight-feature-item span {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ==========================================================================
   12. GOVERNANCE TEASER
   ========================================================================== */

.governance-teaser {
    text-align: center;
    padding: 80px 0;
}

.governance-teaser-inner {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.governance-teaser h2 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 20px;
}

.governance-teaser p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 32px;
}

.governance-teaser .btn-primary-green {
    margin: 0 8px;
}

/* ==========================================================================
   13. NEWS CARDS
   ========================================================================== */

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.news-card .news-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.news-card .category-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    line-height: 1;
}

.news-card .news-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card .news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.news-card .news-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-medium);
    font-size: 13px;
    font-weight: 500;
}

.news-card .news-date i {
    font-size: 12px;
    color: var(--green);
}

.news-card .news-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 12px;
    line-height: 1.45;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: var(--green-dark);
}

.news-card .news-excerpt {
    color: var(--gray-medium);
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.news-card .news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.news-card .news-link:hover {
    gap: 10px;
    color: var(--green-dark);
}

/* News Category Filter */
.news-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.news-filter-btn {
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--gray-medium);
    transition: var(--transition);
}

.news-filter-btn:hover,
.news-filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* ==========================================================================
   14. OFFICE CARDS
   ========================================================================== */

.office-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border-bottom: 3px solid var(--green);
    background: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    height: 100%;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    background: var(--gray-light);
}

.office-card .office-flag {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
}

.office-card .office-city {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.office-card .office-country {
    font-size: 14px;
    color: var(--gray-medium);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.office-card .office-address {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.office-badge {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    line-height: 1;
}

.office-badge-soon {
    display: inline-block;
    background: var(--gray-medium);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    line-height: 1;
}

/* ==========================================================================
   15. PAGE HERO (INNER PAGES)
   ========================================================================== */

.page-hero {
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
}

.page-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 22, 40, 0.85) 60%, rgba(10, 22, 40, 0.4) 100%);
    z-index: 1;
}

.page-hero .page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-hero h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.04em;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s ease;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--green);
}

.breadcrumb-item.active {
    color: var(--green);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--green);
    font-weight: 600;
    padding-right: 8px;
    margin-left: 0;
}

/* ==========================================================================
   16. ACCORDION (FINANCIAL SERVICES)
   ========================================================================== */

.accordion-custom .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: transparent;
    margin-bottom: 2px;
}

.accordion-custom .accordion-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.accordion-custom .accordion-button {
    background-color: var(--navy-dark);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 24px;
    border-radius: var(--radius-md) !important;
    box-shadow: none !important;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background-color: var(--navy-dark);
    color: var(--green);
    border-left: 4px solid var(--green);
    padding-left: 20px;
    border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
}

.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: brightness(2);
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232ECC71'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
}

.accordion-custom .accordion-body {
    padding: 24px;
    background-color: var(--gray-light);
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.8;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Dark variant for accordion on dark backgrounds */
.accordion-custom.accordion-dark .accordion-item {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.1) !important;
}

.accordion-custom.accordion-dark .accordion-button {
    background: transparent !important;
    color: white !important;
}

.accordion-custom.accordion-dark .accordion-button:not(.collapsed) {
    background: rgba(255,255,255,0.05) !important;
    color: var(--green) !important;
    border-left: 4px solid var(--green);
}

.accordion-custom.accordion-dark .accordion-body {
    background: rgba(255,255,255,0.03) !important;
    color: rgba(255,255,255,0.75) !important;
}

.accordion-custom.accordion-dark .accordion-body ul li {
    color: rgba(255,255,255,0.7);
}

.accordion-custom .accordion-body ul {
    list-style: none;
    padding: 0;
}

.accordion-custom .accordion-body ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.accordion-custom .accordion-body ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
}

/* ==========================================================================
   17. CONTACT FORM
   ========================================================================== */

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--navy-dark);
    font-size: 14px;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-light);
    padding: 12px 16px;
    font-size: 15px;
    color: var(--gray-dark);
    background-color: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.5;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
    outline: none;
    background-color: var(--white);
}

.contact-form .form-control::placeholder {
    color: var(--gray-medium);
    opacity: 0.7;
}

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

.contact-form .form-check-input:checked {
    background-color: var(--green);
    border-color: var(--green);
}

.contact-form .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
    border-color: var(--green);
}

/* Contact Info */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item .icon-box {
    width: 44px;
    height: 44px;
    background: rgba(46, 204, 113, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item .info-text h6 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-medium);
    margin-bottom: 4px;
}

.contact-info-item .info-text p {
    font-size: 15px;
    color: var(--navy-dark);
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   18. SEARCH MODAL
   ========================================================================== */

.search-modal .modal-content {
    background-color: var(--navy-dark);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    padding: 20px 0;
}

.search-modal .modal-header {
    border-bottom: none;
    padding: 20px 40px 10px;
}

.search-modal .modal-body {
    padding: 20px 40px 40px;
}

.search-modal .modal-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.search-modal .btn-close {
    filter: invert(1);
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.search-modal .btn-close:hover {
    opacity: 1;
}

.search-modal .search-input-wrapper {
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease;
}

.search-modal .search-input-wrapper:focus-within {
    border-color: var(--green);
}

.search-modal input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 28px;
    font-weight: 300;
    padding: 16px 0;
    width: 100%;
    caret-color: var(--green);
}

.search-modal input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-modal .search-submit-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-btn);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-modal .search-submit-btn:hover {
    background: linear-gradient(135deg, #002d80, #001a4d);
    transform: translateY(-50%) scale(1.05);
}

.search-modal .search-suggestions {
    margin-top: 24px;
}

.search-modal .suggestion-label {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.search-modal .suggestion-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-modal .suggestion-tag:hover {
    background: rgba(46, 204, 113, 0.2);
    color: var(--green);
    border-color: var(--green);
}

/* ==========================================================================
   19. FOOTER
   ========================================================================== */

.site-footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

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

/* Footer Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--green);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-contact-item a:hover {
    color: var(--green);
}

/* Footer Newsletter */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-newsletter .newsletter-form {
    display: flex;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.footer-newsletter input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-bottom: none;
    color: var(--white);
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    transition: background 0.3s ease;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter input:focus {
    background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter button {
    background: var(--gradient-btn);
    border: none;
    color: var(--white);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-newsletter button:hover {
    background: linear-gradient(135deg, #002d80, #001a4d);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    margin-top: 48px;
}

.footer-bottom p,
.footer-bottom span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    margin: 0;
}

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

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* ==========================================================================
   20. ANIMATIONS
   ========================================================================== */

/* Animate On Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Fade In Up utility class */
.fade-in-up {
    animation: fadeInUp 0.7s ease forwards;
}

/* ==========================================================================
   21. PAGINATION
   ========================================================================== */

.pagination {
    gap: 4px;
}

.pagination .page-link {
    color: var(--navy-dark);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm) !important;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    background: var(--white);
    line-height: 1.4;
}

.pagination .page-link:hover {
    background-color: var(--gray-light);
    border-color: var(--green);
    color: var(--green);
    box-shadow: none;
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
    outline: none;
}

.pagination .page-item.active .page-link {
    background-color: var(--green);
    border-color: var(--green);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.35);
    font-weight: 700;
}

.pagination .page-item.disabled .page-link {
    color: var(--gray-medium);
    background-color: var(--gray-light);
    border-color: transparent;
    opacity: 0.5;
}

/* ==========================================================================
   22. SEARCH RESULTS
   ========================================================================== */

.search-results-page .search-hero {
    background: var(--navy-dark);
    padding: 100px 0 60px;
    color: var(--white);
}

.search-results-page .search-hero h1 {
    color: var(--white);
    font-size: 40px;
}

.search-results-page .search-bar-wrapper {
    position: relative;
    max-width: 600px;
    margin-top: 24px;
}

.search-results-page .search-bar-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 14px 56px 14px 20px;
    color: var(--white);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-results-page .search-bar-wrapper input:focus {
    border-color: var(--green);
}

.search-results-page .search-bar-wrapper button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--green);
    border: none;
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.search-results-page .search-bar-wrapper button:hover {
    background: var(--green-dark);
}

.search-result {
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-card);
    margin-bottom: 16px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.search-result:hover {
    transform: translateX(4px);
    border-left-color: var(--green);
    box-shadow: var(--shadow-card-hover);
}

.search-result .result-type {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-result .result-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.search-result .result-excerpt {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 0;
}

.search-highlight {
    font-weight: 700;
    color: var(--green-dark);
    background: rgba(46, 204, 113, 0.1);
    padding: 1px 3px;
    border-radius: 2px;
}

.search-results-group {
    margin-bottom: 40px;
}

.search-results-group .group-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-medium);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-results-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

/* ==========================================================================
   23. MISC / HELPER COMPONENTS
   ========================================================================== */

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-light) 25%, #e8ecf0 50%, var(--gray-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* Tags */
.tag {
    display: inline-block;
    background: var(--gray-light);
    color: var(--gray-medium);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    transition: var(--transition);
}

.tag:hover {
    background: rgba(46, 204, 113, 0.12);
    color: var(--green-dark);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--gradient-btn);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    font-size: 16px;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background: linear-gradient(135deg, #002d80, #001a4d);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    color: var(--white);
    padding: 16px 0;
    z-index: 1100;
    border-top: 2px solid var(--green);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

/* Notification Toast */
.toast-notification {
    background: var(--navy-dark);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.toast-notification .toast-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
}

/* Map Container */
.map-container {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

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

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--green), rgba(46, 204, 113, 0.1));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--green);
}

.timeline-year {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.timeline-text {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.7;
    margin: 0;
}

/* Team Cards */
.team-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
}

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

.team-card .team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--green);
    padding: 2px;
}

.team-card .team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.team-card .team-position {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.team-card .team-bio {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.7;
}

/* ==========================================================================
   24. RESPONSIVE — 991.98px and below
   ========================================================================== */

@media (max-width: 991.98px) {

    /* Header */
    .site-header .navbar-collapse {
        background-color: var(--navy-dark);
        padding: 16px 20px 20px;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        margin-top: 10px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .site-header .nav-link::after {
        display: none;
    }

    .site-header .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .site-header .dropdown-menu {
        background: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0 0 0 16px;
    }

    /* Spacing */
    .section-padding {
        padding: 70px 0;
    }

    /* Typography */
    h1 { font-size: 44px; }
    h2 { font-size: 34px; }
    h3 { font-size: 26px; }

    .hero-title    { font-size: 44px; }
    .hero-subtitle { font-size: 18px; }

    /* Highlights */
    .highlight-image {
        height: 350px;
        margin-bottom: 30px;
    }

    .highlight-content {
        padding: 0;
    }

    /* Stats */
    .stats-number { font-size: 40px; }

    /* Contact Form */
    .contact-form {
        padding: 32px 24px;
    }
}

/* ==========================================================================
   25. RESPONSIVE — 767.98px and below
   ========================================================================== */

@media (max-width: 767.98px) {

    html { font-size: 15px; }

    /* Typography */
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }

    .hero-title    { font-size: 32px; }
    .hero-subtitle { font-size: 17px; }
    .hero-description { font-size: 15px; }

    /* Section */
    .section-padding { padding: 60px 0; }

    .section-title { font-size: 26px; }

    /* Stats */
    .stats-number { font-size: 36px; }
    .stats-divider { display: none; }

    /* Business Cards */
    .business-card { height: 200px; }
    .business-card .content h3 { font-size: 18px; }

    /* Highlight */
    .highlight-image { height: 280px; }
    .highlight-content h2 { font-size: 26px; }

    /* Page Hero */
    .page-hero {
        height: 30vh;
        min-height: 220px;
        padding-bottom: 40px;
    }

    .page-hero h1 { font-size: 32px; }

    /* Hero CTA */
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn-primary-green,
    .hero-cta-group .btn-outline-white {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Footer */
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 8px;
    }

    /* Contact */
    .contact-form { padding: 24px 20px; }

    /* Search Modal */
    .search-modal .modal-header,
    .search-modal .modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .search-modal input { font-size: 20px; }
}

/* ==========================================================================
   26. RESPONSIVE — 575.98px and below
   ========================================================================== */

@media (max-width: 575.98px) {

    /* Typography */
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }

    .hero-title    { font-size: 28px; }
    .hero-subtitle { font-size: 16px; }

    /* Stats single column */
    .stats-card { padding: 24px 16px; }
    .stats-number { font-size: 32px; }

    /* Cards */
    .card-custom .card-body { padding: 16px; }
    .news-card .news-body   { padding: 16px; }

    /* Business card */
    .business-card { height: 180px; }
    .business-card .content { bottom: 20px; left: 20px; right: 20px; }

    /* Office cards */
    .office-card { padding: 24px 16px; }

    /* Buttons */
    .btn-lg { padding: 14px 28px; font-size: 15px; }

    /* Footer single column */
    .site-footer [class^="col-"] + [class^="col-"] {
        margin-top: 36px;
    }

    .footer-newsletter .newsletter-form {
        flex-direction: column;
        border-radius: var(--radius-md);
    }

    .footer-newsletter input {
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .footer-newsletter button {
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        padding: 12px 20px;
        text-align: center;
    }

    /* Back to top */
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    /* Cookie banner */
    .cookie-banner p { font-size: 13px; }

    /* Contact form */
    .contact-form { padding: 20px 16px; }

    /* Page hero */
    .page-hero { min-height: 180px; }
    .page-hero h1 { font-size: 26px; }

    /* Accordion */
    .accordion-custom .accordion-button { font-size: 14px; padding: 16px; }
    .accordion-custom .accordion-body   { padding: 16px; }
}

/* ==========================================================================
   27. PRINT STYLES
   ========================================================================== */

@media print {
    .site-header,
    .site-footer,
    .hero-scroll-arrow,
    #back-to-top,
    .cookie-banner,
    .search-modal {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }

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

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
}
