/* ---------------------------------------------------------
   RadialBlue Printing CSS Design System & Layout
   Primary Colors: #233d92 (Deep Blue), #dc4a54 (Coral Red)
--------------------------------------------------------- */

:root {
    /* Brand Colors */
    --color-primary: #233d92;
    --color-primary-dark: #192d6e;
    --color-primary-light: #eff3fa;
    --color-accent: #dc4a54;
    --color-accent-dark: #be3e46;
    --color-accent-light: #fef2f3;

    /* Neutrals */
    --color-bg-site: #f8fafc;
    --color-bg-surface: #ffffff;
    --color-text-main: #0f172a;
    --color-text-muted: #475569;
    --color-text-light: #94a3b8;
    --color-border: #e2e8f0;

    /* Footer Dark Palette */
    --color-footer-bg: #090e1f;
    --color-footer-surface: #12182d;
    --color-footer-text: #cbd5e1;
    --color-footer-text-muted: #64748b;
    --color-footer-border: #1e293b;

    /* Fonts */
    --font-family-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-family-heading: 'Space Grotesk', var(--font-family-body);

    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);

    /* Sizing & Paddings */
    --header-height: 100px;
    --header-height-scrolled: 80px;
    --container-max-width: 1200px;
    --container-wide-max-width: 1320px;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --section-padding: 85px 0;
    /* Premium, unified spacing gap */
}

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

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

body {
    font-family: var(--font-family-body);
    background-color: var(--color-bg-site);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

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

.header-container,
.footer-container,
.footer-bottom-container {
    max-width: var(--container-wide-max-width);
}

/* ---------------------------------------------------------
   Header Components
--------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

/* Sticky scrolled state with glassmorphism */
.site-header.scrolled {
    height: var(--header-height-scrolled);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-md);
}

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

/* Brand Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.header-logo-img {
    height: 60px;
}

.drawer-logo-img {
    height: 48px;
}

.footer-logo-img {
    height: 68px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-radial {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.brand-blue {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: -0.5px;
    margin-left: 1px;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: 3px;
    margin-top: 2px;
}

/* Desktop Menu Styling */
.nav-menu {
    display: block;
}

.nav-list {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Animated Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

.nav-link.active {
    color: var(--color-primary);
}

/* CTA Button Styling */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(35, 61, 146, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-button svg {
    transition: var(--transition-smooth);
}

.cta-button:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(35, 61, 146, 0.45);
    transform: translateY(-2px);
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Pulsing effect around CTA */
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.cta-button:active::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: 0s;
}

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

.hamburger-bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-text-main);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Drawer (Off-Canvas Menu) */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--color-bg-surface);
    box-shadow: var(--shadow-xl);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.drawer-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.drawer-nav {
    margin-bottom: auto;
}

.drawer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-muted);
    padding: 8px 0;
    display: block;
    position: relative;
    width: fit-content;
}

.drawer-link:hover,
.drawer-link.active {
    color: var(--color-primary);
}

.drawer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

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

.drawer-footer {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.cta-button.full-width {
    width: 100%;
    justify-content: center;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(9, 14, 31, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ---------------------------------------------------------
   Footer Components
--------------------------------------------------------- */

.site-footer {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-text);
    padding: 80px 0 0 0;
    font-size: 0.95rem;
    position: relative;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Column 1: About */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .brand-radial,
.footer-logo .brand-blue {
    font-size: 1.5rem;
}

.footer-logo .brand-radial {
    color: #ffffff;
}

.footer-logo .brand-sub {
    color: var(--color-footer-text-muted);
}

.about-text {
    color: var(--color-footer-text);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 420px;
}

/* Social links styling */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background-color: var(--color-footer-surface);
    border: 1px solid var(--color-footer-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-footer-text);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(220, 74, 84, 0.4);
}

/* Footer Column 2: Navigation Links */
.footer-heading {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link-list a {
    color: var(--color-footer-text);
    opacity: 0.8;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-link-list a:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateX(6px);
}

/* Footer Column 3: Contact Info */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.5;
}

.contact-icon {
    color: var(--color-accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info-list a {
    color: var(--color-footer-text);
    opacity: 0.8;
}

.contact-info-list a:hover {
    color: #ffffff;
    opacity: 1;
}

/* Footer Bottom Copyright bar */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--color-footer-border);
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--color-footer-text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--color-footer-text-muted);
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* ---------------------------------------------------------
   Demo Main Content Styles (Just for previewing scroll)
--------------------------------------------------------- */

main {
    padding-top: var(--header-height);
}

/* Hero Section Rebuilt */
.hero-section {
    position: relative;
    background-color: #ffffff;
    /* Subtle precision engineering grid pattern */
    background-image:
        linear-gradient(to right, rgba(35, 61, 146, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(35, 61, 146, 0.035) 1px, transparent 1px);
    background-size: 45px 45px;
    padding: 120px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-height));
}

/* Interactive laser sweep glow across the background grid lines */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soft cyan/magenta print sweep laser glow */
    background: linear-gradient(115deg,
            transparent 42%,
            rgba(35, 61, 146, 0.03) 46%,
            rgba(220, 74, 84, 0.09) 50%,
            rgba(35, 61, 146, 0.03) 54%,
            transparent 58%);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    /* Masking with grid lines so the glow only shows on the grid lines themselves */
    -webkit-mask-image:
        linear-gradient(to right, #000 1.2px, transparent 1.2px),
        linear-gradient(to bottom, #000 1.2px, transparent 1.2px);
    -webkit-mask-size: 45px 45px;
    mask-image:
        linear-gradient(to right, #000 1.2px, transparent 1.2px),
        linear-gradient(to bottom, #000 1.2px, transparent 1.2px);
    mask-size: 45px 45px;
    z-index: 1;
    pointer-events: none;
    animation: gridLineSweep 8s linear infinite;
}

@keyframes gridLineSweep {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* Dynamic CMYK background elements */
.cmyk-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.55;
}

.cmyk-cyan {
    width: 320px;
    height: 320px;
    background-color: rgba(35, 61, 146, 0.12);
    top: 5%;
    left: -100px;
    animation: floatBlob1 25s ease-in-out infinite;
}

.cmyk-magenta {
    width: 280px;
    height: 280px;
    background-color: rgba(220, 74, 84, 0.1);
    bottom: 5%;
    right: -50px;
    animation: floatBlob2 20s ease-in-out infinite;
}

.cmyk-yellow {
    width: 220px;
    height: 220px;
    background-color: rgba(250, 204, 21, 0.08);
    top: 25%;
    right: 45%;
    animation: floatBlob3 28s ease-in-out infinite;
}

@keyframes floatBlob1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(35px, -45px) scale(1.08);
    }

    66% {
        transform: translate(-15px, 25px) scale(0.95);
    }
}

@keyframes floatBlob2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 35px) scale(1.1);
    }
}

