/* Top Navbar - Deep Blue */
#header .header-top {
    background: var(--gac-bg-primary-nav);
    border-bottom: none;
}

#header .header-top .header-row.py-2 {
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
}

#header .header-top .nav {
    align-items: center;
}

#header .header-top .nav-link,
#header .header-top .nav-item span {
    color: rgba(255, 255, 255, 0.8) !important;
}

#header .header-top .nav-link {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 13px;
}

#header .header-top .nav-link:hover {
    color: var(--gac-secondary) !important;
}

#header .header-top .header-social-icons a {
    color: rgba(255, 255, 255, 0.7) !important;
}

#header .header-top .header-social-icons a:hover {
    color: var(--gac-secondary) !important;
}

.gulf-top-links .nav-item + .nav-item .nav-link {
    padding-right: 0;
}

.gulf-top-divider {
    display: inline-block;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.38) !important;
    font-size: 13px;
}

.gulf-top-phone {
    font-size: 13px;
}

.loading-overlay .gulf-page-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transform: translate(-50%, calc(-50% - 16px));
    animation: gulfLoaderPulse 1.8s ease-in-out infinite;
    z-index: 2;
}

.loading-overlay .gulf-page-loader .gulf-logo-img {
    width: 68px;
    height: 68px;
}

.loading-overlay .gulf-page-loader .gulf-logo-en,
.loading-overlay .gulf-page-loader .gulf-logo-fa {
    display: block;
}

.loading-overlay .gulf-loader-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 210px;
    height: 4px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(7, 68, 122, 0.12);
    transform: translate(-50%, 52px);
}

.loading-overlay .gulf-loader-bar::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 40%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gac-tertiary) 0%, var(--gac-primary) 100%);
    animation: gulfLoaderBar 1.5s ease-in-out infinite;
}

@keyframes gulfLoaderPulse {
    0%, 100% {
        opacity: 0.72;
        transform: translate(-50%, calc(-50% - 16px)) scale(0.98);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, calc(-50% - 16px)) scale(1);
    }
}

@keyframes gulfLoaderBar {
    0% {
        transform: translateX(115%);
    }
    100% {
        transform: translateX(-265%);
    }
}

/* ===== Gulf Logo ===== */
.gulf-logo-link {
    display: flex !important;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
}

.gulf-logo-img {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.gulf-logo-texts {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gulf-logo-en,
.gulf-logo-fa {
    font-size: 19px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.gulf-logo-en {
    color: var(--gac-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 1;
    max-height: 24px;
}

.gulf-logo-fa {
    color: var(--gac-primary);
    font-family: "primary-font", sans-serif;
}

/* make header taller (below top-bar only) */
#header .header-container {
    padding-top: 12px;
    padding-bottom: 12px;
}

/* ===== Sticky State ===== */

html.sticky-header-active #header .gulf-logo-en {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    width: 0;
    padding: 0;
    margin: 0;
}

html.sticky-header-active #header .gulf-logo-texts {
    flex-direction: row;
    align-items: center;
}

html.sticky-header-active #header .gulf-logo-fa {
    font-size: 20px;
}

/* clear container padding in sticky so nav stays centered */
html.sticky-header-active #header .header-container {
    padding-top: 0;
    padding-bottom: 0;
}

/* ============================================================
   BRANCH PAGES
   ============================================================ */
.branch-hero {
    overflow: hidden;
}

