@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --color-navy: #1A1A3C;
    --color-blue: #1FA6DB;
    --color-indigo: #4F45D3;
    --color-aqua: #00C8E0;
    --color-sky-aqua: #7EE5F3;
    --color-coral: #FF6F61;
    --color-mint: #3EDFA6;
    --color-amber: #FFBA49;
    --color-charcoal: #3C3C3C;
    --color-gray: #A9B1BA;
    --color-white: #F9FAFB;
    --color-pure-white: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(26, 26, 60, 0.05);
    --shadow-md: 0 10px 30px rgba(26, 26, 60, 0.08);
    --shadow-lg: 0 20px 40px rgba(26, 26, 60, 0.12);
    --shadow-glow-blue: 0 0 25px rgba(31, 166, 219, 0.35);
    --shadow-glow-coral: 0 0 25px rgba(255, 111, 97, 0.35);
    --shadow-glass: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 8px 32px rgba(26, 26, 60, 0.06);

    /* Borders */
    --border-glass: 1px solid rgba(255, 255, 255, 0.25);
    --border-dark-glass: 1px solid rgba(26, 26, 60, 0.1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-white);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gray);
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-white);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-blue);
}

/* Typography Presets */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 2rem;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-indigo));
    border-radius: 2px;
}

h2.section-title-center {
    text-align: center;
}

h2.section-title-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-indigo));
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

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

/* Reusable Components & Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.section-dark h1, .section-dark h2, .section-dark h3 {
    color: var(--color-white);
}

/* Glassmorphism Preset */
.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border-glass);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-md);
}

.glass-panel-dark {
    background: rgba(26, 26, 60, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-white);
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(26, 26, 60, 0.08);
    box-shadow: var(--shadow-md);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

/* Scroll Logo Toggle */
header.scrolled .logo-white {
    display: none !important;
}

header.scrolled .logo-color {
    display: block !important;
}

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

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-white); /* Always starts white on transparent dark hero */
    position: relative;
    padding: 8px 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
}

header.scrolled .nav-link {
    color: var(--color-navy); /* Navy on scrolled white background */
    text-shadow: none;
}


.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-blue);
    transition: var(--transition-smooth);
    border-radius: 1px;
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-blue);
    text-shadow: none;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    pointer-events: none;
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue), var(--color-indigo));
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-blue);
    background: linear-gradient(135deg, var(--color-indigo), var(--color-blue));
}

.btn-coral {
    background: linear-gradient(135deg, var(--color-coral), #ff8c7a);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

/* Glass Shimmer Animation */
.btn-coral::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60px;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 2;
    animation: button-shimmer 5s infinite ease-in-out;
}

.btn-coral:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-coral), 0 0 0 4px rgba(255, 111, 97, 0.25);
    background: linear-gradient(135deg, #ff8c7a, var(--color-coral));
}

.btn-coral:hover::before {
    animation: none;
    left: 150%;
    transition: left 0.8s ease-in-out;
}

@keyframes button-shimmer {
    0% {
        left: -150%;
    }
    12% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
}

.btn-outline:hover {
    background: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-navy);
    transform: translateY(-2px);
}

/* Hamburger / Mobile Nav Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

header.scrolled .hamburger span {
    background-color: var(--color-navy);
}


/* Mobile Menu Slide */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, var(--color-indigo) 0%, #15133c 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: var(--transition-slow);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
        z-index: 1000;
        padding: 40px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    /* Toggle transformations for Hamburger active state */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
}

/* Static Hero Section (Replacement for Slider) */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-indigo) 0%, #3b30bd 45%, var(--color-blue) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated Gradient Background Container & Layers */
.hero-bg-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: hero-gradient-fade 16s infinite ease-in-out;
}

.hero-bg-gradient.gradient-1 {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%);
    animation-delay: 0s;
}

.hero-bg-gradient.gradient-2 {
    background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-navy) 100%);
    animation-delay: -4s;
}

.hero-bg-gradient.gradient-3 {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-coral) 100%);
    animation-delay: -8s;
}

.hero-bg-gradient.gradient-4 {
    background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-mint) 100%);
    animation-delay: -12s;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-navy);
    opacity: 0.35; /* subtle overlay matching design specs */
    z-index: 2;
    pointer-events: none;
}

