:root {
    --primary: #1A365D;
    --primary-light: #2A4D7C;
    --primary-dark: #0F223D;
    --secondary: #3182CE;
    --secondary-light: #EBF8FF;
    --accent: #D4AF37;
    --accent-hover: #C5A028;
    --text-dark: #1A202C;
    --text-muted: #4A5568;
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

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

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
}

/* Header Navigation — fixed below top bar; collapses to top on scroll */
.site-header {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-dark);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
    top: 0;
    background-color: rgba(15, 34, 61, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled .header-container {
    padding: 10px 24px;
}

.site-header .nav-link {
    color: rgba(255, 255, 255, 0.95);
}

.site-header .nav-link:hover {
    color: var(--accent);
}

.site-header .fa-chevron-down {
    color: rgba(255, 255, 255, 0.7);
}

.site-header .mobile-toggle {
    color: var(--bg-white);
}

/* Top bar with phone/email/ABN */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 8px 24px;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.top-bar.scrolled {
    transform: translateY(-36px);
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-right a {
    color: var(--accent);
    margin-left: 15px;
    text-decoration: underline;
}

.top-bar-right a:hover {
    color: var(--bg-white);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.site-header.scrolled .logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    display: inline-block;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link:hover::after,
.nav-item.active > .nav-link::after {
    width: 100%;
    left: 0;
}

/* Dropdown Menu Styles */
.nav-item.has-dropdown {
    padding-right: 5px;
}

.nav-item .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 3px;
    transition: var(--transition-smooth);
}

.nav-item:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: 6px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    padding: 10px 0;
    margin-top: 5px;
}

/* Invisible hover bridge to prevent mouseleave gap triggers */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: transparent;
}

.dropdown-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: none;
    transition: var(--transition-smooth);
}

.dropdown-menu a:hover {
    background-color: var(--secondary-light);
    color: var(--primary);
    padding-left: 25px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Scroll margin offset to clear fixed header during anchor navigation */
.product-card,
.service-item-block,
.legal-notice-box {
    scroll-margin-top: 120px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header-enquiry {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary);
}

.btn-header-enquiry:hover {
    background-color: transparent;
    color: var(--primary);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 650px;
    margin-top: 114px; /* Accounts for top-bar (36px) and header (78px) height */
    overflow: hidden;
}

.slide-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
}

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

/* Dynamic Animated Line Canvas in Hero background */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text {
    color: var(--bg-white);
    padding-right: 40px;
}

.hero-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 700;
    animation: fadeInDown 0.6s ease-out both;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out both;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out both;
}

/* Quick Search / Tracking box */
.hero-search-box {
    display: flex;
    background-color: var(--bg-white);
    padding: 5px;
    border-radius: 40px;
    max-width: 550px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 1.2s ease-out both;
}

.hero-search-input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 40px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.hero-search-btn {
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.hero-search-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Right side float illustration of ship */
.hero-graphic {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-ship-img {
    max-width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    border-radius: 8px;
    object-fit: cover;
}

/* Navigation controls for Slider */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent);
    width: 30px;
    border-radius: 10px;
}

/* Quote & Book Section */
.quote-book-sec {
    padding: 80px 24px;
    background-color: var(--bg-white);
}

.quote-book-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 60px;
    align-items: center;
}

.quote-book-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.quote-book-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
}

.quote-book-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.quote-book-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quote-book-graphic img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    height: 380px;
}

