/* 
   ZAN FOOTWEAR - V3 "BILLION DOLLAR" THEME
   Strictly High-End. No generic styles.
   Updated: 2026-02-17
*/

:root {
    /* Brand Colors */
    --primary-color: #2596be;
    /* The new base color */
    --primary-dark: #0e3a4a;
    /* Darker shade for backgrounds */
    --primary-light: #4db3d9;
    /* Lighter shade for accents */

    /* Backgrounds - Moving away from pure black */
    --bg-color: #050f14;
    /* Very dark blue-black */
    --surface-color: #0b1a21;
    /* Slightly lighter for cards/sections */
    --surface-hover: #11252e;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #d1e4e8;
    /* Cool grey-blue */
    --text-muted: #b2c6cc;

    /* Accents */
    --accent-gold: #D4AF37;
    /* Keeping gold for subtle luxury touches */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-container: 8vw;
    --spacing-section: 120px;
    --header-height: 100px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

/* TYPOGRAPHY = LUXURY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.1;
}

h1 {
    font-size: 4.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.text-gold {
    color: var(--accent-gold);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

/* UTILITIES */
.container-fluid {
    padding: 0 var(--spacing-container);
}

.section {
    padding: var(--spacing-section) 0;
}

.bg-surface {
    background-color: var(--surface-color);
}

.bg-darker {
    background-color: var(--bg-color);
}

/* BUTTONS */
.btn-luxury {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 150, 190, 0.3);
}

.btn-luxury:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 150, 190, 0.4);
    color: #fff;
}

/* HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px var(--spacing-container);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header.scrolled {
    padding: 15px var(--spacing-container);
    background: rgba(5, 15, 20, 0.95);
    /* Matches new bg color */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    display: block;
    height: 54px;
}

.logo img {
    height: 100%;
    width: auto;
    content: url('../images/logo/white-logo.png');
    transition: all 0.3s ease;
}

.logo:hover img {
    content: url('../images/logo/logo.png');
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 1.5px;
}

/* HERO SECTION */
.hero-v2 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 130px;
    padding-bottom: 50px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Placeholder - should be set by inline style for dynamic loading */
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.6);
}