@keyframes hero-gradient-fade {
    0%, 100% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 166, 219, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 2; /* decorative radial glow above gradient layers */
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3; /* text content sits on top of all backgrounds */
}

.hero-content {
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-white);
}

.hero-title span.text-gradient {
    background: linear-gradient(90deg, var(--color-sky-aqua), var(--color-blue), var(--color-aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 36px;
    color: rgba(249, 250, 251, 0.85);
}

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

/* Hero Visual Container */
.hero-visual {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.collage-card {
    position: absolute;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(26, 26, 60, 0.35);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 100%);
    transform: skewX(-25deg);
    transition: left 0.75s ease-in-out;
}

.collage-card:hover::after {
    left: 130%;
}

.collage-card:hover {
    transform: scale(1.05) translateY(-5px) !important;
    z-index: 10 !important;
    box-shadow: var(--shadow-glow-blue), 0 20px 45px rgba(0,0,0,0.4);
    border-color: var(--color-blue);
}

.card-1 {
    width: 320px;
    height: 200px;
    top: 20px;
    left: 10px;
    z-index: 3;
    animation: float-1 8s ease-in-out infinite;
}

.card-2 {
    width: 300px;
    height: 180px;
    bottom: 30px;
    right: 10px;
    z-index: 2;
    animation: float-2 10s ease-in-out infinite;
}

.card-3 {
    width: 260px;
    height: 160px;
    top: 140px;
    right: 40px;
    z-index: 1;
    animation: float-3 7s ease-in-out infinite;
}

/* Float Animations Keyframes */
@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0) rotate(1.5deg); }
    50% { transform: translateY(-12px) rotate(-1.5deg); }
}

/* Scroll Down Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(249, 250, 251, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.scroll-indicator span {
    margin-bottom: 8px;
    text-transform: uppercase;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(249, 250, 251, 0.6);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.8s ease-in-out infinite;
}

@keyframes wheelScroll {
    0% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0; }
    100% { top: 8px; opacity: 1; }
}

/* Scroll Reveal Effects */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.welcome-text h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-blue);
    margin-bottom: 0.5rem;
}

.welcome-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.welcome-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.welcome-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Welcome Image Visual overlay */
.welcome-visual-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.welcome-visual-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.welcome-visual-container:hover .welcome-visual-img {
    transform: scale(1.03);
}

.brand-box {
    width: 320px;
    height: 320px;
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-blue), var(--color-indigo));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
    overflow: hidden;
}

.brand-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: rotateGlow 15s linear infinite;
}

.brand-box-logo {
    width: 140px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.brand-box-text {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 20px;
    z-index: 2;
    letter-spacing: 2px;
}

/* Services Grid (What We Do) */
.services-section {
    background-color: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px 24px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-indigo));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
    border-color: rgba(31, 166, 219, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(31, 166, 219, 0.1), rgba(79, 69, 211, 0.1));
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    color: var(--color-blue);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--color-blue), var(--color-indigo));
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.services-list li {
    transition: var(--transition-smooth);
}

.services-list li svg {
    transition: var(--transition-smooth);
}

.services-list li:hover {
    transform: translateX(4px);
}

.services-list li:hover svg {
    transform: scale(1.2) rotate(15deg);
    fill: var(--color-blue);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-weight: 600;
    color: var(--color-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
    fill: currentColor;
}

.service-card:hover .service-link {
    color: var(--color-indigo);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    padding: 30px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    border: 1px solid rgba(26, 26, 60, 0.05);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 166, 219, 0.2);
}

.why-card:hover .why-card-icon {
    display: inline-block;
    animation: iconPulse 1.2s infinite ease-in-out;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(5deg); }
    100% { transform: scale(1); }
}

.why-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.why-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.925rem;
    color: var(--color-charcoal);
    margin-bottom: 0;
}

/* Footer Section */
footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-blue);
    border-radius: 1px;
}

