/*
 * Vajron Global Metals - Brushed Steel Material Design
 * Exact color palette as specified by client
 */

:root {
    /* ===== CLIENT SPECIFIED COLOR PALETTE ===== */
    --color-metallic-silver: #BFC2C7;
    /* Base metallic */
    --color-background-white: #F3F4F6;
    /* Gradient sheen */
    --color-text-grey: #6B7280;
    /* Light text - Updated */
    --color-primary-navy: #1F2A44;
    /* Main Headings & Buttons - Updated */
    --color-card: #E4E6EA;
    /* Cards with bevel */
    --color-body-text: #3A3A3A;
    /* Body text - New */

    /* Supporting Colors */
    --color-white: #FFFFFF;
    --color-border: #D5DCE0;
    --color-navy-dark: #151D30;
    --color-success: #10B981;
    --color-danger: #EF4444;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-serif-heading: 'Playfair Display', serif;
    --font-accent: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-trajan: 'Trajan Pro', 'Trajan Pro 3', 'Playfair Display', serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-body-text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ========================================
   BRUSHED STEEL - ACTUAL TEXTURE IMAGE
   Using the exact same texture from logo
   ======================================== */

/* Main brushed steel background - iOS COMPATIBLE */
/* Using pseudo-element approach for iOS Safari compatibility */
body {
    background-color: #c8cdd4;
    /* Fallback color matching the theme */
    min-height: 100vh;
    position: relative;
}

/* Background image as pseudo-element - works on iOS */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background-theme.jpg') center center / cover no-repeat;
    z-index: -1;
    pointer-events: none;
}

/* ========================================
   LIVE METAL RATES TICKER
   ======================================== */
.metal-rates-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--color-primary-navy);
    color: var(--color-white);
    padding: 8px 0;
    font-size: 0.8rem;
    overflow: hidden;
}

.ticker-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ticker-item strong {
    color: rgba(255, 255, 255, 0.8);
}

.ticker-separator {
    color: rgba(255, 255, 255, 0.3);
}

.rate-up {
    color: #10B981;
    font-weight: 600;
}

.rate-down {
    color: #EF4444;
    font-weight: 600;
}

/* ========================================
   Navigation - Semi-transparent over texture
   ======================================== */
.navbar {
    position: fixed;
    top: 36px;
    /* Below ticker */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    /* Semi-transparent to show texture through */
    background: rgba(200, 205, 212, 0.85);
    border-bottom: 1px solid rgba(95, 103, 117, 0.15);
    backdrop-filter: blur(8px);
}

.nav-container,
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 70px;
    width: auto;
    /* Reduce brightness, add shadow for premium look */
    filter: drop-shadow(0 2px 8px rgba(46, 58, 89, 0.35)) brightness(0.95) contrast(1.05);
}

.logo-text {
    font-family: var(--font-serif-heading);
    /* Same font as hero title */
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary-navy);
    letter-spacing: 3px;
}

/* Using nav-links from HTML */
.nav-links,
.nav-menu {
    display: flex;
    flex-direction: row;
    /* Force Horizontal */
    gap: 2.5rem;
    /* Adjusted spacing */
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a,
.nav-menu a,
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-grey);
    transition: color 0.3s;
    text-decoration: none;
}

.nav-links a:hover,
.nav-menu a:hover,
.nav-link:hover {
    color: var(--color-primary-navy);
}

.nav-links a.active,
.nav-menu a.active,
.nav-menu .nav-link.active {
    color: var(--color-primary-navy);
    font-weight: 600;
}