.branch-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--gac-tertiary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.branch-hero-style-1 {
    background: linear-gradient(180deg, #f6f8fa 0%, #eef4f8 100%);
}

.branch-gallery-carousel img {
    width: 100%;
    border-radius: 0;
    object-fit: cover;
}

.branch-summary-card,
.branch-overlay-card,
.branch-form-card,
.branch-quick-card {
    background: var(--gac-light);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.branch-summary-card {
    padding: 34px 32px;
    border-top: 4px solid var(--gac-primary);
}

.branch-summary-card h2,
.branch-summary-card h3,
.branch-overlay-card h3,
.branch-form-card h3,
.branch-quick-card h4 {
    color: #1b1b1b;
}

.branch-summary-card p,
.branch-overlay-card p,
.branch-form-card p,
.branch-section-subtitle,
.branch-quick-card li {
    color: #666;
    line-height: 1.9;
}

.branch-summary-card-light {
    border-top: 0;
    border-right: 4px solid var(--gac-primary);
}

.branch-meta-list {
    margin: 0;
}

.branch-meta-list li {
    margin-bottom: 14px;
    line-height: 1.9;
    color: #555;
}

.branch-meta-list li:last-child {
    margin-bottom: 0;
}

.branch-meta-list.list-icons.list-icons-style-3 li > i {
    color: var(--gac-primary);
    background: rgba(7, 68, 122, 0.08);
}

.branch-service-box {
    height: 100%;
    background: var(--gac-light);
    border: 1px solid #edf1f5;
    padding: 28px 24px;
}

.branch-service-box-alt {
    height: 100%;
    background: var(--gac-light);
    border: 1px solid rgba(7, 68, 122, 0.08);
    box-shadow: 0 18px 40px rgba(7, 68, 122, 0.08);
    padding: 28px 24px;
}

.branch-service-box-alt i {
    font-size: 28px;
    color: var(--gac-primary);
    margin-bottom: 16px;
}

.branch-service-box-alt h4 {
    color: #1b1b1b;
    margin-bottom: 10px;
}

.branch-service-box-alt p {
    color: #666;
    line-height: 1.8;
}

.branch-gallery-grid img,
.branch-gallery-grid .thumb-info-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.branch-gallery-grid .thumb-info,
.branch-gallery-grid .thumb-info-wrapper {
    height: 100%;
}

.branch-map-frame {
    min-height: 360px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.branch-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.branch-map-large,
.branch-map-large iframe {
    min-height: 420px;
}

.branch-form-card {
    padding: 34px 32px;
}

.branch-hero-style-2 {
    background-position: center center;
    background-size: cover;
}

.branch-hero-style-2 .branch-overlay-card {
    padding: 28px 26px;
    border-top: 4px solid var(--gac-tertiary);
}

.branch-quick-card {
    height: 100%;
    padding: 28px 24px;
    border-right: 4px solid var(--gac-primary);
}

.branch-dark-cta {
    background: linear-gradient(135deg, var(--gac-bg-primary-nav) 0%, var(--gac-primary) 60%, var(--gac-tertiary) 100%);
}

.branch-stat-card {
    height: 100%;
    padding: 18px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gac-light);
}

.branch-stat-card strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 8px;
}

.branch-stat-card span {
    display: block;
    font-size: 13px;
    opacity: 0.85;
}

@media (max-width: 991px) {
    .branch-summary-card,
    .branch-form-card {
        padding: 26px 24px;
    }

    .branch-gallery-grid img,
    .branch-gallery-grid .thumb-info-wrapper img {
        min-height: 190px;
    }
}

@media (max-width: 767px) {
    .branch-map-frame,
    .branch-map-frame iframe,
    .branch-map-large,
    .branch-map-large iframe {
        min-height: 280px;
    }

    .branch-gallery-grid img,
    .branch-gallery-grid .thumb-info-wrapper img {
        min-height: 170px;
    }
}

/* ============================================================
   SERVICE SINGLE PAGES
   ============================================================ */
.service-single-hero-light {
    background: linear-gradient(180deg, #f7fafc 0%, #eef4f8 100%);
}

.service-single-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gac-tertiary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-single-title {
    color: #1b1b1b;
    font-size: 42px;
    line-height: 1.35;
    margin-bottom: 18px;
}

.service-single-lead {
    font-size: 17px;
    line-height: 1.9;
    color: var(--gac-l-darker);
    max-width: 760px;
}

.service-single-carousel img {
    width: 100%;
    object-fit: cover;
}

.service-single-mini-stats {
    margin-top: 24px;
}

.service-mini-stat {
    padding: 18px 12px;
    text-align: center;
    background: rgba(7, 68, 122, 0.06);
}

.service-mini-stat strong {
    display: block;
    color: var(--gac-primary);
    font-size: 28px;
    line-height: 1;
    margin-bottom: 8px;
}

.service-mini-stat span {
    display: block;
    color: #666;
    font-size: 13px;
}

.service-detail-feature {
    height: 100%;
    padding: 24px 22px;
    background: var(--gac-light);
    border: 1px solid #edf1f5;
}

.service-sidebar-card {
    padding: 30px 28px;
    background: var(--gac-light);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.service-sidebar-card h4 {
    margin-bottom: 18px;
    color: #1b1b1b;
}

.service-sidebar-card li {
    line-height: 1.9;
}

.service-sidebar-dark {
    background: linear-gradient(135deg, var(--gac-bg-primary-nav) 0%, var(--gac-primary) 100%);
}

.service-sidebar-dark .counter strong,
.service-sidebar-dark .counter label {
    color: var(--gac-light) !important;
}

.service-sidebar-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.service-sidebar-glass li,
.service-sidebar-glass h4 {
    color: var(--gac-light) !important;
}

.service-process-vertical {
    max-width: 860px;
    margin: 0 auto;
}

.service-detail-card {
    height: 100%;
    padding: 24px 22px;
    background: var(--gac-light);
    border-right: 4px solid var(--gac-primary);
    box-shadow: 0 12px 28px rgba(7, 68, 122, 0.07);
}

.service-detail-card h4 {
    color: #1b1b1b;
    margin-bottom: 10px;
}

.service-detail-card p {
    color: #666;
    line-height: 1.8;
}

.service-single-cover {
    background-position: center center;
    background-size: cover;
}

.service-single-cover .service-single-lead {
    max-width: 820px;
}

.service-single-dark {
    background: linear-gradient(135deg, var(--gac-bg-primary-nav) 0%, var(--gac-primary) 58%, var(--gac-tertiary) 100%);
}

@media (max-width: 991px) {
    .service-single-title {
        font-size: 34px;
    }

    .service-sidebar-card,
    .service-detail-card {
        padding: 24px 20px;
    }
}

@media (max-width: 767px) {
    .service-single-title {
        font-size: 28px;
    }

    .service-single-lead {
        font-size: 15px;
    }

    .service-mini-stat {
        padding: 14px 10px;
    }
}

/* ============================================================
   SERVICES – Alternating Cards
   ============================================================ */
.hero-services-section {
    background: var(--gac-lighter);
}

.services-stacking {
    padding: 0 0 100px;
    background: transparent;
}

.services-stacking .container {
    display: grid;
    grid-auto-rows: 1fr;
}

.services-stacking .services-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--gac-primary);
    margin-bottom: 15px;
}

.services-stacking .services-title strong {
    font-weight: 700;
}

.services-stacking .services-subtitle {
    font-size: 16px;
    color: var(--gac-l-darker);
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.8;
}

.service-card-link {
    display: block;
    height: 100%;
    text-decoration: none !important;
}

.service-card-link:hover .service-card-body {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card {
    display: flex;
    height: 100%;
}

.service-card-img {
    overflow: hidden;
    height: 100%;
}

.service-card-img picture {
    display: block;
    width: 100%;
    height: 100%;
}

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

.service-card-link:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gac-light);
    height: 100%;
}