.footer-about .logo-img {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    font-size: 0.9rem;
    color: rgba(249, 250, 251, 0.7);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(249, 250, 251, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-blue);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(249, 250, 251, 0.7);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--color-blue);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(249, 250, 251, 0.7);
    transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
    color: var(--color-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    font-size: 0.85rem;
    color: rgba(249, 250, 251, 0.5);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    color: var(--color-white);
}

.footer-socials a:hover {
    background-color: var(--color-blue);
    transform: translateY(-3px);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Service Page Details Layout */
.service-header {
    background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-blue) 100%);
    padding: 140px 0 80px;
    color: var(--color-white);
    text-align: center;
}

.service-header h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-header p {
    color: rgba(249, 250, 251, 0.8);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-block {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Reduced image column to 40% width to reduce size */
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-block:nth-child(even) {
    grid-template-columns: 0.8fr 1.2fr; /* Balanced width for alternate rows */
}

.service-block:nth-child(even) .service-block-info {
    order: 2;
}

.service-block:nth-child(even) .service-block-visual {
    order: 1;
}

.service-block-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.service-block-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 2rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.services-list li svg {
    width: 20px;
    height: 20px;
    fill: var(--color-mint);
    flex-shrink: 0;
}

.service-block-visual {
    position: relative;
    border-radius: var(--radius-lg);
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: visible; /* Changed from hidden to allow pop-out elements to overlap */
}

.service-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.1s ease-out; /* Smooth follow-scroll transition */
    will-change: transform;
}

/* Scroll-Driven Floating Pop-Out Cards */
.floating-pop-element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 35px rgba(26, 26, 60, 0.18);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform;
}

.pop-left {
    bottom: 30px;
    left: -24px;
}

.pop-right {
    bottom: 30px;
    right: -24px;
}

.pop-icon-wrapper {
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(31, 166, 219, 0.1), rgba(79, 69, 211, 0.1));
    border-radius: 50%;
}

.pop-text-wrapper {
    display: flex;
    flex-direction: column;
}

.pop-text-wrapper strong {
    font-size: 0.9rem;
    color: var(--color-navy);
    font-weight: 700;
    line-height: 1.2;
}

.pop-text-wrapper span {
    font-size: 0.75rem;
    color: var(--color-charcoal);
    font-weight: 500;
}

.service-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
}

.visual-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background-color: var(--color-blue);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

/* About Us Layout styling */
.about-hero {
    background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-blue) 100%);
    padding: 140px 0 80px;
    color: var(--color-white);
    text-align: center;
}

.about-hero h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.philosophy-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.philosophy-card {
    background: linear-gradient(135deg, var(--color-indigo) 0%, #2a2080 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.philosophy-card h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.philosophy-item {
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    padding: 10px;
    border-radius: var(--radius-sm);
}

.philosophy-item:last-child {
    margin-bottom: 0;
}

.philosophy-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
}

.philosophy-item strong {
    color: var(--color-blue);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.philosophy-letter {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-aqua));
    color: var(--color-white);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    transition: var(--transition-smooth);
}

.philosophy-item:hover .philosophy-letter {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 0 15px rgba(0, 200, 224, 0.5);
}

.philosophy-item p {
    color: rgba(249, 250, 251, 0.85);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.vision-card, .mission-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    border: 1px solid rgba(26, 26, 60, 0.05);
}

.vision-card {
    background: linear-gradient(135deg, rgba(31, 166, 219, 0.03) 0%, rgba(79, 69, 211, 0.03) 100%);
}

.mission-card {
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.03) 0%, rgba(255, 186, 73, 0.03) 100%);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vision-card h3 {
    color: var(--color-blue);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: var(--color-coral);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.vision-card p, .mission-card p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Locations Map Section */
.locations-section {
    background-color: var(--color-white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.location-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--color-pure-white);
    border: 1px solid rgba(26, 26, 60, 0.05);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: default;
}

.location-chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), var(--shadow-glow-blue);
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.location-chip svg {
    width: 20px;
    height: 20px;
    fill: var(--color-blue);
    transition: var(--transition-smooth);
}

.location-chip:hover svg {
    fill: var(--color-indigo);
    transform: scale(1.1);
}

/* Contact Us Layout & Form */
.contact-hero {
    background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-blue) 100%);
    padding: 140px 0 80px;
    color: var(--color-white);
    text-align: center;
}