.nav-btn,
.nav-cta {
    /* Both nav-btn and nav-cta work identically */
    background: var(--color-primary-navy);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-btn:hover,
.nav-cta:hover {
    background: var(--color-navy-dark);
}

.nav-toggle,
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.nav-toggle span,
.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary-navy);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {

    .nav-toggle,
    .menu-toggle {
        display: flex;
    }

    /* Larger mobile menu font */
    .nav-links a,
    .nav-menu a,
    .nav-link {
        font-size: 1rem;
        padding: 14px 0;
    }

    .logo-img {
        height: 45px;
        /* Smaller logo with padding */
    }

    .logo-text {
        font-size: 1.3rem;
        letter-spacing: 3px;
        margin-left: 20px;
    }

    /* Center the logo in navbar on mobile */
    .nav-container {
        justify-content: center;
        position: relative;
        padding: 15px 0;
    }

    .navbar {
        padding: 10px 0;
        background: rgba(200, 205, 212, 1);
        backdrop-filter: none;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(calc(-50% - 80px));
        gap: 40px;
        align-items: center;
    }

    .menu-toggle {
        position: absolute;
        right: 15px;
    }

    .nav-links,
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 100;
    }

    .nav-links a,
    .nav-menu li,
    .nav-menu a {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active,
    .nav-menu.active {
        display: flex;
    }

    .nav-btn,
    .nav-cta {
        display: none;
    }
}

/* ========================================
   Hero Section - Transparent (texture shows through)
   ======================================== */
/* ========================================
   Hero Section - Blended Layout (Refined)
   ======================================== */
/* ========================================
   IMAGE SIZING UTILITY CLASSES (TAGS SYSTEM)
   Use these classes to manually control image sizes
   ======================================== */
.img-xs {
    max-width: 80px !important;
}

.img-sm {
    max-width: 150px !important;
}

.img-md {
    max-width: 300px !important;
}

.img-lg {
    max-width: 500px !important;
}

.img-xl {
    max-width: 800px !important;
}

/* Width Percentages */
.w-25 {
    width: 25% !important;
}

.w-40 {
    width: 40% !important;
}

.w-50 {
    width: 50% !important;
}

.w-60 {
    width: 60% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

/* ========================================
   Hero Section - Blended Layout (Balanced)
   ======================================== */
.hero-blended {
    /* Increased height to "drag down" the bottom bar */
    min-height: 700px;
    height: 90vh;
    /* Limit height to prevent "vertically very big" issues */
    max-height: 850px;
    padding-top: 120px;
    /* Account for ticker + navbar */
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    height: 100%;
    /* Fill parent */
}

/* Left Content Styles - Centered */
.hero-text-content {
    width: 45%;
    z-index: 10;
    padding-left: var(--space-xl);
    margin-top: -110px;
    /* Lifted up 110px */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-logo-large {
    margin-bottom: -30px;
    /* Negative margin to reduce gap */
}

.hero-logo-large img {
    max-width: 360px;
    /* 2x bigger */
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(46, 58, 89, 0.25));
}

.hero-main-title {
    font-family: var(--font-trajan);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--color-primary-navy);
    line-height: 1;
    margin-bottom: 0.3rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-sub-title {
    font-family: var(--font-trajan);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--color-primary-navy);
    margin-bottom: var(--space-sm);
    font-weight: 600;
    text-transform: uppercase;
}

.hero-tagline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--space-sm);
}

.hero-tagline-wrapper .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-text-grey), transparent);
}

.hero-tagline-wrapper .tagline {
    font-family: var(--font-trajan);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    color: var(--color-primary-navy);
    white-space: nowrap;
}

.hero-desc {
    font-family: var(--font-trajan);
    display: block;
    font-size: 0.9rem;
    color: var(--color-body-text);
    font-weight: 500;
    margin-bottom: var(--space-md);
    white-space: nowrap;
}

/* Right Image - Bounded Box with Rounded Corners */
.hero-image-blend {
    position: absolute;
    right: 20px;
    top: 20px;
    bottom: 20px;
    width: 65%;
    max-width: 800px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image-blend img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 16px;
    opacity: 1;
    /* Maximum smooth blend effect - very wide fade */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.08) 12%, rgba(0, 0, 0, 0.18) 24%, rgba(0, 0, 0, 0.32) 36%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.7) 58%, rgba(0, 0, 0, 0.88) 68%, rgba(0, 0, 0, 1) 75%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.08) 12%, rgba(0, 0, 0, 0.18) 24%, rgba(0, 0, 0, 0.32) 36%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.7) 58%, rgba(0, 0, 0, 0.88) 68%, rgba(0, 0, 0, 1) 75%);
}

/* Blend overlay - disabled, using mask instead */
.blend-overlay {
    display: none;
}