.service-card-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gac-primary);
    margin-bottom: 18px;
}

.service-card-body p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gac-l-darker);
    margin-bottom: 25px;
}

.service-card-body .btn {
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    border-width: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .service-card-body {
        padding: 30px 25px;
    }

    .service-card-body h3 {
        font-size: 20px;
    }
}

/* ===== Hero Carousel ===== */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    background: var(--gac-lighter);
}

.hero-carousel {
    position: relative;
}

.hero-carousel .hero-slide-inner {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.hero-slide-box {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 45%;
    background: linear-gradient(135deg, var(--gac-primary) 0%, var(--gac-bg-primary-nav) 60%, var(--gac-tertiary) 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    text-align: right;
}

.hero-slide-box h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--gac-light);
}

.hero-slide-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.hero-slide-box .btn {
    align-self: flex-start;
}

/* nav arrows */
.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: rgba(7, 68, 122, 0.85) !important;
    border-radius: 50%;
    font-size: 18px;
    color: var(--gac-light) !important;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel .owl-nav button.owl-prev:before,
.hero-carousel .owl-nav button.owl-next:before {
    display: none !important;
}

.hero-carousel .owl-nav button.owl-prev {
    left: -23px;
}

.hero-carousel .owl-nav button.owl-next {
    right: -23px;
}

