:root {
    /* Color Palette */
    --clr-primary-bg: #FAF7F2;
    /* Warm Ivory */
    --clr-secondary-bg: #EFE7DA;
    /* Soft Sand */
    --clr-primary-accent: #6E4B3A;
    /* Deep Cinnamon Brown */
    --clr-secondary-accent: #7B8062;
    /* Sage Olive */
    --clr-highlight: #C68A2F;
    /* Saffron Ochre */
    --clr-terracotta: #D36B46;
    /* Warm Terracotta Accent */
    --clr-neutral: #A39A90;
    /* Warm Stone Grey */
    --clr-text: #2B2A28;
    /* Rich Charcoal */
    --clr-white: #FFFFFF;

    /* Typography */
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --section-padding: 100px 20px;
    --container-max: 1280px;
    --border-radius: 12px;
    --shadow-soft: 0 20px 40px rgba(43, 42, 40, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-primary-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.section-padding {
    padding: var(--section-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--clr-text);
}

p {
    font-size: 1.125rem;
    color: var(--clr-text);
    opacity: 0.85;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--clr-primary-accent);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-highlight);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(198, 138, 47, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-white);
    border: 1px solid var(--clr-white);
}

.btn-secondary:hover {
    background-color: var(--clr-white);
    color: var(--clr-text);
}

.btn-text {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--clr-primary-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.btn-text .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-text:hover {
    color: var(--clr-highlight);
}

.btn-text:hover .arrow {
    transform: translateX(4px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px 0;
}

header.scrolled {
    background-color: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--clr-text);
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    opacity: 0.9;
}

header.scrolled .nav-links a {
    color: var(--clr-text);
}

.nav-links a:hover {
    color: var(--clr-highlight);
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(250, 247, 242, 0.95) 0%, rgba(250, 247, 242, 0.7) 40%, rgba(250, 247, 242, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    width: 100%;
}

.hero-text-wrapper {
    max-width: 650px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-text-wrapper {
    animation: slideUpFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    color: var(--clr-text);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-primary-accent);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-actions .btn-secondary {
    background-color: transparent;
    color: var(--clr-text);
    border: 1px solid var(--clr-text);
}

.hero-actions .btn-secondary:hover {
    background-color: var(--clr-text);
    color: var(--clr-white);
}

/* About Preview */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 40px;
}

.image-frame {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-primary-accent);
    opacity: 0.05;
    pointer-events: none;
}

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

.image-frame:hover .about-img {
    transform: scale(1.03);
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-secondary-accent);
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.section-desc {
    margin-bottom: 32px;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 1.125rem;
    color: var(--clr-text);
    opacity: 0.85;
}

.about-highlights {
    list-style: none;
    margin-bottom: 40px;
}

.about-highlights li {
    font-size: 1.125rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.about-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-highlight);
    font-weight: bold;
}

/* Statistics */
.statistics {
    background-color: var(--clr-secondary-bg);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    padding: 0 40px;
}

.stat-number {
    font-size: 4rem;
    color: var(--clr-primary-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-neutral);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Interactive Product Showcase */
.product-showcase {
    /* We handle pinned sticky container */
    height: 900vh;
    /* Allow for scroll room */
    position: relative;
}

.product-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clr-primary-bg);
    overflow: hidden;
}

.product-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 20px;
}

.nav-thumbnails {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 15px;
    z-index: 10;
    justify-content: center;
    max-width: 90vw;
    overflow-x: auto;
    padding-bottom: 10px;
}

.row-thumbnails {
    bottom: auto;
}