@keyframes floatBlob3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(45px, 45px) scale(0.92);
    }
}

.hero-container-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-left {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpRebuilt 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.hero-section .hero-badge {
    display: inline-block;
    background-color: rgba(35, 61, 146, 0.08);
    border: none;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 28px;
}

.hero-title-rebuilt {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.8px;
    color: #0f172a;
    margin-bottom: 24px;
}

.hero-title-rebuilt .highlight-line {
    color: var(--color-primary);
}

.hero-subtitle-rebuilt {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 530px;
}

.hero-buttons-rebuilt {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-rebuilt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(35, 61, 146, 0.3);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary-rebuilt:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 10px 28px rgba(35, 61, 146, 0.45);
    transform: translateY(-2px);
}

.btn-secondary-rebuilt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    background-color: transparent;
    color: #0f172a;
    border: 1.5px solid #0f172a;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-secondary-rebuilt:hover {
    background-color: rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

/* Hero Right Column */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpRebuilt 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.image-wrapper-rebuilt {
    position: relative;
    width: 100%;
    max-width: 560px;
}

.image-inner-container {
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: breatheImgRebuilt 8s ease-in-out infinite;
}

.print-machine-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-inner-container:hover .print-machine-img {
    transform: scale(1.07);
}

@keyframes breatheImgRebuilt {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-6px) scale(1.006);
    }
}