.hero-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay using brand colors */
    background: linear-gradient(135deg, rgba(5, 15, 20, 0.9) 0%, rgba(37, 150, 190, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: var(--spacing-container);
    max-width: 900px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
}

.hero-title {
    font-size: 5vw;
    line-height: 1.1;
    margin-bottom: 40px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* INNER HERO STRUCTURE */
.inner-hero {
    min-height: 70vh;
}

.hero-inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    /* Responsive wrap for mobile */
}

/* Right Accent Area */
.hero-accent {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    /* Space below content on small screens */
}

/* Floating Card */
.hero-accent-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-accent-card span {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.hero-accent-card h3 {
    font-size: 48px;
    margin: 10px 0 0;
}

/* Subtle Vertical Line */
.inner-hero::before {
    content: "";
    position: absolute;
    right: 20%;
    top: 20%;
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom,
            var(--primary-color),
            transparent);
    opacity: 0.3;
}

/* Floating Animation */
@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.inner-hero::after {
    content: "ZAN";
    position: absolute;
    right: 5%;
    bottom: 10%;
    font-size: 200px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 20px;
    z-index: 1;
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 1200px) {
    .hero-inner-wrapper {
        justify-content: center;
    }

    .hero-accent {
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        max-width: 700px;
        text-align: center;
        padding-left: var(--spacing-container);
        padding-right: var(--spacing-container);
    }

    .hero-title {
        font-size: 6vw;
    }

    .hero-accent-card {
        padding: 30px 35px;
        font-size: 0.9rem;
    }

    .inner-hero::before {
        right: 10%;
        height: 50%;
    }

    .inner-hero::after {
        font-size: 150px;
        right: 2%;
        bottom: 5%;
    }
}

@media (max-width: 768px) {
    .hero-inner-wrapper {
        flex-direction: column;
    }

    .hero-accent {
        width: 100%;
        max-width: 300px;
        margin-top: 25px;
    }

    .hero-title {
        font-size: 7vw;
    }

    .hero-accent-card h3 {
        font-size: 32px;
    }

    .inner-hero::before {
        display: none;
    }

    .inner-hero::after {
        font-size: 100px;
        right: 5%;
        bottom: 5%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-title {
        font-size: 8vw;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-accent-card {
        padding: 20px 25px;
    }

    .hero-accent-card h3 {
        font-size: 28px;
    }
}


/* ABOUT GRID WITH CARDS */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cards Grid inside Right Column */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* GLASS CARD */
.about-card {
    position: relative;
    padding: 30px 25px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    overflow: hidden;
    transition: all 0.45s cubic-bezier(.4, 0, .2, 1);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Soft gradient overlay */
.about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(140deg,
            rgba(0, 150, 255, 0.08),
            transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover Effects */
.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(0, 150, 255, 0.15);
}

.about-card:hover::before {
    opacity: 1;
}

/* ICON STYLE (Bootstrap Icons) */
.about-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    background: rgba(0, 150, 255, 0.08);
    border: 1px solid rgba(0, 150, 255, 0.2);

    transition: all 0.4s ease;
}

.about-card-icon i {
    font-size: 26px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.about-card:hover .about-card-icon {
    background: rgba(0, 150, 255, 0.18);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.25);
}

.about-card:hover .about-card-icon i {
    transform: scale(1.2) rotate(6deg);
}

/* TEXT */
.about-card h4 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 0.5px;
}

.about-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.aspiration-box {
    border-left: 4px solid #2596be;
    padding-left: 20px;
}

.aspiration-box h4 {
    font-weight: 600;
    color: #2596be;
}

.aspiration-box p {
    font-size: 1.05rem;
    line-height: 1.7;
}


/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* MISSION & VISION - ENHANCED WITH ADDITIONAL CONTENT */

/* Main section styling */
.mission-vision-section {
    position: relative;
    overflow: hidden;
}

/* Decorative background element */
.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37,150,190,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Mission content styling */
.mission-content {
    padding-right: 30px;
}

.mission-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Building Relationships section */
.building-relationships {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border-left: 3px solid var(--primary-color);
}

.building-relationships h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.relationship-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.relationship-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.relationship-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 12px;
    background: rgba(37, 150, 190, 0.1);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.relationship-list li:hover i {
    transform: scale(1.1);
    background: rgba(37, 150, 190, 0.2);
}

/* Vision content styling (right side) */
.vision-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.vision-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37,150,190,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vision-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.vision-card .vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Driven By section */
.driven-by {
    margin-top: 25px;
}

.driven-by h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.driven-by h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.driven-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.driven-item {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.driven-item:hover {
    transform: translateX(8px);
    background: rgba(37, 150, 190, 0.1);
    border-color: rgba(37, 150, 190, 0.3);
}

.driven-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.driven-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .mission-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .vision-card {
        padding: 30px;
    }
    
    .building-relationships {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .vision-card h3 {
        font-size: 1.75rem;
    }
    
    .vision-card .vision-text {
        font-size: 1rem;
    }
    
    .driven-item {
        padding: 10px 15px;
    }
    
    .relationship-list li {
        font-size: 0.95rem;
    }
}

/* GLOBAL PRESENCE - PREMIUM ENHANCED VERSION */

/* Animated gradient background */
.partnership-section {
    background: linear-gradient(135deg, #0a0f15 0%, #0b1419 50%, #0a0f15 100%);
    position: relative;
    overflow: hidden;
}

/* Dynamic particle effect */
.partnership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 150, 190, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(37, 150, 190, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating orbs effect */
.partnership-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(37,150,190,0.1)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
    animation: floatParticles 60s linear infinite;
    pointer-events: none;
}

@keyframes floatParticles {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(10deg); }
}

/* Glowing text effect for section title */
.partnership-section h2 {
    position: relative;
    display: inline-block;
}

.partnership-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 3px;
}

/* Enhanced Strategy Cards with glass morphism */
.strategy-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px 30px !important;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.7s ease;
}

.strategy-card:hover::before {
    left: 100%;
}

.strategy-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(37, 150, 190, 0.3);
    box-shadow: 0 30px 50px -20px rgba(37, 150, 190, 0.4);
}