.hero-carousel .owl-nav button.owl-prev:hover,
.hero-carousel .owl-nav button.owl-next:hover {
    background: var(--gac-primary) !important;
}

/* dots */
.hero-carousel .owl-dots {
    text-align: center;
    padding-top: 20px;
}

.hero-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-carousel .owl-dots .owl-dot.active span,
.hero-carousel .owl-dots .owl-dot:hover span {
    background: var(--gac-primary);
}

/* responsive */
@media (max-width: 991px) {
    .hero-slide-box {
        width: 55%;
        padding: 40px 30px;
    }

    .hero-slide-box h1 {
        font-size: 28px;
    }

    .hero-carousel .hero-slide-inner {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .hero-carousel-wrapper {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .hero-slide-box {
        width: 100%;
        position: relative;
        padding: 30px 20px;
        background: linear-gradient(135deg, var(--gac-primary) 0%, var(--gac-bg-primary-nav) 60%, var(--gac-tertiary) 100%);
    }

    .hero-slide-bg {
        display: none;
    }

    .hero-slide-box h1 {
        font-size: 22px;
    }

    .hero-slide-desc {
        font-size: 14px;
    }

    .hero-carousel .hero-slide-inner {
        height: auto;
    }

    .hero-carousel .owl-nav button.owl-prev,
    .hero-carousel .owl-nav button.owl-next {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .hero-carousel .owl-nav button.owl-prev {
        left: -17px;
    }

    .hero-carousel .owl-nav button.owl-next {
        right: -17px;
    }
}

/* ===== Hero Carousel Modern ===== */
.hero-carousel-wrapper-modern {
    background: transparent;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-carousel-modern {
    position: relative;
}

.hero-carousel-modern .hero-modern-slide-inner {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-carousel-modern .hero-modern-slide-inner:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 27, 49, 0.15) 0%, rgba(2, 27, 49, 0.2) 100%);
}

.hero-carousel-modern .hero-modern-content {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 1;
    width: min(470px, 42%);
    padding: 42px 38px;
    border-radius: 0;
    text-align: right;
    background: rgba(7, 68, 122, 0.88);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero-carousel-modern .hero-modern-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-carousel-modern .hero-modern-content h1 {
    margin-bottom: 18px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--gac-light);
}

.hero-carousel-modern .hero-modern-content p {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.hero-carousel-modern .hero-modern-content .btn {
    border-radius: 0;
}

.hero-carousel-modern .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 2;
    text-align: center;
    padding-top: 0;
}

.hero-carousel-modern .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #c9d5e4;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hero-carousel-modern .owl-dots .owl-dot.active span,
.hero-carousel-modern .owl-dots .owl-dot:hover span {
    background: var(--gac-primary);
}

@media (max-width: 991px) {
    .hero-carousel-modern .hero-modern-slide-inner {
        height: 420px;
    }

    .hero-carousel-modern .hero-modern-content {
        width: min(420px, 52%);
        padding: 34px 28px;
        right: 24px;
    }

    .hero-carousel-modern .hero-modern-content h1 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .hero-carousel-wrapper-modern {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .hero-carousel-modern .hero-modern-slide-inner {
        height: auto;
    }

    .hero-carousel-modern .hero-modern-content {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        padding: 28px 20px;
    }

    .hero-carousel-modern .hero-modern-content h1 {
        font-size: 22px;
    }

    .hero-carousel-modern .hero-modern-content p {
        font-size: 14px;
    }
}

/* ============================================================
   ABOUT US
   ============================================================ */
.about-us {
    background: var(--gac-lighter);
    padding: 100px 0;
}

.about-us .list-tertiary.list-icons.list-icons-style-3 li > .fa-chevron-left {
    color: var(--gac-primary) !important;
    background: transparent !important;
}

.about-us .custom-content-grid .counters .counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 140px;
    text-align: center;
}

.about-us .custom-content-grid .counters .counter strong {
    display: inline-block;
    font-size: 45px;
    line-height: 1;
    min-width: 4.5ch;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.about-us .custom-content-grid .counters .counter label {
    line-height: 1.5;
    min-height: 42px;
    max-width: 100%;
}

.gulf-shareholding-box {
    background: var(--gac-light);
    border-top: 4px solid var(--gac-primary);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    padding: 34px 32px;
}

.gulf-shareholding-progress .progress {
    height: 12px;
    background: #eaf0f4;
}

.gulf-shareholding-progress .progress-bar {
    position: relative;
}

.gulf-shareholding-percent {
    color: var(--gac-primary);
    font-weight: 700;
    font-size: 14px;
}

.gulf-shareholding-card {
    height: 100%;
    background: #f7fafc;
    border-right: 3px solid #0B5C7A;
    padding: 18px 18px 16px;
}

.gulf-shareholding-card-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #0B5C7A;
}

.gulf-shareholding-card strong {
    display: block;
    margin-bottom: 6px;
    color: #1b1b1b;
}

.gulf-shareholding-card p {
    color: #666;
    line-height: 1.8;
}

.gulf-org-section {
    background: linear-gradient(180deg, #f8fbfd 0%, #edf4f8 100%);
}

.gulf-org-chart {
    margin-top: 45px;
}

.gulf-org-card {
    position: relative;
    height: 100%;
    text-align: center;
    background: var(--gac-light);
    border: 1px solid rgba(7, 68, 122, 0.08);
    box-shadow: 0 18px 40px rgba(7, 68, 122, 0.08);
    padding: 28px 24px 24px;
}

.gulf-org-card-primary {
    background: var(--gac-primary);
    border-color: var(--gac-primary);
    color: var(--gac-light);
}

.gulf-org-card-primary h3,
.gulf-org-card-primary p,
.gulf-org-card-primary .gulf-org-card-icon {
    color: var(--gac-light);
}

.gulf-org-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(7, 68, 122, 0.08);
    color: var(--gac-primary);
    font-size: 22px;
}

.gulf-org-card h3 {
    color: #1b1b1b;
    font-size: 22px;
    margin-bottom: 10px;
}

.gulf-org-card p,
.gulf-org-card li {
    color: #666;
    line-height: 1.8;
}

.gulf-org-card .list-icons li > .fas {
    color: #0B5C7A;
}

.gulf-org-card-division {
    text-align: right;
    padding-top: 24px;
}

.gulf-org-card-division .gulf-org-card-icon {
    margin-bottom: 16px;
}

.gulf-org-connector {
    position: relative;
    width: 100%;
}

.gulf-org-connector-vertical {
    height: 42px;
}

.gulf-org-connector-vertical:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(11, 92, 122, 0.22);
}

.gulf-org-connector-split {
    height: 54px;
}

.gulf-org-connector-split:before,
.gulf-org-connector-split:after {
    content: "";
    position: absolute;
    background: rgba(11, 92, 122, 0.22);
}

.gulf-org-connector-split:before {
    top: 0;
    left: 50%;
    width: 2px;
    height: 24px;
    transform: translateX(-50%);
}

.gulf-org-connector-split:after {
    top: 24px;
    left: 16.666%;
    right: 16.666%;
    height: 2px;
}

.gulf-board-card .thumb-info-caption {
    padding-top: 18px;
}

.gulf-board-card .thumb-info-caption-text {
    display: block;
    min-height: 72px;
    color: #666;
    line-height: 1.8;
}

.gulf-board-meta {
    display: inline-block;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e6edf2;
    color: var(--gac-primary);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .gulf-shareholding-box {
        padding: 26px 24px;
    }

    .gulf-org-connector-split {
        height: 30px;
    }

    .gulf-org-connector-split:after {
        display: none;
    }
}

@media (max-width: 767px) {
    .gulf-shareholding-card {
        padding: 16px;
    }

    .gulf-org-chart {
        margin-top: 35px;
    }

    .gulf-org-card {
        padding: 24px 18px 20px;
    }

    .gulf-org-connector-vertical,
    .gulf-org-connector-split {
        display: none;
    }

    .gulf-board-card .thumb-info-caption-text {
        min-height: 0;
    }
}

.shipping-journey-section {
    background: linear-gradient(180deg, var(--gac-bg-primary-nav) 0%, #003d73 100%);
    padding: 0;
}

.shipping-journey-scroll {
    position: relative;
    padding: 0;
}

.shipping-journey-scene {
    min-height: 220px;
}

.shipping-journey-water {
    position: relative;
    height: 220px;
    overflow: hidden;
    --journey-progress: 0.5;
    border-radius: 0;
    background: linear-gradient(180deg, #00335d 0%, #004f87 54%, #006aa3 100%);
}

.shipping-journey-water:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(88px 22px at 44px calc(100% + 10px), transparent 72%, rgba(255, 255, 255, 0.28) 74%, transparent 77%) repeat-x,
    radial-gradient(74px 18px at 37px calc(100% + 8px), transparent 72%, rgba(255, 255, 255, 0.2) 74%, transparent 77%) repeat-x,
    radial-gradient(60px 15px at 30px calc(100% + 7px), transparent 72%, rgba(255, 255, 255, 0.14) 74%, transparent 77%) repeat-x;
    background-size: 176px 52px, 148px 42px, 120px 34px;
    background-position: 0 calc(100% - 8px), 18px calc(100% - 34px), 10px calc(100% - 58px);
    opacity: 1;
    animation: shippingWaterFlow 9s linear infinite;
    z-index: 2;
}

.shipping-journey-water:after {
    content: "";
    position: absolute;
    inset: auto 0 26px;
    height: 72px;
    background: radial-gradient(72px 18px at 36px calc(100% + 8px), transparent 72%, rgba(255, 255, 255, 0.2) 74%, transparent 77%) repeat-x,
    radial-gradient(54px 13px at 27px calc(100% + 6px), transparent 72%, rgba(255, 255, 255, 0.14) 74%, transparent 77%) repeat-x;
    background-size: 144px 46px, 108px 28px;
    background-position: 24px calc(100% - 2px), 6px calc(100% - 30px);
    opacity: 0.82;
    animation: shippingWaterDrift 12s linear infinite reverse;
    z-index: 2;
}

.shipping-journey-bank {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    background: transparent;
    z-index: 1;
}

.shipping-journey-bank-start {
    right: 0;
}

.shipping-journey-bank-end {
    left: 0;
}

.shipping-journey-lane {
    display: none;
}

.shipping-journey-wake {
    display: none;
}

.shipping-journey-ship {
    position: absolute;
    top: 50%;
    right: 50%;
    width: clamp(220px, 24vw, 360px);
    max-width: 32%;
    transform: translate(50%, -50%);
    transform-origin: center center;
    will-change: transform;
    z-index: 3;
    filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.32));
}

