/* Home Page Specific Styles */

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%), url('../assets/images/hero-banner-redesign.png') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-white), transparent);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    padding-top: 60px;
}

.hero-logo {
    max-width: 180px;
    height: auto;
    margin: 0 auto 30px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--primary-gold);
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Outfit', sans-serif;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 5;
    color: #fff;
    font-size: 20px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


/* Who We Are (Split Layout) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.split-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.split-image {
    position: relative;
}

.split-image img {
    border-radius: 5px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary-gold);
    color: #fff;
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-hover);
    animation: rotateBadge 10s linear infinite;
}

@keyframes rotateBadge {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.experience-badge span {
    display: block;
}

.badge-years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Stats Counter */
.stats-section {
    background-color: var(--primary-gold);
    color: #fff;
    padding: 80px 0 0 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* Responsive Home */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .experience-badge {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Refactored Inline Styles */
.split-subtitle {
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.shadow-hover {
    width: 100%;
    box-shadow: var(--shadow-hover);
}

.btn-mt-20 {
    margin-top: 20px;
}

.global-reach-section {
    padding-bottom: 40px;
}

.full-width-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.full-width-img {
    width: 100%;
    display: block;
}

.location-tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.location-tag {
    background: var(--bg-cream);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
}

/* Import & Export Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.btn-mt-20 {
    margin-top: 20px;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-gold);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Space between multiple icons */
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--primary-gold);
    color: #fff;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Product Slider Styles */
.product-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
    /* Space for buttons */
}

.slider-track-container {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    /* Removed background/shadow for cleaner split look, usually handled by inner content */
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.product-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

/* Override split-layout for slider to ensure consistency */
.slider-layout {
    display: flex;
    /* Ensure flex for split layout */
    align-items: center;
    gap: 60px;
    background: transparent;
}

.slider-img {
    max-height: 450px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.slider-layout:hover .slider-img {
    transform: scale(1.02);
}

.slider-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: var(--primary-gold);
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #eee;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-gold);
    color: #fff;
    border-color: var(--primary-gold);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Slider Dots */
.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.current-slide {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Responsive Slider */
@media (max-width: 900px) {
    .slider-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .slider-img {
        max-height: 300px;
    }

    .product-slider-container {
        padding: 0 40px;
        /* Reduce padding slightly */
    }

    .product-features li {
        justify-content: center;
    }

    .slider-desc {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .product-slider-container {
        padding: 0 10px;
        /* Tight on mobile, buttons might overlay */
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.8);
        /* Semi-transparent */
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

/* Background Pattern for Product Slider Section */
.bg-product-slider {
    background-color: var(--bg-cream);
    /* Fallback/Base */
    background-image: url('../assets/images/product-slider-bg.png');
    background-size: 300px;
    /* Adjust scale of pattern */
    background-repeat: repeat;
    background-blend-mode: multiply;
    /* Blends nicely with cream, darker areas show up */
    position: relative;
}

/* Add a subtle overlay so the pattern isn't too strong */
.bg-product-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    /* Whitewash to make it subtle */
    z-index: 0;
    pointer-events: none;
}


.bg-product-slider .container {
    position: relative;
    z-index: 1;
    /* Ensure content is above overlay */
}

/* Global Reach Redesign */
.global-reach-wrapper {
    background-color: #fff;
    /* Clean white background */
    padding-bottom: 80px;
    padding-top: 0;
}

.global-map-container {
    position: relative;
    max-width: 100%;
    /* Full Width */
    margin: 0 auto 0;
}

.global-map-img {
    width: 100%;
    /* Remove rounding if full width, or keep it if desired. Let's make it sharp for full banner feel */
    border-radius: 0;
    box-shadow: none;
    display: block;
    opacity: 0.9;
    object-fit: cover;
    min-height: 400px;
    /* Ensure visibility */
}

/* New container for centering tags over the full width image */
.location-tags-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


.location-tags-overlay {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: -40px;
    /* Pull up more into the map */
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.location-tag {
    background: rgba(255, 255, 255, 0.95);
    /* Slightly transparent */
    backdrop-filter: blur(10px);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.location-tag:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    background: #fff;
}


@media (max-width: 768px) {
    .location-tags-overlay {
        margin-top: -20px;
        /* Still overlap slightly on mobile if possible, or 0 if space is tight */
    }

    .location-tag {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}


/* Colourful Icons for Services */
.service-card:nth-child(1) .icon-box {
    color: #00bcd4;
    background: rgba(0, 188, 212, 0.1);
}

.service-card:nth-child(1):hover .icon-box {
    background: #00bcd4;
    color: #fff;
}

.service-card:nth-child(2) .icon-box {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.service-card:nth-child(2):hover .icon-box {
    background: #ffc107;
    color: #fff;
}

.service-card:nth-child(3) .icon-box {
    color: #795548;
    background: rgba(121, 85, 72, 0.1);
}

.service-card:nth-child(3):hover .icon-box {
    background: #795548;
    color: #fff;
}

.service-card:nth-child(4) .icon-box {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.service-card:nth-child(4):hover .icon-box {
    background: #4caf50;
    color: #fff;
}

.service-card:nth-child(5) .icon-box {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

.service-card:nth-child(5):hover .icon-box {
    background: #f44336;
    color: #fff;
}

.service-card:nth-child(6) .icon-box {
    color: #8d6e63;
    background: rgba(141, 110, 99, 0.1);
}

.service-card:nth-child(6):hover .icon-box {
    background: #8d6e63;
    color: #fff;
}

.service-card:nth-child(7) .icon-box {
    color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

.service-card:nth-child(7):hover .icon-box {
    background: #ff9800;
    color: #fff;
}

.service-card:nth-child(8) .icon-box {
    color: #ff5722;
    background: rgba(255, 87, 34, 0.1);
}

.service-card:nth-child(8):hover .icon-box {
    background: #ff5722;
    color: #fff;
}

.service-card:nth-child(9) .icon-box {
    color: #fbc02d;
    background: rgba(255, 235, 59, 0.15);
}

.service-card:nth-child(9):hover .icon-box {
    background: #fbc02d;
    color: #fff;
}

.service-card:nth-child(10) .icon-box {
    color: #607d8b;
    background: rgba(96, 125, 139, 0.1);
}

.service-card:nth-child(10):hover .icon-box {
    background: #607d8b;
    color: #fff;
}