/* Golden Oryx Shipping - Custom Styles */

:root {
    --primary-color: #c9a961;
    --primary-dark: #a58944;
    --secondary-color: #1a2b4a;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.site-header {
    position: relative;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background: #2c3e50;
    color: #fff;
    padding: 25px 0;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Logo Box Design */
.logo-box {
    margin-right: 25px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-box:hover {
    transform: scale(1.05);
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.logo-img {
    height: 160px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.5)) brightness(1.05) contrast(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: all 0.3s ease;
}

.logo-box:hover .logo-img {
    filter: drop-shadow(0 5px 15px rgba(222,180,51,0.8)) brightness(1.1) contrast(1.15);
}

.top-bar .quick-links {
    margin: 0;
    gap: 15px;
    flex-wrap: nowrap;
}

.top-bar .nav-link {
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.top-bar .nav-link:hover {
    background: var(--primary-color);
}

.top-bar .nav-link i {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.top-bar .nav-link svg,
.top-bar .nav-link img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.s-form {
    display: flex;
    align-items: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.s-form input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px 0 0 4px;
    width: 160px;
    font-size: 13px;
}

.s-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.s-form button {
    background: var(--primary-color);
    border: none;
    padding: 6px 12px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-form button svg,
.s-form button img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Navigation */
.navbar {
    background: #fff;
    padding: 15px 0;
}

.navbar-nav {
    gap: 30px;
    width: 100%;
    justify-content: center;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Dropdown hover for desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
    
    .navbar-nav .dropdown-menu {
        margin-top: 0;
    }
}

/* Slideshow */
.slideshow {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.gallery-top {
    height: calc(100% - 150px);
    width: 100%;
}

.gallery-top .swiper-slide {
    position: relative;
    height: 100%;
    width: 100%;
}

.gallery-top .image {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.gallery-top .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-top .image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26,43,74,0.9), rgba(26,43,74,0.4));
}

.gallery-top .details {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    width: 100%;
    pointer-events: none;
}

.gallery-top .details * {
    pointer-events: all;
}

.gallery-top .details .icon {
    display: block;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.gallery-top .details .icon svg,
.gallery-top .details .icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.gallery-top .details .title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gallery-top .details p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.gallery-top .details a {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.gallery-top .details a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201,169,97,0.4);
}

.watch-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #fff;
}

.icon-play::before {
    content: '▶';
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 12px;
}

/* Thumbnail Navigation */
.gallery-thumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 20;
}

.gallery-thumbs .swiper-wrapper {
    height: 100%;
    display: flex;
}

.slidenav-item {
    position: relative;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
}

.slidenav-item .thumbnail {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.slidenav-item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slidenav-item .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,43,74,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #fff;
    transition: background 0.3s ease;
}

.slidenav-item .info i {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
}

.slidenav-item .info i svg,
.slidenav-item .info i img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.slidenav-item .info .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.slidenav-item .more {
    color: var(--primary-color);
    font-size: 14px;
}

.slidenav-item:hover .more {
    text-decoration: underline;
}

.slidenav-item .timer {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--primary-color);
    width: 0;
    z-index: 11;
    transition: none;
}

.slidenav-item.swiper-slide-thumb-active .timer {
    width: 100%;
    animation: progressBar 5s linear;
}

@keyframes progressBar {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.slidenav-item.swiper-slide-thumb-active .info {
    background: rgba(201,169,97,0.95);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(201,169,97,0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
}

/* Section Wrapper */
.s-wrapper {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.s-wrapper.pt-0 {
    padding-top: 0;
}

/* Section Heading */
.s-heading {
    margin-bottom: 50px;
}

.s-heading .heading {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.s-heading p {
    font-size: 18px;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 80px 0;
}

.global-items {
    margin: 0 -15px;
}

.global-items .col-md-6 {
    padding: 0 15px;
}

.global-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.global-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.global-item .image {
    height: 100%;
    width: 100%;
}

.global-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.global-item:hover .image img {
    transform: scale(1.1);
}

.global-item .details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26,43,74,0.95), rgba(26,43,74,0.3));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: #fff;
}

.global-item .details i {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.global-item .details i svg,
.global-item .details i img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.global-item .details .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.global-item .details p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.global-item .details .more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.global-item:hover .details .more {
    transform: translateX(5px);
}

/* Get Quote Section */
.get-quote {
    margin: 80px 0;
}

.quote {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-dark));
    border-radius: 15px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.quote .image {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.quote .image img {
    max-width: 300px;
}

.quote .details {
    color: #fff;
    position: relative;
    z-index: 1;
}

.quote .details i {
    display: block;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.quote .details i img {
    filter: brightness(0) invert(1);
}

.quote .details .title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.quote .details p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.quote .details a {
    display: inline-flex !important;
    align-items: center;
    gap: 8px !important;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 24px !important;
    border-radius: 6px !important;
    font-weight: 600;
    font-size: 15px !important;
    transition: all 0.3s ease;
}

.quote .details a:hover {
    background: #fff;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.quote .details a svg,
.quote .details a img {
    width: 18px !important;
    height: 18px !important;
}

/* Additional specificity for get-quote button */
.get-quote .quote .details a {
    padding: 10px 24px !important;
    font-size: 15px !important;
    gap: 8px !important;
}

.get-quote .quote .details a svg {
    width: 18px !important;
    height: 18px !important;
}

/* Sea Freight Details Section */
.sea-freight-details {
    padding: 80px 0;
    background: var(--bg-light);
}

.sea-freight-details .intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.service-type-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201,169,97,0.25);
    border-color: var(--primary-color);
}

.service-type-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-type-card .service-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.service-type-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-type-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Air Freight Details Section */
.air-freight-details {
    padding: 80px 0;
    background: #fff;
}

.air-freight-details .intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 20px;
}

/* Land Transport Details Section */
.land-transport-details {
    padding: 80px 0;
    background: var(--bg-light);
}

.land-transport-details .intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 20px;
}

.land-card {
    max-width: 700px;
    margin: 0 auto;
}

.land-features {
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
}

.land-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-light);
}