/* Floating Quality Overlay Card */
.floating-quality-card {
    position: absolute;
    bottom: -15px;
    left: -20px;
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 14px 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(35, 61, 146, 0.05);
    animation: floatAnimation 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes floatAnimation {

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

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

.badge-icon-circle {
    width: 32px;
    height: 32px;
    background-color: rgba(35, 61, 146, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.quality-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
}

.quality-subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* About Us Section */
.about-section {
    padding: var(--section-padding);
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.about-container-layout {
    display: grid;
    /* Image on Left (narrower), Content on Right (wider) */
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-media-col {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content-col {
    position: relative;
    z-index: 2;
}

.about-badge {
    margin-bottom: 16px;
    display: inline-block;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    padding-left: 20px;
    border-left: 5px solid var(--color-accent);
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.8px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-main);
    font-weight: 600;
}

.about-p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.about-p strong {
    color: var(--color-text-main);
}

/* Layered Image Collage */
.about-image-collage {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 400px;
}

.collage-item {
    position: absolute;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.collage-item:hover {
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

.breathe-wrapper {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

/* Nested wrappers (no idle movement) */
.breathe-wrapper {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

/* Main Showroom Image Layout */
.main-item {
    top: 0;
    right: 0;
    width: 82%;
    aspect-ratio: 4/3;
    z-index: 2;
}

.about-showroom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-item:hover .about-showroom-img {
    transform: scale(1.05);
}

/* Detail Proofing Image Layout */
.detail-item {
    bottom: 0;
    left: -20px;
    width: 52%;
    aspect-ratio: 1/1;
    z-index: 3;
}

.about-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-item:hover .about-detail-img {
    transform: scale(1.06);
}

/* Floating Badge */
.about-floating-card {
    position: absolute;
    bottom: 30px;
    right: -25px;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 30px rgba(35, 61, 146, 0.25);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-floating-card .breathe-wrapper {
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.experience-years {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-family-heading);
    letter-spacing: -1px;
}

.experience-label {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Printer Crop & Registration Marks */
.print-reg-mark {
    position: absolute;
    color: var(--color-text-light);
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
}

.mark-top-left {
    top: 10px;
    left: 20px;
    animation: rotateRegMark 16s linear infinite;
}

.mark-bottom-right {
    bottom: 10px;
    right: 20px;
    animation: rotateRegMark 22s linear infinite;
}

@keyframes rotateRegMark {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* CMYK Printer Calibration Bar styling */
.about-color-bar {
    display: flex;
    gap: 6px;
    position: absolute;
    top: 15px;
    left: 110px;
    z-index: 1;
    opacity: 0.5;
}

.color-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0.5px solid rgba(0, 0, 0, 0.15);
}

.color-dot.cyan {
    background-color: #00aeef;
}

.color-dot.magenta {
    background-color: #ec008c;
}

.color-dot.yellow {
    background-color: #fff200;
}

.color-dot.black {
    background-color: #231f20;
}

/* ---------------------------------------------------------
   Scroll Reveal States & Transitions
   --------------------------------------------------------- */
.about-section .about-media-col {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-section .about-content-col {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-section.revealed .about-media-col,
.about-section.revealed .about-content-col {
    opacity: 1;
    transform: translateX(0);
}

/* Services Scroll Reveal */
.services-section .bento-card {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-section .bento-card:nth-child(1) {
    transition-delay: 0s;
}

.services-section .bento-card:nth-child(2) {
    transition-delay: 0.1s;
}

.services-section .bento-card:nth-child(3) {
    transition-delay: 0.2s;
}

.services-section .bento-card:nth-child(4) {
    transition-delay: 0.3s;
}

.services-section .bento-card:nth-child(5) {
    transition-delay: 0.4s;
}

.services-section.revealed .bento-card {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Scroll Reveal */
.contact-section .contact-card {
    opacity: 0;
    transform: scale(0.97) translateY(20px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-section.revealed .contact-card {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Services Preview Section */
.services-section {
    padding: var(--section-padding);
    background-color: #edf8ff;
}

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

.section-badge {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 8px 0 16px 0;
    letter-spacing: -0.5px;
}

.section-description {
    color: var(--color-text-muted);
}

/* ---------------------------------------------------------
   Bento Grid Services Layout
   Grid: 3-col desktop | Row1: wide(2)+1 | Row2: 1+wide(2) | Row3: full(3)
   --------------------------------------------------------- */
.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 340px;
    gap: 16px;
}

/* Base card */
.bento-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    /* Hover lift is handled by transform */
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 24px 48px -10px rgba(15, 23, 42, 0.22);
}

/* Card spanning variants */
.bento-wide {
    grid-column: span 2;
}

.bento-full {
    grid-column: span 3;
    grid-auto-rows: 260px;
}

/* Background image fills the card */
.bento-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

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

/* Dark gradient overlay sitting above the image */
.bento-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    /* Base gradient: heavy at bottom for legibility */
    background: linear-gradient(to top,
            rgba(9, 14, 31, 0.92) 0%,
            rgba(9, 14, 31, 0.35) 50%,
            rgba(9, 14, 31, 0.10) 100%);
    transition: background 0.4s ease;
}

.bento-card:hover .bento-overlay {
    background: linear-gradient(to top,
            rgba(9, 14, 31, 0.97) 0%,
            rgba(9, 14, 31, 0.55) 55%,
            rgba(9, 14, 31, 0.15) 100%);
}

/* Top row: icon badge */
.bento-top {
    display: flex;
    justify-content: flex-end;
}

.bento-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover .bento-icon {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

/* Bottom row: title + description */
.bento-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.bento-tag::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.bento-wide h3,
.bento-full h3 {
    font-size: 1.45rem;
}

.bento-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin: 0;
    /* Hidden by default, revealed on hover */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease 0.08s;
}

.bento-card:hover .bento-desc {
    max-height: 80px;
    opacity: 1;
}

/* Accent underline bar for the full-width card */
.bento-full .bento-bottom::before {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    border-radius: 2px;
    margin-bottom: 4px;
}

/* ---------------------------------------------------------
   Why Choose Radial Blue Section
   --------------------------------------------------------- */
.whyus-section {
    padding: var(--section-padding);
    background-color: var(--color-footer-bg);
    /* Deep navy #090e1f */
    position: relative;
    overflow: hidden;
}

/* Decorative soft radial glow orbs in background */
.whyus-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.whyus-glow-top {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(35, 61, 146, 0.18) 0%, transparent 68%);
}

.whyus-glow-bottom {
    width: 500px;
    height: 500px;
    bottom: -180px;
    left: -100px;
    background: radial-gradient(circle, rgba(220, 74, 84, 0.10) 0%, transparent 68%);
}

.whyus-section .container {
    position: relative;
    z-index: 1;
}

/* Override section-header colors for dark background */
.whyus-badge {
    color: var(--color-accent) !important;
}

.whyus-title {
    color: #ffffff !important;
}

.whyus-desc {
    color: rgba(203, 213, 225, 0.85) !important;
}

/* Grid: 6-column so cards 4 & 5 can be centred */
.whyus-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 56px;
}

/* Cards 1-3 span 2 cols each (fills 6/6) */
.whyus-card {
    grid-column: span 2;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.018) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

/* Top gradient accent line — reveals on hover */
.whyus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.whyus-card:hover::before {
    opacity: 1;
}

/* Decorative large faded number in background */
.whyus-card-num {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-size: 5.5rem;
    font-weight: 900;
    font-family: var(--font-family-heading);
    color: rgba(255, 255, 255, 0.035);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    transition: color 0.4s ease;
    letter-spacing: -4px;
}

.whyus-card:hover .whyus-card-num {
    color: rgba(220, 74, 84, 0.07);
}

/* Cards 4 & 5: centred in the second row */
.whyus-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.whyus-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.whyus-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.035) 100%);
    border-color: rgba(220, 74, 84, 0.32);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(220, 74, 84, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

/* Icon box — glowing coral circle */
.whyus-icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(220, 74, 84, 0.10);
    border: 1px solid rgba(220, 74, 84, 0.28);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    box-shadow: 0 0 18px rgba(220, 74, 84, 0.08);
    transition: background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.whyus-card:hover .whyus-icon-box {
    background: rgba(220, 74, 84, 0.18);
    border-color: rgba(220, 74, 84, 0.55);
    box-shadow: 0 0 28px rgba(220, 74, 84, 0.20);
}

/* Text content area */
.whyus-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whyus-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.whyus-card:hover .whyus-card-body h3 {
    color: rgba(255, 255, 255, 0.95);
}

.whyus-card-body p {
    font-size: 0.9rem;
    color: rgba(203, 213, 225, 0.70);
    line-height: 1.7;
    margin: 0;
}

/* ----- Scroll Reveal: Why Us ----- */
.whyus-section .whyus-card {
    opacity: 0;
    transform: translateY(32px);
}

.whyus-section .whyus-card:nth-child(1) {
    transition-delay: 0s;
}

.whyus-section .whyus-card:nth-child(2) {
    transition-delay: 0.1s;
}

.whyus-section .whyus-card:nth-child(3) {
    transition-delay: 0.2s;
}

.whyus-section .whyus-card:nth-child(4) {
    transition-delay: 0.3s;
}

.whyus-section .whyus-card:nth-child(5) {
    transition-delay: 0.4s;
}

.whyus-section.revealed .whyus-card {
    opacity: 1;
    transform: translateY(0);
}

/* Keep hover transform working after reveal (higher specificity) */
.whyus-section.revealed .whyus-card:hover {
    transform: translateY(-5px);
}

/* ---------------------------------------------------------
   Our Sister Concerns Section
   --------------------------------------------------------- */
.concerns-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-surface);
    position: relative;
    overflow: hidden;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 50px auto 0 auto;
}

/* Base Card Styles */
.concern-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 40px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

/* Event Craft Card (Coral Red Theme) */
.event-craft-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(220, 74, 84, 0.02) 100%);
    border: 1px solid rgba(220, 74, 84, 0.16);
    border-left: 6px solid var(--color-accent);
}

.event-craft-card:hover {
    border-color: rgba(220, 74, 84, 0.35);
    box-shadow: 0 20px 45px rgba(220, 74, 84, 0.09),
        0 4px 12px rgba(220, 74, 84, 0.03);
}

.event-craft-card .concern-name {
    color: var(--color-accent);
}

.event-craft-card .concern-icon-box {
    background: rgba(220, 74, 84, 0.08);
    border: 1px solid rgba(220, 74, 84, 0.22);
    color: var(--color-accent);
}

.event-craft-card:hover .concern-icon-box {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
}

.event-craft-card .concern-arrow {
    color: var(--color-accent);
    background-color: var(--color-accent-light);
}

.event-craft-card:hover .concern-arrow {
    background-color: var(--color-accent);
    color: #ffffff;
}

/* Travel Swish Card (Deep Blue Theme) */
.travel-swish-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(35, 61, 146, 0.02) 100%);
    border: 1px solid rgba(35, 61, 146, 0.16);
    border-left: 6px solid var(--color-primary);
}

.travel-swish-card:hover {
    border-color: rgba(35, 61, 146, 0.35);
    box-shadow: 0 20px 45px rgba(35, 61, 146, 0.09),
        0 4px 12px rgba(35, 61, 146, 0.03);
}

.travel-swish-card .concern-name {
    color: var(--color-primary);
}

.travel-swish-card .concern-icon-box {
    background: rgba(35, 61, 146, 0.08);
    border: 1px solid rgba(35, 61, 146, 0.22);
    color: var(--color-primary);
}

.travel-swish-card:hover .concern-icon-box {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.travel-swish-card .concern-arrow {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.travel-swish-card:hover .concern-arrow {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* Faded Watermarks */
.concern-watermark {
    position: absolute;
    bottom: -15px;
    right: -15px;
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.6s ease;
}

.event-craft-card .concern-watermark {
    color: var(--color-accent);
}

.travel-swish-card .concern-watermark {
    color: var(--color-primary);
}

.concern-card:hover .concern-watermark {
    opacity: 0.075;
    transform: scale(1.18) rotate(8deg);
}

/* Card Content Details */
.concern-card-left {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.concern-icon-box {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.concern-icon-box svg {
    display: block;
    width: 24px;
    height: 24px;
    transition: transform 0.35s ease;
}

.concern-card:hover .concern-icon-box svg {
    transform: scale(1.1);
}

.concern-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.concern-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
    display: inline-block;
}

.event-craft-card .concern-tag {
    color: var(--color-accent);
}

.travel-swish-card .concern-tag {
    color: var(--color-primary);
}

.concern-name {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    transition: var(--transition-fast);
}

.concern-tagline {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin: 0;
}

/* Interactive Arrow */
.concern-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    margin-left: 20px;
}

.concern-card:hover .concern-arrow {
    transform: translate(3px, -3px) scale(1.05);
}

/* ----- Scroll Reveal: Sister Concerns ----- */
.concerns-section .concern-card {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.concerns-section .concern-card:nth-child(1) {
    transition-delay: 0s;
}

.concerns-section .concern-card:nth-child(2) {
    transition-delay: 0.15s;
}

.concerns-section.revealed .concern-card {
    opacity: 1;
    transform: translateY(0);
}

.concerns-section.revealed .concern-card:hover {
    transform: translateY(-5px);
}

/* Contact Preview Section */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-site);
}

.contact-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    overflow: hidden;
}

.contact-card-info {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #ffffff;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.quick-contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: auto;
}

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

.icon-circle {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.quick-contact-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.quick-contact-item .value {
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-card-form {
    padding: 60px 48px;
    background-color: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-main);
    background-color: #ffffff;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(35, 61, 146, 0.1);
}

.submit-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    height: 52px;
}

/* ---------------------------------------------------------
   Responsive Media Queries
--------------------------------------------------------- */

@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 0;
    }

    .site-footer {
        padding-top: 60px;
    }

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

    /* Whyus: collapse 6-col to 4-col (2 cards per row on tablet) */
    .whyus-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .whyus-card {
        grid-column: span 2;
    }

    /* Reset the 4th & 5th card centering — just flow normally */
    .whyus-card:nth-child(4),
    .whyus-card:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {

    /* Header burger display */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        /* Hide desktop nav menu */
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-column {
        padding-bottom: 10px;
    }

    .footer-heading {
        margin-bottom: 16px;
    }

    .hero-container-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-title-rebuilt {
        font-size: 3rem;
        letter-spacing: -1.2px;
    }

    .hero-subtitle-rebuilt {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons-rebuilt {
        justify-content: center;
    }

    .floating-quality-card {
        left: 20px;
        bottom: -15px;
    }

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

    .about-content-col {
        order: 1;
    }

    .about-media-col {
        order: 2;
        height: 420px;
    }

    .about-image-collage {
        max-width: 380px;
        height: 340px;
    }

    .about-floating-card {
        right: -10px;
        bottom: 20px;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-card-info {
        padding: 40px 30px;
    }

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

}

@media (max-width: 1024px) {
    .services-bento {
        grid-auto-rows: 300px;
    }

    .concerns-grid {
        max-width: 100%;
        gap: 24px;
        padding: 0 20px;
    }

    .concern-card {
        padding: 32px;
    }

    .concern-name {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .bento-full {
        grid-column: span 2;
    }

    /* Always show descriptions on touch devices */
    .bento-desc {
        max-height: 80px;
        opacity: 1;
    }

    /* Hide bento tags on mobile screens */
    .bento-tag {
        display: none;
    }

    /* Hide bento-bottom:before style on mobile screens */
    .bento-full .bento-bottom::before {
        display: none;
    }

    .concerns-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 40px auto 0 auto;
    }
}

@media (max-width: 600px) {
    :root {
        --header-height: 70px;
        --header-height-scrolled: 60px;
    }

    .header-actions .cta-button {
        display: none;
        /* Hide header CTA button on small phones, show inside drawer instead */
    }

    .logo-text .brand-sub {
        display: none;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .header-logo-img {
        height: 44px;
    }

    .hero-title-rebuilt {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

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

    .hero-buttons-rebuilt .btn-primary-rebuilt,
    .hero-buttons-rebuilt .btn-secondary-rebuilt {
        width: 100%;
        text-align: center;
    }

    .about-title {
        font-size: 2rem;
    }

    .services-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .bento-wide,
    .bento-full {
        grid-column: auto;
    }

    .bento-desc {
        max-height: 80px;
        opacity: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .whyus-card,
    .whyus-card:nth-child(4),
    .whyus-card:nth-child(5) {
        grid-column: 1;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .concern-card {
        padding: 24px 28px;
    }

    .concern-name {
        font-size: 1.3rem;
    }

    .concern-tagline {
        font-size: 0.95rem;
    }

    .concern-card-left {
        gap: 16px;
    }

    .concern-icon-box {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .concern-icon-box svg {
        width: 20px;
        height: 20px;
    }

    .concern-arrow {
        width: 40px;
        height: 40px;
        margin-left: 12px;
    }
}

/* ---------------------------------------------------------
   CTA Banner Section (Advanced Premium Design & Interactive Style)
--------------------------------------------------------- */
.cta-banner-section {
    background-color: var(--color-bg-surface);
    /* Light site background to break the dark flow */
    padding: 90px 0 100px 0;
    /* Add solid padding/breathing room before the dark footer starts */
    position: relative;
}

/* Floating dark blue CTA card */
.cta-banner-card {
    background-color: #0c1533;
    /* Dark navy card matching reference banner */
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(12, 21, 51, 0.25),
        0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Background CMYK registration marks inside the card */
.cta-registration-mark {
    position: absolute;
    color: #ffffff;
    opacity: 0.04;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.cta-mark-left {
    left: -20px;
    top: -20px;
    animation: ctaSlowSpin 30s linear infinite;
}

.cta-mark-right {
    right: -20px;
    bottom: -20px;
    animation: ctaSlowSpin 30s linear infinite reverse;
}

.cta-banner-card:hover .cta-registration-mark {
    opacity: 0.12;
    transform: scale(1.15) rotate(180deg);
}

@keyframes ctaSlowSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Moving CMYK Glow Blobs contained inside the card */
.cta-banner-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
}

.cta-glow-cyan {
    width: 280px;
    height: 280px;
    background-color: rgba(35, 61, 146, 0.35);
    left: -60px;
    top: -60px;
    animation: ctaGlowDrift 16s ease-in-out infinite alternate;
}

.cta-glow-magenta {
    width: 250px;
    height: 250px;
    background-color: rgba(220, 74, 84, 0.22);
    right: -40px;
    bottom: -60px;
    animation: ctaGlowDrift 12s ease-in-out infinite alternate-reverse;
}

@keyframes ctaGlowDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 20px) scale(1.15);
    }
}

/* Premium Typography with Subtle Brand Highlight */
.cta-banner-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.8px;
    font-family: var(--font-family-heading);
    line-height: 1.25;
    position: relative;
    z-index: 2;
}

.cta-title-highlight {
    background: linear-gradient(135deg, #ffffff 10%, #ffabb1 60%, #dc4a54 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

/* Glassmorphic Capsule Layout inside the Card */
.cta-glass-capsule {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 80px;
    padding: 8px 10px;
    gap: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.cta-glass-capsule:hover {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(35, 61, 146, 0.15);
}

/* Capsule Label Styling */
.cta-label-item {
    padding: 10px 24px;
}

.cta-label {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

/* Vertical Divider in Capsule */
.cta-capsule-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.12);
    align-self: center;
}

/* Pill Links inside Capsule */
.cta-capsule-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 50px;
    color: #a5b6e5;
    /* Muted periwinkle */
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.cta-capsule-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-capsule-icon {
    color: #8fa5d8;
    transition: var(--transition-smooth);
}

.cta-capsule-link:hover .cta-capsule-icon {
    color: #ffffff;
}

/* Specific Phone Hover Sparkle styling */
.cta-phone-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Phone wiggling/ringing animation on hover */
.cta-phone-link:hover .cta-capsule-icon {
    animation: ctaPhoneRingtone 0.5s ease-in-out infinite;
}

@keyframes ctaPhoneRingtone {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(15deg);
    }

    45% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    90% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0);
    }
}

/* Specific Web link Accent color glow */
.cta-web-link:hover {
    background-color: rgba(220, 74, 84, 0.15);
    border-color: rgba(220, 74, 84, 0.3);
    box-shadow: 0 6px 20px rgba(220, 74, 84, 0.2);
}

/* Globe rotating on hover */
.cta-web-link:hover .cta-capsule-icon {
    animation: ctaGlobeRotate 4s linear infinite;
}

@keyframes ctaGlobeRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .cta-registration-mark {
        display: none;
        /* Hide registration marks on tablet and below to save space */
    }

    .cta-banner-section {
        padding: 60px 0 70px 0;
    }

    .cta-banner-card {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .cta-banner-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 550px) {
    .cta-glass-capsule {
        flex-direction: column;
        border-radius: 28px;
        padding: 20px;
        width: 100%;
        max-width: 320px;
        gap: 10px;
    }

    .cta-capsule-divider {
        display: none;
        /* Hide dividers in stack format */
    }

    .cta-label-item {
        padding: 4px 0;
    }

    .cta-capsule-link {
        width: 100%;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.06);
    }

    .cta-phone-link:hover {
        background-color: rgba(255, 255, 255, 0.07);
    }
}

@media (max-width: 480px) {
    .cta-banner-section {
        padding: 50px 0 60px 0;
    }

    .cta-banner-title {
        font-size: 1.75rem;
    }

    .cta-glass-capsule {
        padding: 16px;
    }

    .cta-capsule-link {
        font-size: 0.95rem;
        padding: 8px 16px;
    }
}

/* ---------------------------------------------------------
   Inner Page Hero Section
--------------------------------------------------------- */
.inner-hero-section {
    position: relative;
    background-color: #0c1533;
    /* Rich dark navy matching header theme */
    padding: 140px 0 80px 0;
    /* Extra top padding to clear fixed header */
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.inner-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle industrial blueprint grid overlay */
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 45px 45px;
    z-index: 1;
    pointer-events: none;
}

/* Floating colored glows inside inner hero */
.inner-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.inner-hero-glow-1 {
    width: 250px;
    height: 250px;
    background-color: rgba(35, 61, 146, 0.35);
    left: -50px;
    top: -50px;
    animation: innerGlowPulse 8s ease-in-out infinite alternate;
}

.inner-hero-glow-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(220, 74, 84, 0.2);
    right: -30px;
    bottom: -30px;
    animation: innerGlowPulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes innerGlowPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.15);
        opacity: 0.6;
    }
}

.inner-hero-container {
    position: relative;
    z-index: 2;
}

.inner-hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    font-family: var(--font-family-heading);
    line-height: 1.2;
}

.inner-hero-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--color-footer-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.inner-hero-breadcrumbs a {
    color: #8fa5d8;
    transition: var(--transition-fast);
}

.inner-hero-breadcrumbs a:hover {
    color: #ffffff;
}

.inner-hero-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

/* ---------------------------------------------------------
   Subpage: Contact Page Styles
--------------------------------------------------------- */
.contact-page-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-site);
    position: relative;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

/* Contact Detail Cards with Faint Technical Watermarks */
.contact-page-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-card {
    background-color: var(--color-bg-surface);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-border);
    display: flex;
    gap: 24px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Subtle blueprint lines background for technical print details */
.contact-info-card::before {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 100px;
    height: 100px;
    background-image:
        radial-gradient(circle at center, rgba(35, 61, 146, 0.015) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(35, 61, 146, 0.01) 8px, transparent 8px);
    background-size: 16px 16px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(23, 42, 107, 0.12),
        0 0 1px rgba(35, 61, 146, 0.1);
    border-color: rgba(35, 61, 146, 0.2);
}

.contact-info-card:hover::before {
    transform: rotate(45deg) scale(1.2);
}

/* Premium gradient icons */
.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(35, 61, 146, 0.08) 100%);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.02);
}