.thumb-item {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    background-color: var(--clr-white);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.thumb-item img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.thumb-item.active {
    opacity: 1;
    transform: scale(1.15);
    border: 2px solid var(--clr-highlight);
}

.feature-card {
    background-color: var(--clr-secondary-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 45% 55%;
    width: 75%;
    max-width: 1000px;
    min-height: 400px;
    padding: 40px 50px;
    align-items: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animation classes for JS */
.feature-card.sliding-out {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
}

.feature-card.sliding-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.card-left {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-img {
    width: 130%;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
    margin-left: -15%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.card-right {
    padding-left: 40px;
}

.product-category {
    font-size: 0.875rem;
    color: var(--clr-secondary-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.product-title {
    font-size: 2.5rem;
    color: var(--clr-primary-accent);
    margin-bottom: 16px;
}

.product-desc {
    margin-bottom: 24px;
}

.product-highlights {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.product-highlights li {
    background-color: var(--clr-primary-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--clr-primary-accent);
    font-weight: 500;
}

.cta-aligned {
    margin-top: 10px;
}

/* Global Presence */
.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 40px;
}

.country-card {
    background-color: var(--clr-secondary-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.country-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.country-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

/* Process Timeline */
.process {
    background-color: var(--clr-white);
}

.timeline-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-dot {
    width: 24px;
    height: 24px;
    background-color: var(--clr-highlight);
    border-radius: 50%;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 8px rgba(198, 138, 47, 0.2);
}

.timeline-step h4 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
}

.timeline-line {
    flex-grow: 1;
    height: 2px;
    background-image: linear-gradient(to right, var(--clr-neutral) 50%, transparent 50%);
    background-size: 12px 2px;
    margin: 0 20px;
    position: relative;
    top: -16px;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    background-color: var(--clr-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 40px;
}

.contact-info-col .section-label {
    display: block;
    margin-bottom: 16px;
    color: var(--clr-highlight);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-info-col .section-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.contact-info-col .section-desc {
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: var(--clr-text);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item .icon {
    font-size: 1.5rem;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    font-size: 1.125rem;
    color: var(--clr-primary-accent);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    color: var(--clr-text);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.contact-item a:hover {
    color: var(--clr-highlight);
}

/* Contact Form */
.contact-form-col {
    background-color: var(--clr-secondary-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--clr-primary-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--clr-white);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-highlight);
}

.btn-submit {
    width: 100%;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--clr-primary-accent);
    color: var(--clr-white);
    padding: 80px 20px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 0 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--clr-white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 6px;
    display: block;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--clr-white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--clr-highlight);
}

.footer-bottom {
    padding: 0 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .feature-card {
        width: 90%;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }

    .floating-img {
        margin-left: 0;
        width: 60%;
        max-width: 300px;
        margin-bottom: 30px;
    }

    .card-right {
        padding-left: 0;
    }

    .product-highlights {
        justify-content: center;
    }

    .nav-thumbnails {
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-container,
    .features-grid,
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-step {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .step-dot {
        margin: 0;
    }

    .nav-links,
    .nav-action {
        display: none;
        /* Add mobile menu later if needed */
    }
}

@media (max-width: 480px) {

    .stats-container,
    .features-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------
   New Layout Additions (Products Page)
-------------------------------------- */
.page-header {
    background-color: var(--clr-secondary-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 40px;
}

.product-card {
    background-color: var(--clr-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(43, 42, 40, 0.12);
}

.product-img-wrapper {
    height: 250px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

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

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

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 1.75rem;
    color: var(--clr-primary-accent);
    margin-bottom: 12px;
}

.product-info p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--clr-text);
}


/* -------------------------------------
   Home Screen 8 Circles Layout
-------------------------------------- */
.product-circles-section {
    background-color: var(--clr-primary-bg);
}

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

.product-circle-item {
    text-align: center;
    transition: transform 0.3s ease;
    display: block;
    cursor: pointer;
}

.product-circle-item:hover {
    transform: translateY(-10px);
}

.circle-img-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    border: 3px solid var(--clr-primary-accent);
}

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

.product-circle-item:hover .circle-img-container img {
    transform: scale(1.1);
}

.circle-img-container.blurred img {
    filter: blur(4px);
    transform: scale(1.2);
}

.view-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(110, 75, 58, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-circle-item.view-more-item:hover .view-more-overlay {
    opacity: 1;
}

.product-circle-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clr-primary-accent);
}


/* -------------------------------------
   Global Presence Map Layout
-------------------------------------- */
.global-presence {
    background-color: var(--clr-primary-bg);
    padding: 120px 20px;
    overflow: hidden;
}

.gp-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.gp-mobile-header {
    display: none;
}

/* Map Column */
.gp-map-column {
    position: relative;
    width: 100%;
    border-radius: 24px;
    background-color: var(--clr-white);
    border: 1px solid #E8E3D8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 20px;
    padding: 20px;
}

.gp-map-cropper {
    position: relative;
    width: 100%;
    /* Match the 1000x350 viewBox aspect ratio so the map fits perfectly */
    aspect-ratio: 1000 / 350;
    overflow: hidden;
    border-radius: 12px;
}

.gp-map-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.gp-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
}

.gp-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* SVG Line Animations */
.gp-route-line {
    fill: none;
    stroke: var(--clr-terracotta);
    stroke-width: 1.5;
    stroke-dasharray: 5, 5;
    opacity: 0.4;
    vector-effect: non-scaling-stroke;
}
.gp-route-line.active {
    stroke: var(--clr-terracotta);
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dashRoute 1s ease-out forwards;
    opacity: 1;
}
@keyframes dashRoute {
    to {
        stroke-dashoffset: 0;
    }
}

/* Vector Map Path Styling */
.vector-world-map {
    width: 100%;
    height: 100%;
}

.country-path {
    fill: #000000;
    stroke: #333333;
    stroke-width: 0.5px;
    vector-effect: non-scaling-stroke;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: center;
    transform-box: fill-box;
    cursor: default;
}

/* Base style for countries with business (Green) */
/* UAE: 784, Qatar: 634, Saudi Arabia: 682, Singapore: 702, Malaysia: 458, Vietnam: 704, Indonesia: 360, Brunei: 096, Thailand: 764, China: 156, Brazil: 076, South Africa: 710, Kenya: 404 */
#country-784, #country-634, #country-682, #country-702, #country-458, #country-704, #country-360, #country-096, #country-764, #country-156, #country-076, #country-710, #country-404 {
    fill: #22c55e;
    cursor: pointer;
}

/* Hover and active states for business countries */
#country-784:hover, #country-634:hover, #country-682:hover, #country-702:hover, #country-458:hover, #country-704:hover, #country-360:hover, #country-096:hover, #country-764:hover, #country-156:hover, #country-076:hover, #country-710:hover, #country-404:hover,
.country-path.active,
.country-path.hover-highlight {
    fill: #16a34a;
    stroke: var(--clr-white);
    stroke-width: 1.5px;
    transform: scale(1.03);
    filter: drop-shadow(0px 0px 8px rgba(34, 197, 94, 0.8));
}

/* India (Origin) - Terracotta */
#country-356 {
    fill: var(--clr-terracotta);
    cursor: pointer;
}
#country-356:hover, #country-356.active, #country-356.hover-highlight {
    fill: #C15A36;
    stroke: var(--clr-white);
    stroke-width: 1.5px;
    transform: scale(1.03);
    filter: drop-shadow(0px 0px 8px rgba(226, 114, 91, 0.8));
}

@keyframes pulsePin {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Info Panel Column */
.gp-info-column {
    position: relative;
    padding-left: 20px;
    min-height: 450px;
}

.gp-panel-default, .gp-panel-active {
    transition: opacity 0.3s ease;
}

.gp-stats-container {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.gp-stats-block h3 {
    font-size: 1.5rem;
    color: var(--clr-primary-accent);
    margin-bottom: 4px;
}
.gp-stats-block p {
    font-size: 0.9rem;
    color: var(--clr-neutral);
    margin: 0;
}

.gp-regions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gp-region-item h4 {
    font-size: 1.1rem;
    color: var(--clr-text);
    margin-bottom: 4px;
}

.gp-region-item p {
    font-size: 0.9rem;
    color: var(--clr-neutral);
    margin: 0;
    line-height: 1.4;
}

.gp-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--clr-terracotta);
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-bottom: 30px;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.gp-back-btn:hover {
    color: var(--clr-primary-accent);
}

.gp-region-badge {
    display: inline-block;
    background-color: var(--clr-secondary-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary-accent);
    margin-bottom: 16px;
    margin-top: 10px;
}

.gp-status-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 500;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

.gp-supplied {
    font-size: 0.9rem;
    color: var(--clr-neutral);
    font-style: italic;
}

/* Mobile Chips */
.gp-mobile-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
    margin-top: 20px;
}

.gp-chip {
    display: inline-block;
    padding: 10px 24px;
    background-color: rgba(34, 197, 94, 0.15); /* Semi-transparent Green */
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.gp-chip:hover, .gp-chip.active {
    background-color: rgba(34, 197, 94, 0.8);
    color: var(--clr-white);
    border-color: rgba(34, 197, 94, 1);
}

/* India Chip (Terracotta) */
.gp-chip[data-id="356"] {
    background-color: rgba(226, 114, 91, 0.15); /* Semi-transparent Terracotta */
    color: var(--clr-terracotta);
    border-color: rgba(226, 114, 91, 0.3);
}

.gp-chip[data-id="356"]:hover, .gp-chip[data-id="356"].active {
    background-color: rgba(226, 114, 91, 0.8);
    color: var(--clr-white);
    border-color: rgba(226, 114, 91, 1);
}

.gp-mobile-info {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: var(--clr-primary-bg);
    border-radius: 12px;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .global-presence { padding: 80px 20px; }
    .gp-container { grid-template-columns: 1fr; gap: 40px; }
    .gp-info-column { min-height: auto; padding-left: 0; }
}
@media (max-width: 768px) {
    .global-presence { padding: 56px 20px; }
    .gp-map-column {
        padding: 10px;
        border-radius: 16px;
    }
}


/* -------------------------------------
   Credentials Layout
-------------------------------------- */
.credentials {
    background-color: var(--clr-white);
}

.credentials-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    padding: 0 40px;
}

.credential-item {
    flex: 1;
    /* each item takes equal width */
    background-color: var(--clr-secondary-bg);
    padding: 40px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

/* -------------------------------------
   Responsive Overrides
-------------------------------------- */
@media (max-width: 1024px) {
    .product-circles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (max-width: 768px) {
    .product-circles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 480px) {
    .product-circles-grid {
        grid-template-columns: 1fr;
    }

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

/* Floating Download Button */
.floating-download-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 12px 24px;
    background-color: var(--clr-highlight);
    color: var(--clr-white);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-download-btn span {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
}

.floating-download-btn:hover {
    transform: scale(1.1);
    background-color: var(--clr-primary-accent);
}

.floating-download-btn svg {
    width: 28px;
    height: 28px;
}

/* --- Mobile Responsiveness Enhancements --- */
@media (max-width: 768px) {

    /* Navbar Sliding Menu */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--clr-primary-accent);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 250px;
        background-color: var(--clr-primary-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 30px;
        display: flex !important;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-action {
        display: none !important;
    }

    /* Grids & Layouts */
    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-circles-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .credentials-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .credential-item:last-child {
        grid-column: 1 / -1;
    }

    .contact-container {
        display: flex !important;
        flex-direction: column !important;
    }

    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* Suggested products in PDP */
    .suggested-section {
        padding: 48px 0;
    }
    .suggested-grid {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px !important;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        padding-left: 24px;
        padding-right: 24px;
    }

    .suggested-grid .product-card {
        min-width: 78%;
        flex: 0 0 78%;
        scroll-snap-align: start;
        white-space: normal;
        border-radius: 20px;
    }

    /* PDP Layout Redesign */
    .pdp-section {
        padding-top: 100px;
        padding-bottom: 56px;
    }
    .pdp-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 24px !important;
    }

    .pdp-image-col, .pdp-info-col {
        display: contents;
    }

    .pdp-category {
        order: 1;
        margin-bottom: 8px !important;
    }

    .pdp-title {
        order: 2;
        font-size: 32px !important;
        margin-bottom: 16px !important;
        line-height: 1.2;
    }

    .pdp-short-desc {
        order: 3;
        display: block !important;
        font-size: 16px;
        margin-bottom: 24px;
    }

    .pdp-cta-wrapper {
        order: 4;
        display: flex !important;
        flex-direction: column;
        gap: 16px;
        margin-top: 0 !important;
        margin-bottom: 48px !important;
        width: 100%;
    }

    .pdp-cta-wrapper .btn {
        width: 100%;
        text-align: center;
        border-radius: 20px;
        padding: 16px;
        font-size: 16px;
    }

    .pdp-cta-wrapper .btn-secondary {
        display: block !important;
        background-color: transparent;
        color: var(--clr-primary-accent);
        border: 1px solid var(--clr-primary-accent);
    }
    
    .pdp-cta-wrapper .btn-secondary:hover {
        background-color: var(--clr-primary-accent);
        color: var(--clr-white);
    }

    .pdp-image-col .pdp-main-image {
        order: 5;
        width: 100% !important;
        aspect-ratio: 4 / 5 !important;
        object-fit: cover;
        border-radius: 20px !important;
        margin-bottom: 48px;
    }

    .pdp-features {
        order: 6;
        margin-bottom: 24px !important;
    }

    .pdp-desc {
        order: 7;
        font-size: 16px !important;
    }

    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    /* Sticky Mobile CTA */
    .sticky-mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 64px;
        background-color: var(--clr-white);
        box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 24px;
        z-index: 1000;
        transition: transform 0.3s ease-in-out;
    }
    .sticky-mobile-cta.hidden {
        transform: translateY(100%);
    }
    .sticky-mobile-cta.visible {
        transform: translateY(0);
    }
    .sticky-product-name {
        font-family: var(--font-body);
        font-weight: 600;
        color: var(--clr-text);
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 50%;
    }
    .sticky-mobile-cta .btn {
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
    }
    
    /* Footer Accordion */
    .footer-col h4.accordion-header {
        position: relative;
        cursor: pointer;
        padding-right: 20px;
        display: inline-block;
    }
    .footer-col h4.accordion-header::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        font-weight: 300;
        transition: transform 0.3s ease;
    }
    .footer-col h4.accordion-header.active::after {
        content: '-';
    }
    .footer-col h4.accordion-header + * {
        display: none;
    }
    .footer-col h4.accordion-header + *:not(h4) {
        /* This hides all siblings following the h4 initially */
    }
    .footer-col a, .footer-col p {
        display: none; /* Hide footer links and text initially */
    }
    .footer-col h4.accordion-header.active ~ a,
    .footer-col h4.accordion-header.active ~ p {
        display: block;
        animation: fadeUp 0.25s ease forwards;
    }
    
    /* Mobile animations */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Global Footprint Map */
    .map-container-full {
        overflow: hidden;
        height: 350px;
        position: relative;
    }

    .world-map-img {
        width: 300%;
        max-width: 300%;
        transform: translate(-60%, -35%);
    }

    .map-marker {
        transform: scale(0.6) translate(-250%, -150%);
    }

    /* Overall Sizes */
    .section-padding {
        padding: 50px 20px !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

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

    .floating-download-btn {
        padding: 8px 16px !important;
        font-size: 14px !important;
        width: auto !important;
        height: auto !important;
    }

    .floating-download-btn span {
        font-size: 14px !important;
    }

    .floating-download-btn svg {
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 480px) {

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

    .hero-subtitle {
        font-size: 1rem !important;
    }

    /* Stack on small screens for better readability instead of forcing 2 columns */
    .stats-container,
    .product-circles-grid,
    .credentials-grid,
    .products-grid {
        grid-template-columns: 1fr !important;
    }

    .credentials-grid {
        display: grid !important;
    }

    /* Mobile PDP tweak if 2 columns is too tight */
    .pdp-info-col {
        grid-template-columns: 1fr;
    }
}