.land-features .feature-item svg {
    flex-shrink: 0;
    fill: var(--primary-color);
}

.land-features .feature-item:last-child {
    margin-bottom: 0;
}

/* Specialized Transportation Section */
.specialized-transport {
    padding: 80px 0;
    background: #fff;
}

.specialized-transport .intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 15px;
}

.specialized-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.specialized-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(201,169,97,0.3);
    border-color: var(--primary-color);
}

.specialized-card .spec-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.specialized-card .spec-icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

.specialized-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.specialized-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.specialized-features {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, var(--secondary-color), #2a3d5f);
    border-radius: 15px;
}

.specialized-features .feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.specialized-features .feature-box:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.specialized-features .feature-box svg {
    flex-shrink: 0;
    fill: var(--primary-color);
}

.specialized-features .feature-box span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* Storage and Warehousing Section */
.storage-warehousing {
    padding: 80px 0;
    background: var(--bg-light);
}

.storage-content .lead-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.storage-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(201,169,97,0.2);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.benefit-text h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.storage-visual {
    position: relative;
}

.warehouse-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.warehouse-image img {
    width: 100%;
    height: auto;
    display: block;
}

.warehouse-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.warehouse-badge .badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warehouse-badge .badge-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.warehouse-badge .badge-text {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.warehouse-badge .badge-text strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.warehouse-badge .badge-text span {
    font-size: 14px;
    opacity: 0.9;
}

/* Customs Clearance Section */
.customs-clearance {
    padding: 80px 0;
    background: #fff;
}

.customs-clearance .intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 20px;
}

.customs-category {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.customs-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201,169,97,0.2);
    border-color: var(--primary-color);
}

.category-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(201,169,97,0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(201,169,97,0.3);
}

.category-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.category-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.customs-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.customs-services li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.customs-services li:last-child {
    border-bottom: none;
}

.customs-services li svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.customs-services li span {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 500;
}

/* Why Choose Us */
.why-us {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-us .global-item {
    background: #fff;
    height: auto;
}

.why-us .global-item .image {
    height: 250px;
}

.why-us .global-item .details {
    position: static;
    background: transparent;
    padding: 25px;
    color: var(--text-dark);
    display: block;
}

.why-us .global-item .details i svg,
.why-us .global-item .details i img {
    filter: none;
}

.why-us .global-item .details i svg {
    fill: var(--primary-color);
}

.why-us .global-item .details .title {
    color: var(--secondary-color);
    font-size: 22px;
}

.why-us .global-item .details p {
    color: var(--text-light);
    opacity: 1;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
}

.about-us .intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-us .more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.about-us .more:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.nav-tabs {
    border-bottom: 2px solid var(--border-color);
    justify-content: center;
    gap: 10px;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-light);
    padding: 15px 30px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent;
}