/* Custom theme mapping on hover */
.contact-info-card:nth-child(1):hover .contact-info-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(35, 61, 146, 0.35);
}

.contact-info-card:nth-child(2):hover .contact-info-icon {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(220, 74, 84, 0.35);
}

.contact-info-card:nth-child(3):hover .contact-info-icon {
    background: linear-gradient(135deg, #4f46e5 0%, #312e81 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
}

.contact-info-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.contact-info-content p {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.contact-info-content a {
    color: var(--color-text-muted);
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.contact-info-content a:hover {
    color: var(--color-primary);
}

/* Contact Form Wrapper (Interactive control panel style) */
.contact-page-form-wrapper {
    background-color: var(--color-bg-surface);
    border-radius: var(--border-radius-lg);
    padding: 50px 45px;
    box-shadow: 0 25px 60px -20px rgba(15, 23, 42, 0.08),
        0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

/* High-fidelity color accent stripe */
.contact-page-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent), #4f46e5);
}

.contact-form-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.contact-form-subtitle {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    margin-bottom: 35px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition-fast);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    color: var(--color-text-main);
    font-size: 0.98rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.form-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-input:hover {
    border-color: #cbd5e1;
    background-color: #f1f5f9;
}

.form-input:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(35, 61, 146, 0.08),
        0 10px 20px -10px rgba(35, 61, 146, 0.15);
}

/* Highlight label on focus */
.form-group:focus-within .form-label {
    color: var(--color-primary);
}

textarea.form-input {
    min-height: 140px;
    resize: vertical;
}

/* Submit Button Gradient & Glow */
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(35, 61, 146, 0.25);
    transition: var(--transition-smooth);
    width: 100%;
    letter-spacing: 0.3px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    box-shadow: 0 10px 25px rgba(220, 74, 84, 0.4);
    transform: translateY(-2px);
}