.strategy-card i {
    background: linear-gradient(135deg, var(--primary-color), #63b3d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem !important;
    transition: all 0.5s ease;
}

.strategy-card:hover i {
    transform: scale(1.1) rotateY(180deg);
}

/* Human Capital Card with animated border */
.human-capital-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.human-capital-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(37,150,190,0.3) 50%, 
        transparent 70%);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.human-capital-card:hover::after {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.human-capital-card ul li {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.human-capital-card ul li:hover {
    transform: translateX(8px);
}

.human-capital-card ul li i {
    filter: drop-shadow(0 0 8px rgba(37,150,190,0.5));
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Enhanced Region Cards with 3D effect */
.region-animated-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 20px !important;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.region-animated-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
                rgba(37,150,190,0.2) 0%, 
                transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.region-animated-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.05);
    box-shadow: 
        20px 20px 30px -10px rgba(0,0,0,0.5),
        -5px -5px 15px -5px rgba(255,255,255,0.1);
}

.region-animated-card:hover::before {
    opacity: 1;
}

.region-animated-card i {
    font-size: 3rem !important;
    background: linear-gradient(135deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.region-animated-card:hover i {
    transform: scale(1.2) translateZ(30px);
    filter: drop-shadow(0 0 20px rgba(37,150,190,0.8));
}

/* Interactive map overlay effect */
.regions-wrapper {
    position: relative;
}

.regions-wrapper::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    right: 10%;
    bottom: 20%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M10,50 Q30,30 50,50 T90,50" stroke="%233796bd" fill="none" stroke-width="0.5"/><path d="M20,70 Q40,50 60,70 T90,70" stroke="%233796bd" fill="none" stroke-width="0.5"/></svg>');
    background-size: cover;
    pointer-events: none;
    animation: mapLines 20s linear infinite;
}

@keyframes mapLines {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-10px); }
    100% { transform: scale(1) translateY(0); }
}

/* Animated counter numbers */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: countUp 2s ease-out;
}

/* Interactive hover effects for all cards */
[class*="card"] {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glowing orb effect on section */
.partnership-section .container-fluid {
    position: relative;
    z-index: 2;
}

/* Floating animation for section header */
.partnership-section span.text-primary {
    display: inline-block;
    animation: float 6s ease-in-out infinite;
    background: rgba(37,150,190,0.1);
    padding: 6px 18px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(37,150,190,0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Magnetic hover effect for buttons (if any) */
.magnetic-area {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .region-animated-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .strategy-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* Optional: Add smooth scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive enhancements */
@media (max-width: 768px) {
    /* Make Global Markets show 2 cards per row on mobile */
    .regions-wrapper .row {
        --bs-gutter-x: 1rem;
    }
    
    .regions-wrapper .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .region-animated-card {
        padding: 25px 15px !important;
        margin-bottom: 0;
    }
    
    .region-animated-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .region-animated-card i {
        font-size: 2.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .region-animated-card h5 {
        font-size: 1rem;
    }
    
    .strategy-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    /* Adjust human capital card for mobile */
    .human-capital-card {
        padding: 30px 20px !important;
    }
    
    /* Section padding adjustment */
    .partnership-section {
        padding: 80px 0;
    }
}

/* Extra small devices (phones, 375px and below) */
@media (max-width: 375px) {
    .region-animated-card {
        padding: 20px 10px !important;
    }
    
    .region-animated-card i {
        font-size: 2rem !important;
    }
    
    .region-animated-card h5 {
        font-size: 0.9rem;
    }
    
    .regions-wrapper .row {
        --bs-gutter-x: 0.75rem;
    }
}

/* Keep tablet view as is or adjust if needed */
@media (min-width: 769px) and (max-width: 991px) {
    .regions-wrapper .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}



/* Stats Row Styling */
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* PORTFOLIO - PREMIUM ENHANCED VERSION */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.portfolio-card {
    position: relative;
    height: 560px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 45px -15px rgba(37, 150, 190, 0.4);
}

.portfolio-card img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-card:hover img {
    transform: scale(1.15);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 110px 30px 35px;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.8) 60%,
        transparent 100%);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Remove the hover transform for overlay */

/* Decorative line above the text - animate on hover only */
.portfolio-overlay::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 30px;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(1); /* Always visible */
    transition: transform 0.5s ease, width 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay::before {
    transform: scaleX(1.2);
    width: 70px;
}

.portfolio-overlay h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 15px; /* Gap between title and description */
    transform: translateY(0); /* Always visible */
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay h3 {
    transform: translateY(-5px); /* Slight lift on hover */
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.829);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    transform: translateY(0); /* Always visible */
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay p {
    transform: translateY(-3px); /* Slight lift on hover */
}

/* Category badge */
.portfolio-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    opacity: 1; /* Always visible */
    transform: translateY(0); /* Always visible */
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(37, 150, 190, 0.3);
}

.portfolio-card:hover .portfolio-badge {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 150, 190, 0.5);
}

/* Quick view button - keep hidden until hover */
.portfolio-quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--primary-color);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    opacity: 0;
    box-shadow: 0 10px 25px rgba(37, 150, 190, 0.4);
}