.shipping-journey-enhanced .shipping-journey-ship {
    left: 0;
    right: auto;
}

@keyframes shippingWaterFlow {
    0% {
        background-position: 0 calc(100% - 8px), 18px calc(100% - 34px), 10px calc(100% - 58px);
    }
    100% {
        background-position: 176px calc(100% - 8px), 166px calc(100% - 34px), 130px calc(100% - 58px);
    }
}

@keyframes shippingWaterPulse {
    0% {
        opacity: 0.22;
        transform: translate3d(0, 0, 0) scaleX(0.96);
    }
    100% {
        opacity: 0.38;
        transform: translate3d(0, -3px, 0) scaleX(1.04);
    }
}

@keyframes shippingWaterDrift {
    0% {
        background-position: 24px calc(100% - 2px), 6px calc(100% - 30px);
    }
    100% {
        background-position: 168px calc(100% - 2px), 114px calc(100% - 30px);
    }
}

@media (max-width: 991px) {
    .shipping-journey-water {
        height: 180px;
    }
}

@media (max-width: 575px) {
    .shipping-journey-water {
        height: 130px;
    }

    .shipping-journey-bank {
        width: 36px;
    }

    .shipping-journey-lane {
        left: 36px;
        right: 36px;
    }

    .shipping-journey-ship {
        width: 180px;
        max-width: 52%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shipping-journey-water:before,
    .shipping-journey-water:after {
        animation: none;
    }

    .shipping-journey-ship {
        right: 50%;
        transform: translate(50%, -50%);
    }
}

.corporate-blog {
    background: var(--gac-lighter);

    padding: 70px 0;
}

/* ============================================================
   BLOG / NEWS SECTION
   ============================================================ */
.gulf-news-box {
    background: linear-gradient(135deg, #03345f 0%, var(--gac-primary) 46%, #0b5e8f 100%);
    padding: 2.75rem 2.75rem 2.25rem;
    box-shadow: 0 20px 45px rgba(2, 46, 87, 0.22);
}

.gulf-news-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.gulf-news-more-btn {
    white-space: nowrap;
}

@media (max-width: 575px) {
    .gulf-news-box {
        padding: 2rem 1.25rem 1.5rem;
    }

    .gulf-news-box-header {
        align-items: flex-start;
    }
}


/* ============================================================
   BLOG / NEWS SECTION
   ============================================================ */
.gulf-news-featured {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--gac-light);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.gulf-news-featured-media {
    display: block;
    overflow: hidden;
}

.gulf-news-featured-media img {
    transition: transform 0.4s ease;
}

.gulf-news-featured:hover .gulf-news-featured-media img {
    transform: scale(1.05);
}

.gulf-news-featured-content {
    flex: 1;
    padding: 1.5rem 1.75rem 1.75rem;
}

.gulf-news-item-content {
    flex: 1;
    min-width: 0;
}

.gulf-news-featured-content h4 a,
.gulf-news-item-content h5 a {
    color: var(--gac-dark);
    transition: color 0.3s ease;
}

.gulf-news-featured-content h4 a:hover,
.gulf-news-item-content h5 a:hover {
    color: var(--gac-primary);
}

.gulf-news-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gulf-news-item {
    display: flex;
    align-items: center;
    flex: 1 1 0;
    background: var(--gac-light);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    padding: 0.9rem;
}

.gulf-news-item + .gulf-news-item {
    margin-top: 1rem;
}

.gulf-news-thumb {
    flex: 0 0 128px;
    width: 128px;
    align-self: stretch;
    overflow: hidden;
    margin-left: 1rem;
}

.gulf-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gulf-news-item:hover .gulf-news-thumb img {
    transform: scale(1.1);
}

.gulf-news-date {
    display: block;
    color: var(--gac-primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.gulf-news-default-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 96px;
    background: linear-gradient(135deg, #03345f 0%, var(--gac-primary) 46%, #0b5e8f 100%);
}

.gulf-news-default-media::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gac-light);
}

.gulf-news-thumb .gulf-news-default-media::before {
    width: 56px;
    height: 56px;
}

.gulf-news-default-media-lg {
    min-height: 260px;
}

.gulf-news-default-logo {
    position: relative;
    width: 64px;
    height: auto;
    opacity: 0.95;
}

.gulf-news-thumb .gulf-news-default-logo {
    width: 40px;
}

@media (max-width: 991px) {
    .gulf-news-list {
        height: auto;
    }
}


#footer,
#footer p,
#footer li,
#footer a,
#footer h5,
#footer #sub-menu a,
#footer .footer-copyright p {
    color: rgba(255, 255, 255, 0.88) !important;
}

#footer a:hover,
#footer #sub-menu a:hover {
    color: var(--gac-light) !important;
}