.submit-btn svg {
    transition: var(--transition-smooth);
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

/* Map Section Upgrade */
.contact-map-card {
    background-color: var(--color-bg-surface);
    border-radius: var(--border-radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    height: 480px;
    width: 100%;
    transition: var(--transition-smooth);
}

.contact-map-card:hover {
    border-color: rgba(35, 61, 146, 0.2);
    box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.15);
    transform: translateY(-2px);
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: calc(var(--border-radius-lg) - 12px);
}

/* Responsive queries for Inner page components */
@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .inner-hero-section {
        padding: 120px 0 60px 0;
    }

    .inner-hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 40px 0;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-page-form-wrapper {
        padding: 30px 20px;
    }

    .contact-map-card {
        height: 320px;
    }
}

/* ---------------------------------------------------------
   Entrance Animations & Slight Movements
   --------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Inner Hero page load animations */
.inner-hero-title {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.inner-hero-breadcrumbs {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

/* Contact page load scroll reveal entrance animations */
.contact-page-section .contact-info-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-page-section .contact-info-card:nth-child(1) {
    transition-delay: 0.1s;
}

.contact-page-section .contact-info-card:nth-child(2) {
    transition-delay: 0.2s;
}

.contact-page-section .contact-info-card:nth-child(3) {
    transition-delay: 0.3s;
}

.contact-page-section .contact-page-form-wrapper {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.contact-page-section.revealed .contact-info-card,
.contact-page-section.revealed .contact-page-form-wrapper {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------
   Dark Mode Override Variables
--------------------------------------------------------- */
[data-theme="dark"] {
    --color-bg-site: #070d22;
    --color-bg-surface: #0c1533;
    --color-text-main: #f8fafc;
    --color-text-muted: #cbd5e1;
    --color-text-light: #64748b;
    --color-border: rgba(255, 255, 255, 0.08);

    --color-primary-light: rgba(35, 61, 146, 0.15);
    --color-accent-light: rgba(220, 74, 84, 0.15);

    /* Neon glow colors */
    --cmyk-cyan-glow: rgba(0, 174, 239, 0.25);
    --cmyk-magenta-glow: rgba(236, 0, 140, 0.25);
    --cmyk-yellow-glow: rgba(255, 242, 0, 0.2);
}

/* Theme Toggle Button Styling */
.theme-toggle-btn {
    background: transparent;
    border: 1.5px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.theme-toggle-btn:hover {
    border-color: var(--color-primary);
    transform: rotate(15deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(35, 61, 146, 0.15);
}

/* Light / Dark display state of Sun/Moon icons */
.theme-toggle-btn .sun-icon {
    display: none;
}

.theme-toggle-btn .moon-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle-btn .sun-icon {
    display: block;
    color: #fff200;
    filter: drop-shadow(0 0 5px rgba(255, 242, 0, 0.6));
}

[data-theme="dark"] .theme-toggle-btn .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle-btn {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .theme-toggle-btn:hover {
    border-color: #00aeef;
    box-shadow: 0 0 15px rgba(0, 174, 239, 0.35);
}

/* Header dynamic adjustments for dark mode */
[data-theme="dark"] .site-header {
    background-color: rgba(7, 13, 34, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .site-header.scrolled {
    background-color: rgba(7, 13, 34, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .mobile-drawer {
    background-color: #0c1533;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .drawer-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .drawer-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .logo-text .brand-radial,
[data-theme="dark"] .drawer-close {
    color: #ffffff;
}

/* ---------------------------------------------------------
   Company Tagline Banner Section (Advanced Premium Design)
--------------------------------------------------------- */
.tagline-banner-section {
    background-color: #080d22;
    /* Slightly darker to make glowing cards pop */
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9;
}

/* Horizontal scan line representing print heads */
.tagline-laser-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 174, 239, 0.4) 20%,
            rgba(236, 0, 140, 0.4) 50%,
            rgba(255, 242, 0, 0.4) 80%,
            transparent);
    animation: taglineLaserSweep 6s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes taglineLaserSweep {
    0% {
        top: -5%;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        top: 105%;
        opacity: 0;
    }
}

.tagline-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Glass cards */
.tagline-card {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid transparent;
    /* Keep size stable for outline pseudo-element */
    border-radius: 20px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    cursor: default;
}

/* Card 1: PRINT (Cyan Accent, Blends from brand primary Deep Blue to Cyan) */
.tagline-card.card-print::before {
    content: "";
    position: absolute;
    inset: -1.5px;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(0, 174, 239, 0.8) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tagline-card.card-print .tagline-icon-holder {
    color: #00aeef;
    border-color: rgba(0, 174, 239, 0.25);
    background: rgba(0, 174, 239, 0.04);
}

.tagline-card.card-print .tagline-word {
    color: #00aeef;
    text-shadow: 0 0 15px rgba(0, 174, 239, 0.15);
}

/* Card 2: DESIGN (Magenta Accent, Blends from brand accent Coral Red to Magenta) */
.tagline-card.card-design::before {
    content: "";
    position: absolute;
    inset: -1.5px;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(236, 0, 140, 0.8) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tagline-card.card-design .tagline-icon-holder {
    color: #ec008c;
    border-color: rgba(236, 0, 140, 0.25);
    background: rgba(236, 0, 140, 0.04);
}

.tagline-card.card-design .tagline-word {
    color: #ec008c;
    text-shadow: 0 0 15px rgba(236, 0, 140, 0.15);
}

/* Card 3: DISPLAY (Yellow Accent, Blends from brand primary Deep Blue and accent Coral Red to Yellow) */
.tagline-card.card-display::before {
    content: "";
    position: absolute;
    inset: -1.5px;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, rgba(255, 242, 0, 0.8) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tagline-card.card-display .tagline-icon-holder {
    color: #fff200;
    border-color: rgba(255, 242, 0, 0.25);
    background: rgba(255, 242, 0, 0.03);
}

.tagline-card.card-display .tagline-word {
    color: #fff200;
    text-shadow: 0 0 15px rgba(255, 242, 0, 0.15);
}


.tagline-icon-holder {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.tagline-word {
    font-size: 1.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: var(--font-family-heading);
    margin: 0;
    transition: var(--transition-smooth);
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .tagline-banner-grid {
        gap: 16px;
        padding: 0 20px;
    }

    .tagline-word {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 768px) {
    .tagline-banner-section {
        padding: 50px 0;
    }

    .tagline-banner-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 16px;
        padding: 0;
    }

    .tagline-card {
        padding: 24px 20px;
        flex-direction: row;
        gap: 20px;
        justify-content: flex-start;
    }

    .tagline-word {
        font-size: 1.3rem;
    }
}

/* ---------------------------------------------------------
   Interactive CMYK Print Lab Styling
--------------------------------------------------------- */
.print-lab-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-site);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 10;
}

.print-lab-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.print-lab-console {
    width: 100%;
}

.console-card {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

[data-theme="dark"] .console-card {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-color: rgba(255, 255, 255, 0.05);
}

.console-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 30px;
    border-bottom: 1.5px solid var(--color-border);
    padding-bottom: 12px;
    letter-spacing: -0.3px;
}

.ink-sliders-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ink-slider-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slider-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ink-label {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ink-val-label {
    font-size: 0.95rem;
    font-weight: 800;
    font-family: var(--font-family-heading);
}

/* Slider Track custom colors representing cyan/magenta/yellow/black */
.ink-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    border-radius: 4px;
    outline: none;
    transition: opacity 0.2s;
}

.group-cyan .ink-slider {
    background: linear-gradient(to right, #e0f2fe, #00aeef);
}

[data-theme="dark"] .group-cyan .ink-slider {
    background: linear-gradient(to right, rgba(0, 174, 239, 0.1), #00aeef);
}

.group-cyan .ink-label,
.group-cyan .ink-val-label {
    color: #00aeef;
}

.group-magenta .ink-slider {
    background: linear-gradient(to right, #fce7f3, #ec008c);
}

[data-theme="dark"] .group-magenta .ink-slider {
    background: linear-gradient(to right, rgba(236, 0, 140, 0.1), #ec008c);
}

.group-magenta .ink-label,
.group-magenta .ink-val-label {
    color: #ec008c;
}

.group-yellow .ink-slider {
    background: linear-gradient(to right, #fef9c3, #e5cb00);
}

[data-theme="dark"] .group-yellow .ink-slider {
    background: linear-gradient(to right, rgba(255, 242, 0, 0.1), #fff200);
}

.group-yellow .ink-label,
.group-yellow .ink-val-label {
    color: #bca600;
}

[data-theme="dark"] .group-yellow .ink-label,
[data-theme="dark"] .group-yellow .ink-val-label {
    color: #fff200;
}

.group-black .ink-slider {
    background: linear-gradient(to right, #f1f5f9, #0f172a);
}

[data-theme="dark"] .group-black .ink-slider {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), #ffffff);
}

.group-black .ink-label,
.group-black .ink-val-label {
    color: var(--color-text-muted);
}

/* Slider Thumb custom styling */
.ink-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: 2.5px solid #ffffff;
    transition: transform 0.15s ease;
}

.group-cyan .ink-slider::-webkit-slider-thumb {
    background-color: #00aeef;
}

.group-magenta .ink-slider::-webkit-slider-thumb {
    background-color: #ec008c;
}

.group-yellow .ink-slider::-webkit-slider-thumb {
    background-color: #e5cb00;
}

[data-theme="dark"] .group-yellow .ink-slider::-webkit-slider-thumb {
    background-color: #fff200;
}

.group-black .ink-slider::-webkit-slider-thumb {
    background-color: #0f172a;
}

[data-theme="dark"] .group-black .ink-slider::-webkit-slider-thumb {
    background-color: #ffffff;
}

.ink-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.console-options {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.toggle-control-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-label-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-main);
}

/* Halftone toggle switch styling */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: var(--color-border);
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked+.toggle-slider {
    background-color: var(--color-primary);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(20px);
}

.console-presets {
    margin-top: 28px;
}

.presets-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.preset-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.preset-chip {
    background-color: var(--color-bg-site);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.preset-chip:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.preset-chip.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(35, 61, 146, 0.2);
}

[data-theme="dark"] .preset-chip {
    background-color: rgba(255, 255, 255, 0.01);
}

[data-theme="dark"] .preset-chip:hover {
    border-color: #00aeef;
    background-color: rgba(0, 174, 239, 0.08);
}

[data-theme="dark"] .preset-chip.active {
    background-color: #00aeef;
    border-color: #00aeef;
    color: #070d22;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.35);
}

.console-status-box {
    margin-top: 30px;
    border-radius: var(--border-radius-md);
    background-color: var(--color-bg-site);
    border: 1px solid var(--color-border);
    padding: 20px;
    transition: var(--transition-smooth);
}

.status-gauge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.status-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.status-value {
    font-size: 1.05rem;
    font-weight: 800;
}

.status-progress-bar {
    width: 100%;
    height: 6px;
    background-color: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.status-progress-fill {
    height: 100%;
    background: linear-gradient(to right, #10b981, #f59e0b, #ef4444);
    transition: width 0.3s ease;
}

.status-msg {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.console-status-box.alert-warning {
    border-color: rgba(245, 158, 11, 0.35);
    background-color: rgba(245, 158, 11, 0.05);
}

.console-status-box.alert-warning .status-value {
    color: #d97706;
}

.console-status-box.alert-warning .status-msg {
    color: #b45309;
}

.console-status-box.alert-danger {
    border-color: rgba(239, 68, 68, 0.35);
    background-color: rgba(239, 68, 68, 0.05);
}

.console-status-box.alert-danger .status-value {
    color: #dc2626;
}

.console-status-box.alert-danger .status-msg {
    color: #b91c1c;
}

/* Visualizer bed styling */
.print-lab-visualizer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.press-bed {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1/1;
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .press-bed {
    background-color: #0c1533;
    border-color: rgba(255, 255, 255, 0.08);
}

.press-layers-container {
    width: 100%;
    height: 100%;
    position: relative;
    transition: filter 0.3s ease;
}

.press-plate {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.press-svg {
    width: 100%;
    height: 100%;
}

/* Mix blend modes overlays: CMYK ink chemistry logic */
.press-layers-container {
    background-color: #ffffff;
}

.plate-cyan {
    mix-blend-mode: multiply;
}

.plate-magenta {
    mix-blend-mode: multiply;
}

.plate-yellow {
    mix-blend-mode: multiply;
}

.plate-black {
    mix-blend-mode: multiply;
}

[data-theme="dark"] .press-layers-container {
    background-color: #070d22;
}

/* Mix Blend mode screen logic for dark screen display overlays */
[data-theme="dark"] .plate-cyan {
    mix-blend-mode: screen;
}

[data-theme="dark"] .plate-magenta {
    mix-blend-mode: screen;
}

[data-theme="dark"] .plate-yellow {
    mix-blend-mode: screen;
}

[data-theme="dark"] .plate-black {
    mix-blend-mode: screen;
}

/* Halftone Screen print dot simulated filter override */
.press-layers-container.halftone-active {
    filter: contrast(120%) brightness(95%);
    background-image:
        radial-gradient(circle at center, rgba(0, 0, 0, 0.15) 1.2px, transparent 1.2px);
    background-size: 8px 8px;
}

[data-theme="dark"] .press-layers-container.halftone-active {
    filter: contrast(140%) brightness(110%);
    background-image:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px);
    background-size: 8px 8px;
}

/* Responsive print lab */
@media (max-width: 992px) {
    .print-lab-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .press-bed {
        max-width: 380px;
    }
}

@media (max-width: 576px) {
    .console-card {
        padding: 24px;
    }

    .console-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .preset-chips {
        gap: 6px;
    }

    .preset-chip {
        padding: 5px 10px;
        font-size: 0.72rem;
    }
}

/* ---------------------------------------------------------
   Card Cursor spotlight hover styling
--------------------------------------------------------- */
.bento-card,
.whyus-card,
.concern-card {
    position: relative;
}

.bento-card::after,
.whyus-card::after,
.concern-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
            rgba(35, 61, 146, 0.05),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: inherit;
}

[data-theme="dark"] .bento-card::after,
[data-theme="dark"] .whyus-card::after,
[data-theme="dark"] .concern-card::after {
    background: radial-gradient(600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
            rgba(0, 174, 239, 0.12),
            transparent 40%);
}

.bento-card:hover::after,
.whyus-card:hover::after,
.concern-card:hover::after {
    opacity: 1;
}

/* ---------------------------------------------------------
   Interactive Glassmorphic inputs focus glow styles
--------------------------------------------------------- */
.form-group {
    position: relative;
}

.form-input {
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

/* CMYK focus color mapping dynamically */
.contact-page-form .form-group:nth-of-type(1) .form-input:focus {
    border-color: #00aeef;
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

.contact-page-form .form-group:nth-of-type(2) .form-input:focus {
    border-color: #ec008c;
    box-shadow: 0 0 0 4px rgba(236, 0, 140, 0.12);
}

.contact-page-form .form-group:nth-of-type(3) .form-input:focus {
    border-color: #e5cb00;
    box-shadow: 0 0 0 4px rgba(255, 242, 0, 0.1);
}

[data-theme="dark"] .form-input {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

[data-theme="dark"] .form-input:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .form-input:focus {
    background-color: rgba(7, 13, 34, 0.5);
}

/* Rebuilt About Floating Card overlaying the images */
.about-floating-card-rebuilt {
    position: absolute;
    bottom: 30px;
    right: -25px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius-md);
    padding: 16px 24px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08),
        0 4px 10px rgba(15, 23, 42, 0.03);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    animation: floatBadgeAbout 5s ease-in-out infinite;
}

[data-theme="dark"] .about-floating-card-rebuilt {
    background: rgba(12, 21, 51, 0.75);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

@keyframes floatBadgeAbout {

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

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

.calibration-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(35, 61, 146, 0.08) 0%, rgba(220, 74, 84, 0.08) 100%);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[data-theme="dark"] .calibration-icon-box {
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.15) 0%, rgba(236, 0, 140, 0.15) 100%);
    color: #00aeef;
}

.calibration-icon {
    animation: calibrationSpin 8s linear infinite;
}

@keyframes calibrationSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.stat-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.stat-number-accent {
    font-size: 1.85rem;
    font-weight: 800;
    font-family: var(--font-family-heading);
    background: linear-gradient(135deg, var(--color-primary) 30%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

[data-theme="dark"] .stat-number-accent {
    background: linear-gradient(135deg, #00aeef 20%, #ec008c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label-accent {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ---------------------------------------------------------
   Contact Form Status Messages & Spinner Transitions
   --------------------------------------------------------- */
.form-status-message {
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.5;
    animation: statusFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-status-message.success {
    background-color: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.form-status-message.error {
    background-color: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

[data-theme="dark"] .form-status-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.35);
    color: #34d399;
}

[data-theme="dark"] .form-status-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.35);
    color: #f87171;
}

@keyframes statusFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}