.contact-hero h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-card {
    padding: 40px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    padding: 30px;
    background: var(--color-pure-white);
    border: 1px solid rgba(26, 26, 60, 0.05);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 166, 219, 0.2);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(31, 166, 219, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-blue);
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-card-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-card-details p {
    font-size: 0.925rem;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.contact-card-details p:last-child {
    margin-bottom: 0;
}

.contact-card-details a {
    color: var(--color-blue);
    font-weight: 500;
}

.contact-card-details a:hover {
    color: var(--color-indigo);
}

/* Floating Label Inputs */
.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(26, 26, 60, 0.15);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.form-control:focus {
    transform: translateY(-2px);
    border-color: var(--color-blue);
    box-shadow: 0 8px 24px rgba(31, 166, 219, 0.15);
}

.form-label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--color-gray);
    pointer-events: none;
    transition: var(--transition-smooth);
}

/* Floating logic on focus or input containing content */
.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-blue);
    background-color: var(--color-white);
    padding: 0 6px;
}

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

.form-status {
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    background-color: rgba(62, 223, 166, 0.15);
    color: #29a073;
    border: 1px solid rgba(62, 223, 166, 0.3);
}

.form-status.error {
    background-color: rgba(255, 111, 97, 0.15);
    color: #cc493d;
    border: 1px solid rgba(255, 111, 97, 0.3);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateGlow {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-title { font-size: 3rem; }
    
    .hero-section {
        min-height: auto; /* Prevent massive blank space on tall screen aspect ratios */
        padding: 120px 0 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-visual {
        height: auto;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .welcome-illustration {
        order: -1;
    }
    
    .service-block, .service-block:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-block:nth-child(even) .service-block-info {
        order: 1;
    }
    .service-block:nth-child(even) .service-block-visual {
        order: 2;
    }
    
    .philosophy-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    .hero-title { font-size: 2.25rem; }
    .hero-desc { font-size: 1rem; }
    .section { padding: 60px 0; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .location-chip {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* Global Contrast Fixes for Dark Backgrounds */
.section-dark p,
.service-header p,
.about-hero p,
.contact-hero p,
.hero-section p,
.glass-panel-dark p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.service-header h1,
.about-hero h1,
.contact-hero h1,
.hero-title {
    color: #FFFFFF !important;
}

/* Hide Mobile actions button on desktop and desktop button on mobile */
.nav-actions-mobile {
    display: none;
}

@media (max-width: 768px) {
    .nav-actions-mobile {
        display: block;
    }
    .nav-actions > .btn-coral {
        display: none !important;
    }
}

/* --- Spline 3D Card & Spotlight Integration --- */
.spline-card {
    position: relative;
    width: 100%;
    height: 500px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .spline-card {
        height: 380px;
    }
}

/* Spotlight CSS Animation (Aceternity style) */
.spotlight-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.spotlight-svg {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 150%;
    height: 150%;
    pointer-events: none;
    opacity: 0;
    transform: translate(-10%, -10%) scale(0.9);
    animation: spotlight-pulse 3s ease 0.5s 1 normal forwards;
}

@keyframes spotlight-pulse {
    0% {
        opacity: 0;
        transform: translate(-15%, -15%) scale(0.85);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

/* Mouse Hover Glow Layer (Ibelick style) */
.mouse-glow-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: radial-gradient(circle 220px at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(31, 166, 219, 0.22) 0%, rgba(79, 69, 211, 0.04) 50%, transparent 100%);
}

.spline-card:hover .mouse-glow-layer {
    opacity: 1;
}

/* Loading State */
.spline-loader {
    position: absolute;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Spline Viewer Element */
.spline-viewer-element {
    width: 100%;
    height: 100%;
    border: none;
    z-index: 4;
    cursor: grab;
}
.spline-viewer-element:active {
    cursor: grabbing;
}

/* --- Interactive Bento Grid --- */
.services-section {
    position: relative;
    width: 100%;
    background-color: var(--color-white);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    perspective: 1000px;
}

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

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Card Styles */
.service-card {
    position: relative;
    padding: 36px 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 26, 60, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    transform-style: preserve-3d;
    transition: background-color 0.4s ease, border-color 0.4s ease, transform 0.1s ease-out, box-shadow 0.4s ease;
    overflow: hidden;
    will-change: transform;
}

/* Mouse-tracking Spotlight Glow overlay */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: radial-gradient(circle 180px at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    z-index: 3;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(31, 166, 219, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    color: var(--color-blue);
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-navy);
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 0.925rem;
    color: var(--color-charcoal);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease, fill 0.4s ease;
    fill: currentColor;
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* --- Specific Card Color Hover Themes & High Contrast Texts --- */

/* 1. Logistics: Emerald Mint -> White Text/Icon */
.card-logistics:hover {
    background-color: #129e68 !important; /* rich emerald mint */
    border-color: #0e7d52 !important;
    box-shadow: 0 20px 40px rgba(18, 158, 104, 0.45), var(--shadow-md);
}
.card-logistics:hover h3,
.card-logistics:hover p,
.card-logistics:hover .service-link {
    color: var(--color-pure-white) !important;
}
.card-logistics:hover .service-icon {
    background: rgba(255, 255, 255, 0.25) !important;
    color: var(--color-pure-white) !important;
    transform: scale(1.05) rotate(5deg);
}
.card-logistics:hover .service-icon svg {
    fill: var(--color-pure-white) !important;
}
.card-logistics:hover .service-link svg {
    fill: var(--color-pure-white) !important;
}

/* 2. IT: Pastel Violet Indigo -> White Text/Icon */
.card-it:hover {
    background-color: #6355E6 !important; /* rich violet indigo */
    border-color: #4e40cf !important;
    box-shadow: 0 20px 40px rgba(99, 85, 230, 0.45), var(--shadow-md);
}
.card-it:hover h3,
.card-it:hover p,
.card-it:hover .service-link {
    color: var(--color-pure-white) !important;
}
.card-it:hover .service-icon {
    background: rgba(255, 255, 255, 0.25) !important;
    color: var(--color-pure-white) !important;
    transform: scale(1.05) rotate(5deg);
}
.card-it:hover .service-icon svg {
    fill: var(--color-pure-white) !important;
}
.card-it:hover .service-link svg {
    fill: var(--color-pure-white) !important;
}

/* 3. Facility: Sunrise Coral -> White Text/Icon */
.card-facility:hover {
    background-color: var(--color-coral) !important;
    border-color: #E25547 !important;
    box-shadow: 0 20px 40px rgba(255, 111, 97, 0.45), var(--shadow-md);
}
.card-facility:hover h3,
.card-facility:hover p,
.card-facility:hover .service-link {
    color: var(--color-pure-white) !important;
}
.card-facility:hover .service-icon {
    background: rgba(255, 255, 255, 0.25) !important;
    color: var(--color-pure-white) !important;
    transform: scale(1.05) rotate(5deg);
}
.card-facility:hover .service-icon svg {
    fill: var(--color-pure-white) !important;
}
.card-facility:hover .service-link svg {
    fill: var(--color-pure-white) !important;
}

/* 4. Extended: Golden Amber -> White Text/Icon */
.card-extended:hover {
    background: linear-gradient(135deg, var(--color-amber) 0%, #FFA000 100%) !important; /* premium golden gradient using brand amber */
    border-color: #FFA000 !important;
    box-shadow: 0 20px 40px rgba(255, 186, 73, 0.45), var(--shadow-md);
}
.card-extended:hover h3,
.card-extended:hover p,
.card-extended:hover .service-link {
    color: var(--color-pure-white) !important;
    text-shadow: 0 1px 3px rgba(26, 26, 60, 0.3);
}
.card-extended:hover .service-icon {
    background: rgba(255, 255, 255, 0.25) !important;
    color: var(--color-pure-white) !important;
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 2px 4px rgba(26, 26, 60, 0.2));
}
.card-extended:hover .service-icon svg {
    fill: var(--color-pure-white) !important;
}
.card-extended:hover .service-link svg {
    fill: var(--color-pure-white) !important;
    filter: drop-shadow(0 1px 2px rgba(26, 26, 60, 0.2));
}