.tab-content {
    padding: 40px 0;
}

.tab-pane p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: var(--secondary-color);
    color: #fff;
}

.statistics .s-heading .heading {
    color: #fff;
}

.statistics .s-heading p {
    color: rgba(255,255,255,0.8);
}

.statistics .item {
    text-align: center;
    padding: 30px;
}

.statistics .item .icon {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.statistics .item .icon img {
    filter: brightness(0) invert(1);
}

.statistics .item .title {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.statistics .item .counter {
    font-size: 42px;
    font-weight: bold;
    color: var(--primary-color);
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #fff;
}

.top-links,
.footer-top {
    padding: 60px 0 40px;
}

.top-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* QR Code Box */
.qr-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(201,169,97,0.3);
    transition: all 0.3s ease;
}

.qr-box:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201,169,97,0.2);
}

.qr-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qr-link {
    display: block;
    text-decoration: none;
}

.qr-code-wrapper {
    width: 160px;
    height: 160px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin: 0 auto 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.qr-box:hover .qr-code-wrapper {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(201,169,97,0.4);
}

.qr-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.qr-placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

.qr-text {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.qr-box:hover .qr-text {
    color: var(--primary-color);
    opacity: 1;
}

.top-content .details {
    flex: 1;
}

.top-content .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.top-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
}

.download-btn:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(201,169,97,0.3);
}