/* Bottom Feature Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    background: transparent;
    border-top: none;
    padding: var(--space-sm) 0;
    z-index: 20;
}

.hero-features-row {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    align-items: center;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex: 0 1 auto;
    justify-content: center;
    /* Transparent background */
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    margin-top: 75px;
    /* Move 75px down */
    box-shadow: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.hero-feature-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 24px rgba(46, 58, 89, 0.18),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8),
        inset -2px -2px 4px rgba(95, 103, 117, 0.15);
}

.h-feat-icon-img {
    width: 80px;
    /* Increased size within box */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    /* Standard positioning */
}

.h-feat-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

object-fit: contain;
}

.h-feat-text {
    text-align: left;
    white-space: nowrap;
}

.h-feat-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.h-feat-text p {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-navy);
    white-space: nowrap;
}

.hero-feature-separator {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* ========================================
   Icon Animations
   ======================================== */
/* Globe - Slow circular spin */
.icon-globe-spin {
    animation: globeSpin 10s linear infinite;
}

@keyframes globeSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Certificate - Subtle pulse glow */
.icon-cert-pulse {
    animation: certPulse 2s ease-in-out infinite;
}

@keyframes certPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 5px 15px rgba(46, 58, 89, 0.5));
    }
}

/* Ship - Floating/bobbing motion */
.icon-ship-float {
    animation: shipFloat 3s ease-in-out infinite;
}

@keyframes shipFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(1deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(-3px) rotate(-1deg);
    }
}

/* Scaled animations for cert section icons */
@keyframes certGlobeSpinScaled {
    0% {
        transform: scale(2.5) rotate(0deg);
    }

    100% {
        transform: scale(2.5) rotate(360deg);
    }
}

@keyframes certPulseScaled {

    0%,
    100% {
        transform: scale(2.5);
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }

    50% {
        transform: scale(2.625);
        filter: drop-shadow(0 5px 15px rgba(46, 58, 89, 0.5));
    }
}

@keyframes certShipFloatScaled {

    0%,
    100% {
        transform: scale(2.5) translateY(0) rotate(0deg);
    }

    25% {
        transform: scale(2.5) translateY(-3px) rotate(1deg);
    }

    50% {
        transform: scale(2.5) translateY(0) rotate(0deg);
    }

    75% {
        transform: scale(2.5) translateY(-3px) rotate(-1deg);
    }
}

/* Override animations for cert section icons */
.cert-item .icon-globe-spin {
    animation: certGlobeSpinScaled 10s linear infinite;
}

.cert-item .icon-cert-pulse {
    animation: certPulseScaled 2s ease-in-out infinite;
}

.cert-item .icon-ship-float {
    animation: certShipFloatScaled 3s ease-in-out infinite;
}