/* Business Sectors / 3 Plate-forms Section */
.sectors-sec {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px auto;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.sectors-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sector-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sector-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sector-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.sector-card:hover .sector-img {
    transform: scale(1.08);
}

.sector-icon {
    position: absolute;
    bottom: -20px;
    right: 24px;
    background-color: var(--primary);
    color: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.sector-content {
    padding: 30px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sector-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.sector-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.sector-link {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.sector-link:hover {
    color: var(--accent);
}

/* Regions / Shipping Route Map Section */
.regions-sec {
    padding: 80px 24px;
    background-color: var(--bg-white);
}

.regions-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.regions-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.regions-list {
    margin-top: 30px;
}

.regions-list-item {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.regions-list-item i {
    color: var(--accent);
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Trust / Value points */
.value-points-sec {
    padding: 80px 24px;
    background-color: var(--primary);
    color: var(--bg-white);
}

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

.value-card {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-bottom: 4px solid var(--accent);
    transition: var(--transition-smooth);
}

.value-card:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Lead Inquiry Call-to-action */
.inquiry-cta {
    padding: 60px 24px;
    background-color: var(--secondary-light);
    border-left: 5px solid var(--primary);
}

.inquiry-cta-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inquiry-cta-text h3 {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.inquiry-cta-text p {
    color: var(--text-muted);
}

/* Common Layout Elements */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 160px 24px 120px 24px; /* Doubled height padding */
    margin-top: 114px; /* Accounts for top-bar (36px) and header (78px) height */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 460px; /* Doubled container height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-breadcrumbs {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

/* About Us Page Content */
.about-content-sec {
    padding: 80px 24px;
}

.about-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-detail-block {
    margin-bottom: 40px;
}

.about-detail-block h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.about-detail-block p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-notice-box {
    background-color: var(--bg-light);
    border-top: 4px solid var(--accent);
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
}

.legal-notice-box h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-notice-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* Product Page Grid */
.products-sec {
    padding: 80px 24px;
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.product-img-box {
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-light);
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img-box img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}

.product-price-notice {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    background-color: var(--secondary-light);
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
    border-left: 3px solid var(--secondary);
}

/* Services Page list */
.services-sec {
    padding: 80px 24px;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-item-block {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-item-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-block-img {
    width: 40%;
    min-height: 300px;
    object-fit: cover;
}

.service-block-content {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-block-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-block-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Sourcing Page */
.sourcing-sec {
    padding: 80px 24px;
}

.sourcing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.sourcing-desc {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.supply-regions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.supply-region-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 30px 24px;
    text-align: center;
    border-top: 4px solid var(--primary);
}

.supply-region-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.supply-region-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ accordion style */
.faq-sec {
    padding: 80px 24px;
}

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

.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-header {
    padding: 22px 28px;
    background-color: var(--bg-white);
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-header:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-content {
    max-height: 500px; /* arbitrary height to slide down */
    padding-bottom: 22px;
}

.faq-item.active .faq-header {
    background-color: var(--secondary-light);
    border-bottom: 1px solid var(--border-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

/* Contact Us Page */
.contact-sec {
    padding: 80px 24px;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-panel h2 {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item-icon {
    background-color: var(--secondary-light);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-item-text p {
    color: var(--text-muted);
}

.contact-item-text a {
    color: var(--primary);
    font-weight: 600;
}

.contact-item-text a:hover {
    color: var(--accent);
}

/* Google Map Container placeholder */
.map-embed {
    width: 100%;
    height: 250px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-light);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.map-embed-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.map-embed-placeholder i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

/* Inquiry Form */
.contact-form-panel {
    background-color: var(--bg-light);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.contact-form-panel h3 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-form-panel p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

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

.form-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 38, 93, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.form-submit-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Footer styling */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 60px 24px 20px 24px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-info p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 25px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* makes the dark logo white in the dark footer */
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.footer-link-list a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-social-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--bg-white);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-icon-link:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Animations definition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Responsive Layout Media Queries */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-dark);
        padding: 16px 20px 24px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        gap: 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 4px;
        font-size: 0.9rem;
    }

    .nav-item.has-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.15);
        border-radius: 4px;
        margin: 0 0 10px;
        padding: 4px 0;
        display: none;
        min-width: 0;
    }

    .nav-item.has-dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-item.has-dropdown .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.85);
        padding: 10px 16px;
    }

    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.08);
        color: var(--accent);
        padding-left: 20px;
    }

    .site-header {
        top: 0;
    }

    .header-container {
        position: relative;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-search-box {
        margin: 0 auto;
    }
    
    .hero-graphic {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quote-book-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .regions-container {
        grid-template-columns: 1fr;
    }
    
    .value-points-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .hero-slider {
        height: auto;
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .value-points-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item-block {
        flex-direction: column !important;
    }
    
    .service-block-img {
        width: 100%;
        height: 220px;
    }
    
    .service-block-content {
        width: 100%;
        padding: 24px;
    }
    
    .supply-regions {
        grid-template-columns: 1fr;
    }
}

/* Stats Banner styling */
.stats-sec {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 60px 24px;
    border-bottom: 4px solid var(--accent);
}
.stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-card {
    padding: 10px;
}
.stat-number {
    font-family: var(--font-header);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.stat-label {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.85;
}

/* Timeline/Pipeline Sourcing Flow styling */
.timeline-sec {
    background-color: var(--bg-white);
    padding: 100px 24px;
    border-bottom: 1px solid var(--border-color);
}
.timeline-container {
    max-width: var(--max-width);
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.timeline-step {
    position: relative;
    padding: 24px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}
.timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
}
.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-light);
    opacity: 0.4;
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-header);
}
.step-title {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
}
.step-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Teaser grids styling for news/projects */
.teasers-sec {
    background-color: var(--bg-white);
    padding: 100px 24px;
}
.teasers-grid {
    max-width: var(--max-width);
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.teaser-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.teaser-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.teaser-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.teaser-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.teaser-date {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}
.teaser-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}
.teaser-desc {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.teaser-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}
.teaser-card:hover .teaser-link {
    gap: 12px;
}

/* Responsiveness media overrides */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .teasers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    .timeline-container {
        grid-template-columns: 1fr;
    }
    .teasers-grid {
        grid-template-columns: 1fr;
    }
}

/* B2B Specs Table styling */
.b2b-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
}
.b2b-specs-table th {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    text-align: left;
    padding: 14px 18px;
    font-weight: 600;
}
.b2b-specs-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}
.b2b-specs-table tr:nth-of-type(even) {
    background-color: var(--bg-light);
}
.b2b-specs-table tr:hover {
    background-color: var(--secondary-light);
    color: var(--primary-dark);
}
@media (max-width: 768px) {
    .b2b-specs-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* FAQ Accordion Styling */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
}
.faq-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--bg-white);
    transition: background-color 0.3s ease;
    user-select: none;
}
.faq-header:hover {
    background-color: var(--secondary-light);
}
.faq-header h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 700;
}
.faq-icon {
    font-size: 0.9rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    padding: 0 24px;
    background-color: var(--bg-white);
    border-top: 0 solid var(--border-color);
}
.faq-body p {
    margin: 0;
    padding: 20px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.85;
}

/* Active FAQ Item styling */
.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}
.faq-item.active .faq-header {
    background-color: var(--secondary-light);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}
.faq-item.active .faq-body {
    max-height: 300px;
    padding: 0 24px;
    border-top: 1px solid var(--border-color);
}

/* Scroll Fade-in Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* B2B Testimonials Card Grid */
.b2b-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}
.testimonial-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-smooth);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.testimonial-quote {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
}
.testimonial-client {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-meta h5 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 700;
}
.testimonial-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