#footer .text-color-light,
#footer .opacity-5,
#footer .opacity-6 {
    opacity: 1 !important;
}

#footer .footer-social-icons li a {
    color: var(--gac-light) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
}

#footer .footer-social-icons li a:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

#footer .footer-copyright img {
    opacity: 0.9 !important;
}

/* ============================================================
   GLOBE SECTION
   ============================================================ */
.globe-section {
    background: transparent;
    width: 100%;
    overflow: hidden;
}

.globe-section .row {
    min-height: 390px;
}

.globe-section [class*="col-lg-"] {
    position: relative;
}

.globe-visual {
    position: relative;
    height: 100%;
    min-height: 390px;
    overflow: hidden;
    background: transparent;
}

.globe-visual::before {
    content: none;
}

#globe-container {
    width: 100%;
    height: 100%;
    min-height: 390px;
    overflow: hidden;
    z-index: 0;
    background: #eef2f5;
}

#globe-container.leaflet-container {
    width: 100%;
    height: 100%;
    background: #eef2f5;
    font-family: "primary-font", Tahoma, sans-serif;
    cursor: default;
}

#globe-container .leaflet-tile-pane,
#globe-container .leaflet-tile {
    display: none;
}

/* Port / city markers */
.globe-point span {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gac-primary);
    border: 2px solid var(--gac-light);
    box-shadow: 0 0 0 3px var(--gac-secondary);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.globe-point:hover span {
    transform: scale(1.3);
}