/* Responsive - Mobile Layout matching TARGET design */
@media (max-width: 768px) {

    /* Show ticker on mobile - smaller size */
    .metal-rates-ticker {
        display: block;
        padding: 4px 0;
        font-size: 0.65rem;
    }

    .navbar {
        top: 24px;
        padding: 8px 0;
    }

    .hero-blended {
        height: auto;
        min-height: auto;
        max-height: none;
        padding-top: 80px;
        padding-bottom: 10px;
        position: relative;
    }

    .hero-split {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        padding: var(--space-sm) var(--space-md);
        align-items: flex-start;
        position: relative;
    }

    /* CENTER-ALIGNED hero content */
    .hero-text-content {
        width: 100%;
        padding: 0 15px;
        margin-top: 0;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 10;
    }

    .hero-logo-large {
        margin-bottom: -10px;
        margin-left: 0;
        display: flex;
        justify-content: center;
    }

    .hero-logo-large img {
        max-width: 168px;
        margin: 0 auto;
    }

    .hero-main-title {
        font-size: 2rem;
        padding-left: 0;
        text-align: center;
        letter-spacing: 3px;
        margin-left: 0;
        margin-top: -25px;
        font-weight: 700;
    }

    .hero-sub-title {
        font-size: 0.63rem;
        letter-spacing: 3px;
        white-space: nowrap;
        text-align: center;
        margin-left: 0;
        font-weight: 700;
    }

    .hero-tagline-wrapper {
        justify-content: center;
        margin-bottom: var(--space-xs);
        margin-left: 0;
        margin-top: -15px;
    }

    .hero-tagline-wrapper .tagline {
        font-size: 0.9rem;
        font-weight: 600;
        font-style: italic;
        color: var(--color-primary-navy);
    }

    .hero-tagline-wrapper .line {
        width: 30px;
    }

    .hero-desc {
        font-size: 0.7rem;
        white-space: nowrap;
        color: var(--color-body-text);
        font-weight: 700;
        text-align: center;
        max-width: none;
        margin: 0 0 var(--space-sm) 0;
        margin-left: 0;
        line-height: 1.4;
    }

    /* HORIZONTAL buttons - side by side, CENTERED */
    .hero-actions {
        flex-direction: row !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
        margin-top: 145px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        display: flex !important;
    }

    .hero-actions .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
        width: auto !important;
        text-align: center !important;
        flex-shrink: 0 !important;
    }

    .hero-actions .btn-outline {
        background: var(--color-primary-navy) !important;
        color: var(--color-white) !important;
        border: none !important;
    }

    /* Hero image - FULL WIDTH, flatter - MOBILE ONLY */
    .hero-image-blend {
        position: relative;
        right: auto;
        top: auto;
        width: 100vw;
        height: 180px;
        max-width: none;
        border-radius: 0;
        z-index: 1;
        opacity: 1;
        margin-top: -205px;
        margin-left: -20px;
        margin-right: -20px;
    }

    .hero-image-blend img {
        border-radius: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        -webkit-mask-image: none;
        mask-image: none;
        content: url('../images/hero-mobile-new.png');
    }

    .blend-overlay {
        display: none;
    }

    /* About section mobile - add gap before cert cards */
    .about-image {
        margin-bottom: 60px;
    }

    /* Add gap between cert cards and about image */
    .certifications-section {
        margin-top: 40px;
    }

    .about-section {
        margin-top: 40px;
    }

    /* Feature cards - SIMPLE vertical list, ALL visible */
    .hero-bottom-bar {
        position: relative;
        bottom: auto;
        background: transparent;
        padding: var(--space-sm) 0;
        padding-top: 10px;
        border-top: none;
        margin-top: -15px;
        margin-bottom: 40px;
        overflow: visible;
    }

    .hero-bottom-bar .container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    .hero-features-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        padding: 0 !important;
        padding-left: 30px !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }

    /* Simple card style - PERFECT VERTICAL ALIGNMENT using CSS Grid */
    .hero-feature-item {
        display: grid !important;
        grid-template-columns: 50px 1fr !important;
        gap: 12px !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 320px !important;
        padding: 8px 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }

    .hero-feature-item:last-child {
        border-bottom: none;
    }

    .hero-feature-separator {
        display: none;
    }

    .h-feat-icon-img {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        max-width: 50px !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        background: rgba(31, 42, 68, 0.08) !important;
        border-radius: 50% !important;
        padding: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    .h-feat-icon-img img {
        width: 26px !important;
        height: 26px !important;
        object-fit: contain !important;
        filter: brightness(0.3) contrast(1.2) !important;
    }

    .h-feat-text {
        text-align: left;
        flex: 1;
        padding-left: 5px;
    }

    .h-feat-text h4 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 2px;
        line-height: 1.2;
        color: var(--color-primary-navy);
    }

    .h-feat-text p {
        font-size: 0.75rem;
        line-height: 1.3;
        display: block;
        color: var(--color-text-grey);
        font-weight: 400;
    }
}

/* Bottom CTA Bar for Mobile */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary-navy);
    padding: var(--space-sm);
    z-index: 1000;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 6px;
    }

    .mobile-cta-bar a {
        color: var(--color-white);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        font-size: 0.6rem;
    }

    .mobile-cta-bar .cta-icon {
        font-size: 1rem;
    }

    .mobile-cta-bar .cta-main {
        background: rgba(255, 255, 255, 0.2);
        padding: 6px 14px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 0.7rem;
    }

    body {
        padding-bottom: 60px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-primary-navy);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    background: var(--color-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 58, 89, 0.3);
}