.portfolio-card:hover .portfolio-quick-view {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.portfolio-quick-view:hover {
    background: white;
    color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .portfolio-card {
        height: 480px;
    }
    
    .portfolio-overlay {
        padding: 25px;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .portfolio-badge {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
    
    .portfolio-quick-view {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .portfolio-card {
        height: 400px;
    }
}

/* FOOTER */
.footer-v3 {
    position: relative;
    background: radial-gradient(circle at 20% 20%,
            rgba(37, 150, 190, 0.08),
            transparent 40%),
        #020608;
    padding: 100px var(--spacing-container) 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 180px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    user-select: none;
    letter-spacing: 20px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
}

.footer-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-links li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-links a {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::after {
    width: 100%;
}


.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    transform: translateY(-4px);
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 1px;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    h1 {
        font-size: 3.5rem;
    }

    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 8vw;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-container: 20px;
        --spacing-section: 60px;
    }

    .hero-v2 {
        padding-top: 100px;
    }

    .main-header {
        padding: 15px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* MOBILE MENU STYLES */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    /* Slide in from right */
    width: 100%;
    height: 100vh;
    background-color: rgba(5, 15, 20, 0.98);
    backdrop-filter: blur(15px);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.mobile-nav ul li {
    margin-bottom: 25px;
}

.mobile-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: var(--primary-color);
}


/* LEADERSHIP SECTION */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    justify-items: center;
    margin-top: 60px;
}

.leader-card {
    text-align: center;
    max-width: 320px;
    transition: transform 0.4s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
}

.leader-img {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, filter 0.6s ease;
    filter: brightness(0.9) contrast(1.05);
}

.leader-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.4));
}

.leader-card:hover img {
    transform: scale(1.05);
}

.leader-info h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.leader-info p {
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* CORE VALUES SECTION */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(8deg) scale(1.1);
}

.value-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    
}

/* LEGACY SECTION - GRID STYLE WITH ICON LEFT */
.legacy-grid-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.legacy-card-horizontal {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    align-items: start;
}

.legacy-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), #63b3d1);
    transition: height 0.4s ease;
}

.legacy-card-horizontal:hover {
    transform: translateY(-8px) translateX(5px);
    border-color: rgba(37, 150, 190, 0.3);
    box-shadow: -15px 15px 30px -15px rgba(37, 150, 190, 0.3);
    background: rgba(37, 150, 190, 0.05);
}

.legacy-card-horizontal:hover::before {
    height: 100%;
}

.legacy-icon-left {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.15), rgba(37, 150, 190, 0.05));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(37, 150, 190, 0.2);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
}

.legacy-card-horizontal:hover .legacy-icon-left {
    transform: scale(1.05) rotate(5deg);
    background: var(--primary-color);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 15px 30px -10px rgba(37, 150, 190, 0.5);
}

.legacy-content-right {
    flex: 1;
}

.legacy-content-right h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.legacy-content-right h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.legacy-card-horizontal:hover .legacy-content-right h4::after {
    width: 40px;
}