/* Inline RFQ Form styling */
.inline-rfq-panel {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-sm);
}
.inline-rfq-panel h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.4rem;
}
.inline-rfq-panel p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}
.inline-rfq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.inline-rfq-full {
    grid-column: span 2;
}

/* Related Project Showcase Link */
.related-project-showcase {
    background-color: var(--secondary-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    padding: 24px;
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}
.related-project-showcase:hover {
    background-color: rgba(163, 220, 190, 0.25);
    border-left-color: var(--accent);
}
.related-project-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 700;
}
.related-project-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.85;
}
.related-project-btn {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition-smooth);
}
.related-project-btn:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .b2b-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .inline-rfq-grid {
        grid-template-columns: 1fr;
    }
    .inline-rfq-full {
        grid-column: span 1;
    }
    .related-project-showcase {
        flex-direction: column;
        align-items: flex-start;
    }
    .related-project-btn {
        width: 100%;
        text-align: center;
    }
}

/* Premium Animated Header & Footer Enhancements */

/* Shimmer sweep animation for Header CTA button */
@keyframes shimmer-sweep {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}
.btn-header-enquiry {
    position: relative;
    overflow: hidden;
}
.btn-header-enquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shimmer-sweep 5s infinite ease-in-out;
}

/* Footer Wave Section */
.footer-wave-container {
    position: relative;
    width: 100%;
    background: transparent;
    min-height: 40px;
    max-height: 60px;
    margin-bottom: -1px; /* aligns wave cleanly to footer bg */
    overflow: hidden;
}
.footer-waves {
    position: relative;
    width: 100%;
    height: 50px;
    margin-bottom: -7px; /* Fix for safari gap */
    min-height: 40px;
    max-height: 60px;
}
.parallax-waves > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax-waves > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax-waves > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax-waves > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax-waves > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

/* Micro-sliding on Footer Links */
.footer-link-list li a {
    position: relative;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.footer-link-list li a:hover {
    color: var(--accent) !important;
    transform: translateX(8px);
}
.footer-link-list li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: all 0.3s ease;
}
.footer-link-list li a:hover::before {
    opacity: 1;
    left: -10px;
    color: var(--accent);
}

/* Pulse Glow icons */
.footer-contact p i {
    transition: transform 0.3s ease, color 0.3s ease;
}
.footer-contact p:hover i {
    transform: scale(1.25) rotate(10deg);
    color: var(--accent) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
.footer-logo {
    transition: transform 0.4s ease;
}
.footer-logo:hover {
    transform: scale(1.05);
}