.btn-outline {
    border: 2px solid var(--color-primary-navy);
    color: var(--color-primary-navy);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-primary-navy);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary-navy);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-primary-navy);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary-navy);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-full {
    width: 100%;
}

/* ========================================
   About Section Image
   ======================================== */
.about-image {
    position: relative;
    margin-top: -100px;
    margin-bottom: 60px;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: none;
    border-radius: 16px;
}

/* ========================================
   Certifications Section
   ======================================== */
.certifications-section {
    background: transparent;
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid rgba(95, 103, 117, 0.15);
}

.section-header-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: var(--space-2xl);
    width: 100%;
}

.section-header-lines .line {
    height: 1px;
    background: rgba(46, 58, 89, 0.3);
    flex: 1;
    max-width: 300px;
}

.section-title-serif {
    font-family: var(--font-serif-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-primary-navy);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: nowrap;
    /* Force one line */
}

/* Glassmorphism / Transparent Frame */
/* background: rgba(255, 255, 255, 0.15); */
/* backdrop-filter: blur(8px); */

/* Brushed metallic plate style */
.cert-item {
    background:
        repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 2px,
            rgba(95, 103, 117, 0.03) 2px,
            rgba(95, 103, 117, 0.03) 4px),
        linear-gradient(135deg,
            rgba(220, 222, 226, 0.9) 0%,
            rgba(200, 205, 212, 0.85) 25%,
            rgba(180, 185, 195, 0.8) 50%,
            rgba(200, 205, 212, 0.85) 75%,
            rgba(220, 222, 226, 0.9) 100%);
    border: 1px solid rgba(160, 165, 175, 0.4);
    border-radius: 4px;
    padding: 6px 20px;
    /* Reduced to keep card compact */
    width: 100%;
    max-width: 380px;
    min-width: 320px;
    box-shadow:
        0 4px 16px rgba(46, 58, 89, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(95, 103, 117, 0.2),
        inset 1px 0 0 rgba(255, 255, 255, 0.5),
        inset -1px 0 0 rgba(95, 103, 117, 0.15);
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Screw/Rivet details */
.cert-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1d5db, #9ca3af);
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3), 1px 1px 1px rgba(255, 255, 255, 0.8);
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1d5db, #9ca3af);
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3), 1px 1px 1px rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.cert-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 25px rgba(46, 58, 89, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(95, 103, 117, 0.2),
        inset 1px 0 0 rgba(255, 255, 255, 0.5),
        inset -1px 0 0 rgba(95, 103, 117, 0.15);
}

.cert-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    /* Compact wrapper */
    height: 80px;
    position: relative;
    display: flex;
    /* Centering */
    align-items: center;
    justify-content: center;
    overflow: visible;
    /* Allow scaled icons to show */
}

.cert-img-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.cert-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    /* Restore left alignment */
    width: auto;
}

.cert-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin: 0;
    line-height: 1.2;
}

.cert-content h4 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-primary-navy);
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.cert-content p {
    font-size: 0.75rem;
    color: var(--color-text-grey);
    line-height: 1.4;
    font-weight: 500;
}

/* Remove old styles */
.cert-logo {
    display: none;
}

.cert-text {
    display: none;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: var(--space-2xl) 0;
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(46, 58, 89, 0.15);
}

.section-tag {
    display: inline-block;
    background: rgba(46, 58, 89, 0.1);
    color: var(--color-primary-navy);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 600;
    color: var(--color-primary-navy);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.section-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-grey);
    margin-bottom: var(--space-lg);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--color-primary-navy);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--color-text-grey);
}

/* ========================================
   Navy Blue Banner
   ======================================== */
.navy-banner {
    background: var(--color-primary-navy);
    color: var(--color-white);
    padding: var(--space-sm) 0;
    text-align: center;
}

.navy-banner p {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ========================================
   Products Section - Transparent (texture shows through)
   ======================================== */
.products-section {
    padding: var(--space-2xl) 0;
    /* Transparent - let body texture show through */
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title-center {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 600;
    color: var(--color-primary-navy);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--color-text-grey);
    font-size: 1rem;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.tab-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text-grey);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--color-primary-navy);
    color: var(--color-white);
    border-color: var(--color-primary-navy);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* ========================================
   STAMPED METAL PLATE CARDS
   Color: #E4E6EA with inner glow/bevel
   ======================================== */