.legacy-content-right p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.legacy-year {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 500;
    padding: 4px 12px;
    background: rgba(37, 150, 190, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.legacy-card-horizontal:hover .legacy-year {
    background: var(--primary-color);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .legacy-grid-left {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .legacy-card-horizontal {
        grid-template-columns: 70px 1fr;
        gap: 15px;
        padding: 25px;
    }
    
    .legacy-icon-left {
        width: 70px;
        height: 70px;
        font-size: 28px;
        border-radius: 20px;
    }
    
    .legacy-content-right h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 375px) {
    .legacy-card-horizontal {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .legacy-icon-left {
        margin: 0 auto 15px;
    }
    
    .legacy-content-right h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}



/* ============================= */
/* PREMIUM GROUP CARDS WITH ICON */
/* ============================= */

.strength-card {
    position: relative;
    background: #111111;
    padding: 45px 35px 40px 35px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Left Accent Line */
.strength-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
}

/* Hover */
.strength-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
}

/* Large Background Number */
.strength-number {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 65px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

/* Icon Styling */
.strength-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.strength-icon i {
    font-size: 22px;
    color: var(--primary-color);
}

/* Icon Hover Effect */
.strength-card:hover .strength-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.strength-card:hover .strength-icon i {
    color: #ffffff;
}

.strength-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.strength-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strength-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.6;
}

.strength-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

@media (max-width: 1400px) {
    .strength-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .strength-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .strength-grid { grid-template-columns: 1fr; }
}


/* COMPLIANCE CARDS */
.compliance-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    border-radius: 8px;
}

.compliance-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.04);
}

.compliance-card img {
    transition: all 0.4s ease;
}

.compliance-card:hover img {
    filter: grayscale(0%) brightness(100%);
}

.compliance-card i {
    transition: all 0.4s ease;
}

.compliance-card:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}


/* ===== FACILITIES PREMIUM UPGRADE ===== */

.facility-content {
    position: relative;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    transform: translateY(40px);
}

.facility-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.facility-title {
    font-weight: 600;
    letter-spacing: 1px;
}

.facility-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.about-grid:hover .facility-divider {
    width: 120px;
}

/* List Style */
.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.facility-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.facility-list li:hover .facility-icon {
    transform: scale(1.2);
}

.facility-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Image Styling */
.facility-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.8s ease;
}

.facility-image::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg,
            var(--primary-color),
            transparent);
    opacity: 0.15;
    z-index: -1;
}

.facility-image:hover img {
    transform: scale(1.06);
}


.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0));
    pointer-events: none;
}

/* Section Spacing Upgrade */
.about-grid {
    position: relative;
    padding: 20px 0;
    border-radius: 16px;
    background: transparent;
    border: none;
    transition: all 0.4s ease;
}

.about-grid:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

/* Scroll Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FACILITY ROW STRUCTURE ===== */

.facility-row {
    position: relative;
    margin-bottom: 100px;
    padding-left: 60px;
}

/* Vertical line */
.facility-row::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            var(--primary-color),
            transparent);
    opacity: 0.3;
}

/* Timeline dot */
.facility-row::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 40px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-color);
}

/* PRODUCT FILTER BUTTONS */
.product-categories {
    padding: 0;
    margin: 0;
}

.product-categories .category-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    padding: 8px 18px;
    margin: 5px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
}

.product-categories .category-btn:hover,
.product-categories .category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* PRODUCT CARDS */
.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-img-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Overlay for hover icons */
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    font-size: 1.5rem;
    color: #fff;
    background: var(--primary-color);
    padding: 12px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-view:hover {
    transform: scale(1.1);
}

/* Product Text */
.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 15px 15px 5px 15px;
    color: #fff;
    transition: color 0.3s;
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-category {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 15px 15px 15px;
}

/* Fade-in animation */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.4s ease;
}

.product-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .product-categories {
        text-align: center;
    }
}


/* WHY CHOOSE US FEATURE CARDS */
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(-10deg) scale(1.2);
}