#globe-container .leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

#globe-container .leaflet-popup-content {
    margin: 0;
}

.globe-content {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 36px 42px;
    color: var(--gac-dark);
    font-family: "primary-font", Tahoma, sans-serif;
}

.globe-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gac-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.globe-title {
    color: var(--gac-dark);
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 12px;
}

.globe-title strong {
    color: var(--gac-primary);
    font-weight: 800;
}

.globe-subtitle {
    font-size: 15px;
    color: var(--gac-l-darker);
    margin-bottom: 24px;
    line-height: 1.9;
}

.globe-info {
    border-top: 1px solid var(--gac-border);
    padding-top: 22px;
}

.globe-info-placeholder {
    color: var(--gac-darker);
    font-size: 14px;
    margin: 0;
}

.globe-info-item {
    margin-bottom: 0;
    font-family: "primary-font", Tahoma, sans-serif;
}

.globe-info-item .info-city {
    font-size: 26px;
    font-weight: 700;
    color: var(--gac-dark);
    margin-bottom: 6px;
}

.globe-info-item .info-country {
    font-size: 15px;
    color: var(--gac-l-darker);
    margin-bottom: 10px;
}

.globe-info-item .info-desc {
    font-size: 14px;
    color: var(--gac-l-dark);
    line-height: 1.9;
}