.product-card {
    background: var(--color-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    /* STAMPED METAL BEVEL EFFECT */
    box-shadow:
        /* Outer shadow */
        0 4px 16px rgba(46, 58, 89, 0.12),
        /* Inner highlight (top-left) */
        inset 2px 2px 4px rgba(255, 255, 255, 0.8),
        /* Inner shadow (bottom-right) */
        inset -2px -2px 4px rgba(95, 103, 117, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 40px rgba(46, 58, 89, 0.18),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8),
        inset -2px -2px 4px rgba(95, 103, 117, 0.15);
}

.product-image {
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: var(--space-lg);
}

.product-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-primary-navy);
}

.product-list {
    margin-bottom: var(--space-md);
}

.product-list li {
    padding: 0.35rem 0;
    font-size: 0.85rem;
    color: var(--color-text-grey);
    position: relative;
    padding-left: 1.25rem;
}

.product-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary-navy);
}

.product-link {
    font-size: 0.85rem;
    color: var(--color-primary-navy);
    font-weight: 600;
}

.product-link:hover {
    text-decoration: underline;
}

/* ========================================
   Services Section - Transparent
   ======================================== */
.services-section {
    padding: var(--space-2xl) 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* Service cards - Always elevated with shadow */
.service-card {
    background: transparent;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(95, 103, 117, 0.2);
    /* Permanent elevated look */
    transform: translateY(-4px);
    box-shadow:
        0 8px 24px rgba(46, 58, 89, 0.15),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7),
        inset -2px -2px 4px rgba(95, 103, 117, 0.12);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 32px rgba(46, 58, 89, 0.2),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7),
        inset -2px -2px 4px rgba(95, 103, 117, 0.12);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-primary-navy);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--color-text-grey);
    line-height: 1.7;
}

/* ========================================
   Export Markets Banner
   ======================================== */
.markets-banner {
    background: var(--color-primary-navy);
    padding: var(--space-lg) 0;
    text-align: center;
}