.feature-card h5 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* PRODUCT CARDS UNIFORM HEIGHT */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-img-wrapper {
    height: 250px;
    /* uniform image height */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ensures uniform size */
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    font-size: 1.5rem;
    color: #fff;
    background: var(--primary-color);
    padding: 12px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-view:hover {
    transform: scale(1.1);
}

.product-info {
    padding: 15px;
    flex: 1;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-category {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.product-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin: 8px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* FADE-IN ANIMATION */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.4s ease;
}

.product-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* ============================================================ */
/* AT A GLANCE SECTION                                          */
/* ============================================================ */

.at-a-glance-section { background: var(--bg-color); }

.glance-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.glance-table {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
}

.glance-item {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s ease;
}

.glance-item:last-child { border-bottom: none; }

.glance-item:hover { background: rgba(37,150,190,0.05); }

.glance-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 500;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.01);
}

.glance-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    padding: 20px 25px;
    display: flex;
    align-items: center;
}

.glance-image-col {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
    background: var(--surface-color);
}

.glance-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glance-image-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,150,190,0.15), transparent 60%);
}

.glance-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(37,150,190,0.08), rgba(5,15,20,0.9));
    border: 1px solid rgba(37,150,190,0.15);
    border-radius: 20px;
}

.glance-image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.6;
}

.glance-image-placeholder span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 200px;
}

@media (max-width: 992px) {
    .glance-wrapper { grid-template-columns: 1fr; }
    .glance-image-col { min-height: 250px; }
    .glance-image-placeholder { min-height: 250px; }
}

@media (max-width: 576px) {
    .glance-item { grid-template-columns: 1fr; }
    .glance-label {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        padding: 14px 20px 8px;
    }
    .glance-value { padding: 8px 20px 14px; }
}


/* ============================================================ */
/* OUR JOURNEY â€” PREMIUM HORIZONTAL TIMELINE                   */
/* ============================================================ */

.journey-section {
    background: var(--surface-color);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 50%, rgba(37,150,190,0.04) 0%, transparent 60%),
                radial-gradient(circle at 90% 50%, rgba(37,150,190,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.journey-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: calc(16.66% - 0px);
    right: calc(16.66% - 0px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.4;
    z-index: 0;
}

.journey-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.journey-year-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 6px rgba(37,150,190,0.1), 0 0 25px rgba(37,150,190,0.25);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.4s ease;
    font-family: var(--font-heading);
}

.journey-card:hover .journey-year-badge {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 8px rgba(37,150,190,0.15), 0 0 40px rgba(37,150,190,0.5);
    transform: scale(1.1);
}

.journey-stats-box {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 25px 20px;
    transition: all 0.4s ease;
    text-align: left;
}

.journey-card:hover .journey-stats-box {
    border-color: rgba(37,150,190,0.3);
    background: rgba(37,150,190,0.04);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.journey-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    gap: 8px;
}

.journey-stat-row:last-child { border-bottom: none; }

.journey-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    flex: 1;
}

.journey-stat-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .journey-timeline::before { display: none; }
    .journey-card { align-items: flex-start; flex-direction: row; gap: 20px; text-align: left; }
    .journey-year-badge { flex-shrink: 0; width: 55px; height: 55px; font-size: 0.85rem; margin-bottom: 0; }
    .journey-stats-box { padding: 20px 15px; }
}

@media (max-width: 576px) {
    .journey-card { flex-direction: column; align-items: center; text-align: center; }
    .journey-stat-label { font-size: 0.74rem; }
}


/* ============================================================ */
/* CUSTOMER BRANDS â€” SCROLLING MARQUEE                         */
/* ============================================================ */

.customers-section {
    background: var(--bg-color);
    overflow: hidden;
}

.brands-marquee-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.brands-marquee-wrapper::before,
.brands-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-color) 0%, transparent 100%);
}

.brands-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-color) 0%, transparent 100%);
}

.brands-track {
    display: flex;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
}

.brands-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 50px;
    border-right: 1px solid rgba(255,255,255,0.05);
    min-width: 180px;
    transition: background 0.3s ease;
}

.brand-logo-item:hover { background: rgba(37,150,190,0.05); }

.brand-logo-text {
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    user-select: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
}