.globe-label {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(7, 68, 122, 0.12);
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    pointer-events: none;
    font-family: "primary-font", Tahoma, sans-serif;
}

.globe-label a.globe-popup-link {
    pointer-events: auto;
}

.globe-label strong {
    font-size: 15px;
    color: var(--gac-primary);
}

.globe-label small {
    color: #888;
}

@media (max-width: 991px) {
    .globe-section .row {
        min-height: auto;
    }

    .globe-visual {
        min-height: 320px;
    }

    #globe-container {
        min-height: 320px;
    }

    .globe-title {
        font-size: 28px;
    }

    .globe-content {
        max-width: none;
        padding: 30px 25px;
    }
}

@media (max-width: 575px) {
    .globe-visual {
        min-height: 240px;
    }

    #globe-container {
        height: 240px;
    }
}

.badge-primary {
    background-color: var(--gac-primary);
    color: #FFF;
}

/* Globe Popup Links */
.globe-info-link {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    font-size: 13px;
}

.globe-popup-link {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    font-size: 12px;
}

/* News Post Image */
.post-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.post-image:hover img {
    transform: scale(1.02);
}

.post-content .lead {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--gac-l-darker);
}

.post-tags a,
.post-categories a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.post-tags a:hover,
.post-categories a:hover {
    opacity: 0.8;
}

.post-share {
    direction: ltr;
}

.post-share .social-icons a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gac-lighter);
    color: var(--gac-primary) !important;
    margin-left: 8px;
    transition: all 0.2s ease;
}

.post-share .social-icons a:hover {
    background: var(--gac-primary);
    color: white !important;
}