.markets-banner h3 {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.markets-list {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.markets-list span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ========================================
   Contact Section - Transparent (texture shows through)
   ======================================== */
.contact-section {
    padding: var(--space-2xl) 0;
    /* Transparent - let body texture show through */
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--color-primary-navy);
    margin-bottom: var(--space-md);
}

.contact-info p {
    color: var(--color-text-grey);
    margin-bottom: var(--space-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact-icon {
    font-size: 1.25rem;
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-navy);
    margin-bottom: 0.25rem;
}

.contact-item span,
.contact-item a {
    font-size: 0.85rem;
    color: var(--color-text-grey);
}

.contact-item a:hover {
    color: var(--color-primary-navy);
}

/* Contact Form - Stamped Metal Card */
.contact-form-wrapper {
    background: var(--color-card);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    /* STAMPED METAL BEVEL */
    box-shadow:
        0 4px 16px rgba(46, 58, 89, 0.1),
        inset 2px 2px 6px rgba(255, 255, 255, 0.8),
        inset -2px -2px 6px rgba(95, 103, 117, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--color-white);
    color: var(--color-primary-navy);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary-navy);
    box-shadow: 0 0 0 3px rgba(46, 58, 89, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* ========================================
   Footer - Dark Navy
   ======================================== */
.footer {
    background: var(--color-navy-dark);
    padding: var(--space-2xl) 0 var(--space-lg);
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo-text {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a,
.footer-col li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact {
    display: flex;
    gap: var(--space-lg);
}

.footer-contact span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   WhatsApp Float
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        transition: right 0.3s;
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .cert-grid {
        gap: var(--space-lg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PAGE HEADER STYLES (for all pages)
   ======================================== */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: transparent;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 600;
    color: var(--color-primary-navy);
    margin-bottom: var(--space-sm);
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--color-text-grey);
    max-width: 600px;
    margin: 0 auto;
}

.page-subtitle-large {
    font-size: 1.3rem;
    color: var(--color-primary-navy);
    margin-bottom: var(--space-sm);
}

.page-tagline {
    font-size: 0.95rem;
    color: var(--color-text-grey);
    font-style: italic;
}

/* ========================================
   PRODUCTS PAGE STYLES
   ======================================== */
.products-page-section {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.product-note {
    font-size: 0.8rem;
    color: var(--color-text-grey);
    margin-top: var(--space-sm);
    font-style: italic;
}

/* Product Detail Grid - with images */
.products-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.product-detail-card {
    background: transparent;
    border: 1px solid rgba(95, 103, 117, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 58, 89, 0.15);
}

.product-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    overflow: hidden;
}

.product-images-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.product-detail-card:hover .product-images-grid img {
    transform: scale(1.1);
}

.product-info {
    padding: var(--space-lg);
}

.product-info.full-width {
    padding: var(--space-xl);
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-navy);
    margin-bottom: var(--space-sm);
}

.product-info ul {
    margin-bottom: var(--space-md);
}

.product-info li {
    font-size: 0.85rem;
    color: var(--color-text-grey);
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.product-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary-navy);
}

.info-note {
    font-size: 0.8rem;
    color: var(--color-text-grey);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.product-link {
    font-size: 0.85rem;
    color: var(--color-primary-navy);
    font-weight: 600;
    display: inline-block;
}

.product-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .products-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */
.services-page-section {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: transparent;
}

.service-list {
    text-align: left;
    margin-top: var(--space-md);
}

.service-list li {
    padding: 0.35rem 0;
    font-size: 0.85rem;
    color: var(--color-text-grey);
    position: relative;
    padding-left: 1rem;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary-navy);
}

.export-markets-section {
    padding: var(--space-xl) 0;
    background: transparent;
    text-align: center;
}

.markets-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.market-item {
    padding: var(--space-md) var(--space-lg);
    background: var(--color-card);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(46, 58, 89, 0.08);
}

.market-name {
    font-weight: 600;
    color: var(--color-primary-navy);
}

/* ========================================
   CERTIFICATIONS PAGE STYLES
   ======================================== */
.certifications-page-section {
    padding: var(--space-xl) 0;
    background: transparent;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

.cert-card {
    background: var(--color-card);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow:
        0 2px 8px rgba(46, 58, 89, 0.08),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7),
        inset -2px -2px 4px rgba(95, 103, 117, 0.12);
}

.cert-badge {
    margin-bottom: var(--space-md);
}

.cert-logo-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    display: block;
}

.cert-sub {
    font-size: 0.7rem;
    color: var(--color-text-grey);
    letter-spacing: 1px;
    display: block;
}

.cert-card h3 {
    font-size: 1.2rem;
    color: var(--color-primary-navy);
    margin-bottom: 0.25rem;
}

.cert-label {
    font-size: 0.75rem;
    color: var(--color-text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quality-section {
    padding: var(--space-xl) 0;
    background: transparent;
}

.quality-list {
    max-width: 600px;
    margin: var(--space-lg) auto 0;
}

.quality-item {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
}

.quality-icon {
    color: var(--color-primary-navy);
    font-weight: bold;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.contact-page-section {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: transparent;
}

.directors-section {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.directors-section h4 {
    margin-bottom: var(--space-md);
    color: var(--color-primary-navy);
}

.directors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.director-card {
    background: var(--color-card);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(46, 58, 89, 0.08);
}

.director-card h5 {
    font-size: 1rem;
    color: var(--color-primary-navy);
    margin-bottom: 0.25rem;
}

.director-card p {
    font-size: 0.8rem;
    color: var(--color-text-grey);
    margin-bottom: 0.5rem;
}

.director-card span {
    font-size: 0.85rem;
    color: var(--color-primary-navy);
}

.form-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.form-tab {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text-grey);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.form-tab.active {
    background: var(--color-primary-navy);
    color: var(--color-white);
    border-color: var(--color-primary-navy);
}

/* ========================================
   PRODUCT DETAIL PAGE STYLES
   ======================================== */
.product-detail-section {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: transparent;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.product-detail-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(46, 58, 89, 0.15);
}

.product-detail-info {
    background: var(--color-card);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow:
        0 4px 16px rgba(46, 58, 89, 0.1),
        inset 2px 2px 6px rgba(255, 255, 255, 0.8),
        inset -2px -2px 6px rgba(95, 103, 117, 0.15);
}

.info-section {
    margin-bottom: var(--space-lg);
}

.info-section h3 {
    font-size: 1.1rem;
    color: var(--color-primary-navy);
    margin-bottom: var(--space-sm);
}

.info-section ul {
    padding-left: 1.5rem;
}

.info-section li {
    font-size: 0.9rem;
    color: var(--color-text-grey);
    padding: 0.25rem 0;
    list-style: disc;
}

/* ========================================
   CTA SECTION STYLES
   ======================================== */
.cta-section {
    padding: var(--space-xl) 0;
    text-align: center;
    background: transparent;
}

.cta-section h2 {
    font-size: 1.5rem;
    color: var(--color-primary-navy);
    margin-bottom: var(--space-lg);
}

/* ========================================
   RESPONSIVE - PAGE STYLES
   ======================================== */
@media (max-width: 768px) {
    .certs-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .directors-grid {
        grid-template-columns: 1fr;
    }

    .markets-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   FEATURE CARDS SECTION (Below Hero)
   ======================================== */
.feature-cards-section {
    padding: var(--space-xl) 0;
    background: transparent;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--color-card);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow:
        0 4px 16px rgba(46, 58, 89, 0.1),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8),
        inset -2px -2px 4px rgba(95, 103, 117, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-navy);
    margin-bottom: var(--space-xs);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--color-text-grey);
}

/* ========================================
   MOBILE BOTTOM ACTION BAR
   ======================================== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary-navy);
    padding: var(--space-md);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.bottom-bar-actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.75rem;
}

.bottom-bar-btn svg,
.bottom-bar-btn .icon {
    font-size: 1.5rem;
}

/* ========================================
   RESPONSIVE - PAGE STYLES
   ======================================== */
@media (max-width: 768px) {
    .certs-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-btn {
        display: none;
        /* Hide desktop CTA on mobile */
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .directors-grid {
        grid-template-columns: 1fr;
    }

    .markets-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .mobile-bottom-bar {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .hero-banner {
        min-height: 500px;
        height: auto;
    }

    .tagline-line {
        width: 40px;
    }
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8), 0 0 40px rgba(37, 211, 102, 0.4);
    }

    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    }
}

/* Mobile adjustment - above CTA bar */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Mobile responsive for cert-grid */
@media (max-width: 1024px) {
    .cert-grid {
        flex-wrap: wrap;
    }

    .cert-item {
        max-width: 100%;
    }
}

/* ========================================
   ENHANCED MOBILE STYLES
   ======================================== */
@media (max-width: 768px) {

    /* Certifications Section - Mobile */
    .certifications-section {
        padding: var(--space-xl) 0;
    }

    .section-header-lines {
        flex-direction: column;
        gap: 10px;
        margin-bottom: var(--space-lg);
    }

    .section-header-lines .line {
        display: none;
    }

    .section-title-serif {
        font-size: 1.4rem;
    }

    .cert-grid {
        flex-direction: column;
        gap: var(--space-md);
        padding: 0 var(--space-sm);
    }

    .cert-item {
        max-width: 100%;
        min-width: auto;
        padding: 12px 16px;
        flex-direction: row;
        gap: 1rem;
    }

    .cert-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .cert-content h3 {
        font-size: 1rem;
    }

    .cert-content h4 {
        font-size: 0.9rem;
    }

    .cert-content p {
        font-size: 0.7rem;
    }

    /* About Section - Mobile */
    .about-section {
        padding: var(--space-xl) 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-image {
        order: 1;
    }

    .about-content {
        order: 2;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Products Section - Mobile */
    .products-section {
        padding: var(--space-xl) 0;
    }

    .products-tabs {
        flex-wrap: wrap;
        gap: var(--space-xs);
    }

    .tab-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* Services Section - Mobile */
    .services-section {
        padding: var(--space-xl) 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .service-card {
        transform: none;
        padding: var(--space-md);
    }

    /* Contact Section - Mobile */
    .contact-section {
        padding: var(--space-xl) 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    /* Footer - Mobile */
    .footer {
        padding: var(--space-xl) 0 var(--space-lg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}