.brand-logo-item:hover .brand-logo-text {
    color: rgba(255,255,255,0.85);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .brand-logo-item { padding: 18px 32px; min-width: 140px; }
    .brand-logo-text { font-size: 0.9rem; }
}


/* ============================================================ */
/* OPERATION STRENGTH PILLARS                                   */
/* ============================================================ */

.op-strength-section { background: var(--surface-color); }

.op-strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.op-pillar-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    cursor: pointer;
}

.op-pillar-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.175,0.885,0.32,1.275), filter 0.5s ease;
    filter: brightness(0.45);
}

.op-pillar-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.3);
}

.op-pillar-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 25px;
    min-height: 320px;
    background: linear-gradient(to top,
        rgba(5,15,20,0.97) 0%,
        rgba(5,15,20,0.65) 50%,
        rgba(37,150,190,0.08) 100%);
    transition: background 0.4s ease;
}

.op-pillar-card:hover .op-pillar-overlay {
    background: linear-gradient(to top,
        rgba(5,15,20,1) 0%,
        rgba(5,15,20,0.82) 55%,
        rgba(37,150,190,0.15) 100%);
}

.op-pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(37,150,190,0.12);
    border: 1px solid rgba(37,150,190,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 14px;
    transition: all 0.4s ease;
}

.op-pillar-card:hover .op-pillar-icon {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.op-pillar-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
}

.op-pillar-arrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    transition: gap 0.3s ease;
    font-family: var(--font-body);
}

.op-pillar-card:hover .op-pillar-arrow { gap: 10px; }

.op-pillar-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    margin-top: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}

.op-pillar-card:hover .op-pillar-desc {
    max-height: 120px;
    opacity: 1;
}

@media (max-width: 992px) {
    .op-strength-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .op-strength-grid { grid-template-columns: 1fr; gap: 2px; }
    .op-pillar-card { min-height: 240px; }
    .op-pillar-overlay { min-height: 240px; }
    .op-pillar-desc { display: none; }
}


/* ============================================================ */
/* STATS BAND                                                   */
/* ============================================================ */

.stats-band {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #071419 100%);
    padding: 60px 0;
    border-top: 1px solid rgba(37,150,190,0.12);
    border-bottom: 1px solid rgba(37,150,190,0.12);
}

.stats-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-band-item {
    text-align: center;
    padding: 20px 30px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s ease;
}

.stat-band-item:last-child { border-right: none; }
.stat-band-item:hover { background: rgba(37,150,190,0.06); }

.stat-band-value {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-band-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-band-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
    .stat-band-item:nth-child(2n) { border-right: none; }
    .stat-band-value { font-size: 2rem; }
}

@media (max-width: 480px) {
    .stats-band-grid { grid-template-columns: 1fr 1fr; }
    .stat-band-value { font-size: 1.7rem; }
    .stats-band { padding: 40px 0; }
}


/* ============================================================ */
/* LETTER SPACING UTILITIES                                     */
/* ============================================================ */

.letter-spacing-2 { letter-spacing: 2px; }
.letter-spacing-4 { letter-spacing: 4px; }


/* ============================================================ */
/* ADDITIONAL MOBILE FIXES                                      */
/* ============================================================ */

@media (max-width: 576px) {
    :root {
        --spacing-container: 16px;
        --spacing-section: 50px;
    }

    h1 { font-size: 2rem; line-height: 1.2; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .values-grid { grid-template-columns: 1fr; }
    .about-cards-grid { grid-template-columns: 1fr; }
    .leadership-grid { gap: 30px; }
    .section { padding: 50px 0; }

    .btn-luxury { padding: 12px 28px; font-size: 11px; }

    .hero-title { font-size: 9vw; }
}


/* ============================================================ */
/* BRAND LOGO IMAGES — CUSTOMER MARQUEE                        */
/* ============================================================ */

.brand-logo-img {
    height: 38px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    /* Mute logos to match dark theme, brighten on hover */
    filter: brightness(0) invert(0.55);
    transition: filter 0.3s ease, transform 0.3s ease;
    display: block;
}

.brand-logo-item:hover .brand-logo-img {
    filter: brightness(0) invert(0.9);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .brand-logo-img { height: 30px; max-width: 90px; }
}


/* ============================================================ */
/* PORTFOLIO CAROUSEL — TINY SLIDER OVERRIDES                  */
/* ============================================================ */

.portfolio-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

/* Edge navigation buttons */
.carousel-edge-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 100%;
    max-height: 100%;
    top: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 0;
}

