/* ===========================
   TBG - The Blue Group CSS
   =========================== */

/* Font Faces */
@font-face {
    font-family: 'Avenir-Black';
    src: url('/fonts/tbg/Avenir-Black.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir-Book';
    src: url('/fonts/tbg/Avenir-Book.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir-Regular';
    src: url('/fonts/tbg/Avenir-Regular.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Avenir-Book', 'Avenir-Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===========================
   Header
   =========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    align-items: center;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo .logo-img {
    max-width: 100px;
    height: auto;
}

.header-nav {
    margin-left: auto;
}

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

.header-nav .nav-link {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    transition: color 0.3s;
    white-space: nowrap;
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active-link {
    color: #0077c0;
}

.lang-switch {
    margin-left: 25px;
    flex-shrink: 0;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Avenir-Regular', sans-serif;
    color: #333;
    transition: all 0.3s;
}

.lang-link:hover {
    border-color: #0077c0;
    color: #0077c0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 15px;
    color: #333;
}

/* Side Nav (Mobile) */
.side-nav-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.side-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.side-nav-panel {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}
.side-nav-panel.open {
    left: 0;
}

.side-nav-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.side-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #333;
}

.side-nav-menu li {
    margin-bottom: 15px;
}

.side-nav-menu a {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: #333;
    transition: color 0.3s;
}

.side-nav-menu a:hover {
    color: #0077c0;
}

.side-nav-lang {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.side-nav-social {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.side-nav-social a {
    color: #666;
    transition: color 0.3s;
}
.side-nav-social a:hover {
    color: #0077c0;
}

/* Offset scroll targets for sticky header */
section[id] {
    scroll-margin-top: 80px;
}

/* ===========================
   Hero Banner (Subpages)
   =========================== */
.hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15% 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.5);
}

.hero-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    background: rgba(10,10,10,0.6);
    padding: 30px 50px;
    border-radius: 5px;
    max-width: 700px;
}

.hero-banner-title {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 8px;
}

.hero-banner-subtitle {
    font-size: 2rem;
    color: #fff;
    line-height: 1.4;
}

/* Home Hero (full image, no overlay) */
.home-hero {
    width: 100%;
    overflow: hidden;
}

.home-hero img {
    width: 100%;
    display: block;
}

/* ===========================
   Intro Section (Home)
   =========================== */
.intro-section {
    padding: 60px 0;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-heading-col {
    flex: 0 0 25%;
}

.intro-heading {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 2.375rem;
    color: #333;
    border-right: 3px solid #0077c0;
    padding-right: 30px;
}

.intro-text-col {
    flex: 1;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* ===========================
   Stats Section
   =========================== */
.stats-section {
    padding: 20px 0 60px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.stat-value {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 2.5rem;
    color: #0077c0;
    line-height: 1.5;
}

.stat-label {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: #333;
}

/* ===========================
   Section Heading
   =========================== */
.section-heading {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.section-heading::after {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background: #0077c0;
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 0 30px;
}

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

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

.brands-grid {
    display: grid;
    gap: 0;
}

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

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

.brand-item {
    overflow: hidden;
    position: relative;
}

.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.brand-item:hover img {
    transform: scale(1.03);
}

.brand-item a {
    display: block;
}

/* ===========================
   Parallax / CTA Sections
   =========================== */
.parallax-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 10% 30px;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.parallax-dark::before {
    background: rgba(0,0,0,0.87);
}

.parallax-medium::before {
    background: rgba(0,0,0,0.4);
}

.parallax-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.parallax-card {
    background: rgba(255,255,255,0.75);
    padding: 40px;
    border-radius: 5px;
}

.parallax-card h2 {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.parallax-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.parallax-cta {
    text-align: center;
    color: #fff;
}

.parallax-cta h2 {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.parallax-cta a {
    display: inline-block;
    margin-top: 10px;
    font-family: 'Avenir-Black', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #fff;
    padding-bottom: 3px;
    transition: color 0.3s, border-color 0.3s;
}

.parallax-cta a:hover {
    color: #0077c0;
    border-color: #0077c0;
}

/* Companies parallax */
.parallax-companies {
    padding: 20% 30px;
}

/* ===========================
   News Grid
   =========================== */
.news-section {
    padding: 60px 0;
}

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

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

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s, transform 0.3s;
}

.news-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

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

.news-card-body {
    padding: 20px;
}

.news-card-date {
    font-size: 0.85rem;
    color: #0077c0;
    margin-bottom: 8px;
    font-family: 'Avenir-Regular', sans-serif;
}

.news-card-title {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}

/* News Slider */
.news-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.news-slider {
    overflow: hidden;
    flex: 1;
}
.news-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}
.news-slider-track .news-card {
    min-width: calc(33.333% - 20px);
    margin: 0 10px;
    flex-shrink: 0;
}
.news-slider-arrow {
    background: #0077c0;
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 2;
    transition: background 0.3s;
}
.news-slider-arrow:hover {
    background: #005a94;
}
.news-slider-prev { margin-right: 15px; }
.news-slider-next { margin-left: 15px; }
.news-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.news-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.news-slider-dot.active {
    background: #0077c0;
}

/* ===========================
   About Page - Our Business
   =========================== */
.business-section {
    padding: 60px 0;
}

.business-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.business-heading {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 5px;
}

.business-subtitle {
    font-size: 2rem;
    color: #0077c0;
    margin-bottom: 25px;
}

.business-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

/* CEO Message */
.ceo-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 30px;
}

.ceo-container {
    max-width: 800px;
    margin: 0 auto;
}

.ceo-heading {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 2.5rem;
    color: #0077c0;
    margin-bottom: 25px;
}

.ceo-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #333;
    text-align: justify;
    margin-bottom: 20px;
}

/* Our Brands full-width image */
.brands-image-section {
    padding: 60px 0 0;
}

.brands-image-section .section-heading {
    margin-bottom: 30px;
}

.full-width-image {
    width: 100%;
}

/* ===========================
   Timeline
   =========================== */
.timeline-section {
    padding: 60px 0;
}

.timeline-container {
    max-width: 710px;
    margin: 0 auto;
    padding: 0 30px;
}

.timeline-item {
    margin: 15px 0;
}

.timeline-info {
    background: #0077c0;
    padding: 40px;
    width: 25%;
    min-width: 150px;
    position: relative;
    overflow: visible;
}

.timeline-info::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 40px;
    width: 35px;
    height: 35px;
    background: #0077c0;
    transform: rotate(45deg);
    z-index: 2;
}

.timeline-year {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 2rem;
    color: #fff;
    line-height: 1.2;
}

.timeline-desc {
    background: #f0f0f0;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 0 0 5px 5px;
    position: relative;
}

.timeline-desc p {
    font-size: 1rem;
    line-height: 1.8;
    color: #777;
    margin-bottom: 15px;
    text-align: justify;
}

.timeline-desc p:last-child {
    margin-bottom: 0;
}

/* ===========================
   Mission & Vision
   =========================== */
.mission-vision-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 30px;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}

.mission-vision-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    padding: 30px;
}

.mv-card h2 {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.mv-card .mv-line {
    width: 120px;
    height: 2px;
    background: #fff;
    margin-bottom: 20px;
}

.mv-card p {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===========================
   Careers
   =========================== */
.careers-section {
    padding: 60px 0;
}

.careers-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.careers-heading {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

.careers-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin-bottom: 20px;
}

.btn-outline-primary {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #0077c0;
    color: #0077c0;
    font-family: 'Avenir-Black', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: capitalize;
}

.btn-outline-primary:hover {
    background: #0077c0;
    color: #fff;
}

.btn-outline-dark {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #333;
    color: #333;
    font-family: 'Avenir-Black', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: capitalize;
}

.btn-outline-dark:hover {
    background: #333;
    color: #fff;
}

.careers-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

/* ===========================
   Contact Cards
   =========================== */
.contact-cards-section {
    padding: 60px 0;
}

.contact-cards-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 30px 20px;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0077c0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-title {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
}

.contact-card-subtitle {
    font-size: 1rem;
    color: #555;
}

.contact-card-subtitle a {
    color: #555;
    transition: color 0.3s;
}

.contact-card-subtitle a:hover {
    color: #0077c0;
}

/* Map */
.map-section {
    padding: 0;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.map-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===========================
   Companies Page
   =========================== */
.companies-section {
    padding: 60px 0;
}

.companies-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.companies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.company-card-link {
    text-decoration: none;
    display: block;
}

.company-grid-card {
    overflow: hidden;
    transition: transform 0.3s;
}

.company-grid-card:hover {
    transform: translateY(-3px);
}

.company-grid-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.company-grid-title {
    background: #0077c0;
    color: #fff;
    text-align: center;
    padding: 12px 15px;
    font-family: 'Avenir-Black', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Company Detail */
.company-detail-section {
    padding: 60px 0 40px;
}

.company-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.company-back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #0077c0;
    font-family: 'Avenir-Black', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.company-back-link:hover {
    color: #005a9e;
}

.company-detail-layout {
    display: flex;
    gap: 40px;
}

.company-detail-main {
    flex: 1;
}

.company-detail-title {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.company-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.company-detail-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    align-self: flex-start;
}

.company-info-heading {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0077c0;
}

.company-info-item {
    margin-bottom: 15px;
}

.company-info-label {
    display: block;
    font-family: 'Avenir-Black', sans-serif;
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.company-info-item a {
    color: #0077c0;
    text-decoration: none;
    font-size: 0.95rem;
}

.company-info-item a:hover {
    text-decoration: underline;
}

.company-info-item span:not(.company-info-label) {
    font-size: 0.95rem;
    color: #555;
}

.related-companies-section {
    padding: 40px 0 60px;
    background: #f8f9fa;
}

.related-companies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.related-companies-heading {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 1.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.related-companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-company-card {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.related-company-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.related-company-card img {
    width: 100%;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.related-company-name {
    background: #0077c0;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-family: 'Avenir-Black', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .company-detail-layout {
        flex-direction: column;
    }
    .company-detail-sidebar {
        width: 100%;
    }
    .related-companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .company-detail-title {
        font-size: 1.6rem;
    }
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background: #fff;
    color: #333;
    padding-top: 60px;
    text-align: center;
}

.footer-follow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-follow-heading {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 1.3rem;
    color: #333;
    letter-spacing: 1px;
}

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

.footer-follow-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #666;
    color: #fff;
    transition: background 0.3s;
}

.footer-follow-icons a:hover {
    background: #0077c0;
}

.footer-nav-bar {
    padding: 20px 30px;
}

.footer-nav-bar ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav-bar a {
    color: #333;
    font-family: 'Avenir-Black', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-nav-bar a:hover {
    color: #0077c0;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 10px;
    padding: 20px 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

/* ===========================
   Scroll to Top
   =========================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #0077c0;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

.scroll-to-top:hover {
    background: #005a9e;
}

/* ===========================
   News Detail
   =========================== */
.news-detail-section {
    padding: 60px 0;
}

.news-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.news-back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #0077c0;
    font-family: 'Avenir-Black', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.news-back-link:hover {
    color: #005a9e;
}

.news-detail-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
}

.news-detail-meta {
    margin-bottom: 15px;
}

.news-detail-date {
    font-size: 0.9rem;
    color: #0077c0;
    font-family: 'Avenir-Regular', sans-serif;
}

.news-detail-title {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.news-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.news-read-more {
    display: inline-block;
    margin-top: 10px;
    color: #0077c0;
    font-family: 'Avenir-Black', sans-serif;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.news-read-more:hover {
    color: #005a9e;
}

.news-card a,
a.news-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* ===========================
   Store Locator
   =========================== */
.store-locator-section {
    padding: 60px 0;
}

.store-locator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.store-locator-map {
    position: relative;
    width: 100%;
    padding-bottom: 40%;
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.store-locator-map iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.stores-list-heading {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.store-category {
    margin-bottom: 40px;
}

.store-category-title {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 1.5rem;
    color: #0077c0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.store-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.store-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid #0077c0;
}

.store-card h4 {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

.store-address {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.store-phone a {
    font-size: 0.9rem;
    color: #0077c0;
    transition: color 0.3s;
}

.store-phone a:hover {
    color: #005a9e;
}

/* ===========================
   Responsive - Tablet (991px)
   =========================== */
@media (max-width: 991px) {
    .header-nav.desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .intro-container {
        flex-direction: column;
        text-align: center;
    }

    .intro-heading {
        border-right: none;
        padding-right: 0;
        border-bottom: 3px solid #0077c0;
        padding-bottom: 15px;
        margin-bottom: 10px;
    }

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

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

    .news-slider-track .news-card {
        min-width: calc(50% - 20px);
    }

    .mission-vision-container {
        grid-template-columns: 1fr;
    }

    .mission-vision-section {
        background-attachment: scroll;
    }

    .parallax-section {
        background-attachment: scroll;
    }

    .footer-nav-bar ul {
        gap: 20px;
    }

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

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

    .store-locator-map {
        padding-bottom: 56.25%;
    }
}

/* ===========================
   Responsive - Mobile (767px)
   =========================== */
@media (max-width: 767px) {
    .header-container {
        padding: 10px 20px;
    }

    .header-logo .logo-img {
        max-width: 70px;
    }

    .hero-banner {
        padding: 25% 20px;
        min-height: 250px;
    }

    .hero-banner-content {
        padding: 20px 25px;
    }

    .hero-banner-title {
        font-size: 2rem;
    }

    .hero-banner-subtitle {
        font-size: 1.3rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .brands-grid.cols-3 {
        grid-template-columns: 1fr;
    }

    .brands-grid.cols-2 {
        grid-template-columns: 1fr;
    }

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

    .news-slider-track .news-card {
        min-width: calc(100% - 20px);
    }
    .news-slider-arrow {
        width: 34px;
        height: 34px;
    }
    .news-slider-prev { margin-right: 8px; }
    .news-slider-next { margin-left: 8px; }

    .parallax-card h2 {
        font-size: 1.8rem;
    }

    .parallax-companies {
        padding: 30% 20px;
    }

    .parallax-cta h2 {
        font-size: 2rem;
    }

    .business-heading {
        font-size: 2rem;
    }

    .business-subtitle {
        font-size: 1.4rem;
    }

    .ceo-heading {
        font-size: 2rem;
    }

    .ceo-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .timeline-info {
        width: 40%;
        padding: 25px;
    }

    .timeline-year {
        font-size: 1.5rem;
    }

    .timeline-info::after {
        width: 25px;
        height: 25px;
        bottom: -12px;
        left: 25px;
    }

    .timeline-desc {
        padding: 25px;
    }

    .mission-vision-section {
        padding: 60px 20px;
    }

    .mv-card h2 {
        font-size: 2rem;
    }

    .careers-heading {
        font-size: 2rem;
    }

    .careers-text {
        font-size: 1rem;
    }

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

    .footer-follow {
        flex-direction: column;
        gap: 15px;
    }

    .footer-nav-bar ul {
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom {
        padding: 15px 20px;
    }

    .container {
        padding: 0 20px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
    }

    .careers-buttons {
        flex-direction: column;
    }

    .btn-outline-primary,
    .btn-outline-dark {
        text-align: center;
        width: 100%;
    }

    .store-cards {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Small Mobile (480px)
   =========================== */
@media (max-width: 480px) {
    .section-heading {
        font-size: 1.6rem;
    }

    .hero-banner-title {
        font-size: 1.6rem;
    }

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

    .intro-heading {
        font-size: 1.8rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .parallax-card {
        padding: 25px;
    }
}

/* ===========================
   RTL Support
   =========================== */
[dir="rtl"] body {
    font-family: 'Tajawal', 'Avenir-Book', sans-serif;
}

[dir="rtl"] .header-nav {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .lang-switch {
    margin-left: 0;
    margin-right: 25px;
}

[dir="rtl"] .mobile-menu-btn {
    margin-left: 0;
    margin-right: 15px;
}

[dir="rtl"] .side-nav-panel {
    left: auto;
    right: -300px;
}

[dir="rtl"] .side-nav-panel.open {
    left: auto;
    right: 0;
}

[dir="rtl"] .side-nav-header {
    justify-content: flex-start;
}

[dir="rtl"] .intro-heading {
    border-right: none;
    border-left: 3px solid #0077c0;
    padding-right: 0;
    padding-left: 30px;
}

[dir="rtl"] .timeline-info::after {
    left: auto;
    right: 40px;
}

[dir="rtl"] .timeline-desc p {
    text-align: right;
}

[dir="rtl"] .scroll-to-top {
    right: auto;
    left: 30px;
}

[dir="rtl"] .business-text,
[dir="rtl"] .ceo-text,
[dir="rtl"] .careers-text,
[dir="rtl"] .parallax-card p,
[dir="rtl"] .mv-card p {
    text-align: right;
}

[dir="rtl"] .business-heading,
[dir="rtl"] .ceo-heading,
[dir="rtl"] .careers-heading {
    text-align: right;
}

[dir="rtl"] .footer-follow-icons {
    justify-content: center;
}

[dir="rtl"] .store-card {
    border-left: none;
    border-right: 3px solid #0077c0;
}

@media (max-width: 991px) {
    [dir="rtl"] .intro-heading {
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid #0077c0;
    }

    [dir="rtl"] .timeline-info::after {
        right: 25px;
    }
}

@media (max-width: 767px) {
    [dir="rtl"] .timeline-info::after {
        right: 25px;
    }

    [dir="rtl"] .scroll-to-top {
        left: 20px;
    }
}