.download-btn i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn svg {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.info .heading,
.links .heading,
.contact .heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.info ul li,
.contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info ul li i,
.contact ul li i {
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.info ul li i svg,
.contact ul li i svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.info ul li i.map-marker,
.contact ul li i.map-marker {
    width: 18px;
}

.info ul li i img {
    filter: brightness(0) invert(1);
}

.info ul li a,
.info ul li span,
.contact ul li a,
.contact ul li span {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
    line-height: 1.6;
}

.info ul li span strong,
.contact ul li span strong {
    color: var(--primary-color);
    font-weight: 600;
}

.info ul li a:hover,
.contact ul li a:hover {
    color: var(--primary-color);
}

.contact ul li a.phone-call {
    display: block;
    margin-bottom: 5px;
}

.links ul li {
    margin-bottom: 12px;
}

.links ul li a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 40px 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.about .heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

.social-media .heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.social-media ul {
    gap: 15px;
}

.social-media ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-media ul li a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-media ul li img,
.social-media ul li svg {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.payment {
    margin: 30px 0;
}

.payment .heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.payment ul {
    gap: 15px;
}

.payment ul li {
    background: #fff;
    padding: 5px 10px;
    border-radius: 4px;
}

.payment ul li img {
    height: 25px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    display: block;
}

/* Footer Logo Box Design */
.footer-logo-wrapper {
    margin-top: 30px;
}

.footer-logo-box {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-logo-box:hover {
    transform: scale(1.05);
}

.footer-logo-link {
    display: block;
    line-height: 0;
}

.footer-logo-img {
    height: 160px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.6)) brightness(1.05) contrast(1.1);
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-logo-box:hover .footer-logo-img {
    filter: drop-shadow(0 5px 15px rgba(222,180,51,0.9)) brightness(1.1) contrast(1.15);
}

.footer-tagline {
    display: block;
    margin-top: 12px;
    font-style: italic;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.newsletter .heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.newsletter p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 5px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.copyrights {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.copyrights p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Contact Bar */
.c-bar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.c-bar ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-bar ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(201,169,97,0.4);
    transition: all 0.3s ease;
    font-size: 14px;
}

.c-bar ul li a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201,169,97,0.5);
}

.c-bar ul li a span {
    font-weight: 600;
    white-space: nowrap;
}

.c-bar ul li a i {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-bar ul li a i img,
.c-bar ul li a i svg {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

/* WhatsApp button - icon only */
.c-bar ul li:last-child a {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    background: #25D366;
}

.c-bar ul li:last-child a:hover {
    background: #1da851;
}

.c-bar ul li:last-child a span {
    display: none;
}

.c-bar ul li:last-child a i {
    width: 26px;
    height: 26px;
}

/* Scroll to Top */
.scrolltop {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(201,169,97,0.4);
    transition: all 0.3s ease;
}

.scrolltop::before {
    content: '↑';
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.scrolltop:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.scrolltop.active {
    display: flex;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}

.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .top-bar .s-form {
        display: none;
    }
    
    .collapse-header {
        background: var(--secondary-color);
        padding: 20px;
        justify-content: space-between;
        align-items: center;
    }
    
    .men-logo img {
        max-width: 220px;
        height: auto;
        filter: brightness(1.1) contrast(1.1) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .menu-close {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 36px;
        line-height: 1;
        cursor: pointer;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 9999;
    }
    
    .navbar-collapse.show {
        left: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .gallery-top .details .title {
        font-size: 32px;
    }
    
    .quote {
        flex-direction: column;
        text-align: center;
    }
    
    .quote .image img {
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .gallery-top .details .title {
        font-size: 28px;
    }
    
    .gallery-top .details p {
        font-size: 16px;
    }
    
    .gallery-thumbs {
        height: 100px;
    }
    
    .s-heading .heading {
        font-size: 28px;
    }
    
    .global-item {
        height: 300px;
    }
    
    .quote {
        padding: 40px 20px;
    }
    
    .quote .details .title {
        font-size: 28px;
    }
    
    .c-bar {
        bottom: 20px;
        right: 20px;
    }
    
    .c-bar ul {
        gap: 10px;
    }
    
    .c-bar ul li a {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .c-bar ul li a i {
        width: 20px;
        height: 20px;
    }
    
    /* Get Quote button becomes icon only on mobile */
    .c-bar ul li:first-child a {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .c-bar ul li:first-child a span {
        display: none;
    }
    
    .c-bar ul li:first-child a i {
        width: 24px;
        height: 24px;
    }
    
    /* WhatsApp button stays the same */
    .c-bar ul li:last-child a {
        width: 50px;
        height: 50px;
    }
    
    .c-bar ul li:last-child a i {
        width: 26px;
        height: 26px;
    }
}

/* ============================================
   About Page Styles
   ============================================ */

/* Page Header */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.9), rgba(201, 169, 97, 0.8));
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header .content {
    text-align: center;
    color: #fff;
}

.page-header .subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-header .title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.page-header .breadcrumb-item.active {
    color: var(--primary-color);
}

/* About Intro Section */
.about-intro {
    padding: 80px 0;
}

.about-intro .about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-intro .about-content .lead {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-intro .about-content p {
    color: #666;
    line-height: 1.8;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
}

.mission-box,
.vision-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.mission-box .heading,
.vision-box .heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.mission-box p,
.vision-box p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
}

.value-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #d4a962);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.value-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.value-card .icon-wrapper i {
    font-size: 36px;
    color: #fff;
}

.value-card .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Global Network Section */
.global-network {
    padding: 80px 0;
}

.region-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.region-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, var(--primary-color), #d4a962);
}

.region-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.region-item:hover i {
    color: #fff;
}

.region-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    transition: color 0.3s ease;
}

.region-item:hover h5 {
    color: #fff;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
}

.feature-box {
    background: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.feature-box:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-box .icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-box:hover .icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.feature-box .icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-box:hover .icon i {
    color: #fff;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), #1a2b4a);
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
}

.cta-section .btn-light {
    background: #fff;
    color: var(--secondary-color);
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Our Team Section */
.our-team-section {
    padding: 80px 0;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member .member-image {
    position: relative;
    overflow: hidden;
}

.team-member .member-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member .social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 43, 74, 0.95), transparent);
    padding: 15px;
    text-align: center;
    transition: bottom 0.3s ease;
}

.team-member:hover .social-links {
    bottom: 0;
}

.team-member .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-member .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.team-member .member-info {
    padding: 25px 20px;
    text-align: center;
}

.team-member .member-info .name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.team-member .member-info .position {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member .member-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Our Network Section - Using global-item styles */
.our-network-section {
    padding: 80px 0;
}