.portfolio-carousel-wrapper:hover .carousel-edge-btn {
    opacity: 1;
}

.carousel-edge-prev {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.carousel-edge-next {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.carousel-edge-btn:hover {
    opacity: 1 !important;
}

.carousel-edge-prev:hover {
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, transparent 100%);
}

.carousel-edge-next:hover {
    background: linear-gradient(to left, rgba(0,0,0,0.75) 0%, transparent 100%);
}

.carousel-edge-btn i {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.7));
}

@media (max-width: 768px) {
    .carousel-edge-btn { width: 38px; font-size: 1rem; opacity: 1; }
}


/* ============================================================ */
/* ABOUT US — PREMIUM REDESIGN                                 */
/* ============================================================ */

.about-us-redesigned {
    position: relative;
    overflow: hidden;
}

.about-us-redesigned::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(37, 150, 190, 0.07) 0%, transparent 68%);
    pointer-events: none;
}

.au-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.au-eyebrow-line {
    display: inline-block;
    width: 36px;
    height: 2px;
    background: var(--primary-color);
    flex-shrink: 0;
}

.au-lead-para {
    font-size: 1.12rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
}

.au-body-para {
    font-size: 0.96rem;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* Premium Cards */
.au-premium-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.au-premium-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 28px 28px 30px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 14px 14px 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.au-premium-card:hover {
    background: rgba(37, 150, 190, 0.07);
    border-color: rgba(37, 150, 190, 0.25);
    border-left-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: -4px 0 20px rgba(37, 150, 190, 0.12);
}

.au-card-ghost {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px;
    transition: color 0.35s ease;
}

.au-premium-card:hover .au-card-ghost {
    color: rgba(37, 150, 190, 0.07);
}

.au-card-icon-wrap {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    background: rgba(37, 150, 190, 0.1);
    border: 1px solid rgba(37, 150, 190, 0.22);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--primary-color);
    transition: all 0.35s ease;
}

.au-premium-card:hover .au-card-icon-wrap {
    background: var(--primary-color);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 18px rgba(37, 150, 190, 0.35);
}

.au-card-body-text { flex: 1; min-width: 0; }

.au-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 7px;
}

.au-card-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 576px) {
    .au-premium-card { padding: 20px 20px 20px 22px; gap: 16px; }
}


/* ============================================================ */
/* CONTACT PAGE — DUAL LOCATION CARDS                         */
/* ============================================================ */

.contact-location-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.35s ease;
}

.contact-location-card:hover {
    border-color: rgba(37, 150, 190, 0.35);
    background: rgba(37, 150, 190, 0.04);
}

.contact-location-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.contact-info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-info-row:last-child { margin-bottom: 0; }

.contact-info-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: rgba(37, 150, 190, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-info-body h6 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-info-body p,
.contact-info-body a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-body a:hover { color: var(--primary-color); }


/* ============================================================ */
/* CONTACT MAP                                                */
/* ============================================================ */

.contact-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
}

.contact-map-wrapper iframe {
    display: block;
    border-radius: 12px;
}


/* ============================================================ */
/* CONTACT FORM                                               */
/* ============================================================ */

.contact-form-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 50px;
}

@media (max-width: 768px) {
    .contact-form-section { padding: 30px 20px; }
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    background: rgba(37, 150, 190, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 150, 190, 0.15);
    color: #fff;
    outline: none;
}

.contact-form-section .form-control::placeholder { color: rgba(255,255,255,0.35); }

.contact-form-section label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-form-section textarea.form-control { resize: vertical; min-height: 130px; }

/* Products page pagination */
.products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.products-pagination .page-btn {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.products-pagination .page-btn:hover:not(.disabled) {
    background: rgba(37, 150, 190, 0.2);
    border-color: var(--primary-color);
    color: #fff;
}

.products-pagination .page-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.products-pagination .page-btn.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}
