:root {
    --primary-navy: #0F172A;
    --secondary-slate: #334155;
    --accent-gold: #C2410C;
    --accent-glow: rgba(194, 65, 12, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --heading-font: 'Outfit', sans-serif;
    --body-font: 'Inter', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--secondary-slate);
    overflow-x: hidden;
    background-color: #F8FAFC;
}

h1,
h2,
h3,
h4,
.navbar-brand {
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.topbar {
    background-color: #0F172A;
    /* Deep Navy */
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    font-size: 0.85rem;
}

.topbar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.topbar a:hover {
    color: var(--accent-gold);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: #FFFFFF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand,
.nav-link {
    color: #0F172A !important;
    font-weight: 600;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

.hero-section {
    position: relative;
    background: #0F172A;
    /* Deep Navy Hero */
    color: white;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

.hero-shape-bg {
    position: absolute;
    top: 0;
    bottom: -5%;
    left: 20%;
    right: -10%;
    background: var(--accent-gold);
    z-index: -1;
    border-radius: 30px;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    border-color: var(--accent-gold);
}

.fixmate-uniform-patch {
    position: absolute;
    top: 40%;
    left: 35%;
    background: #0F172A;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    border: 2px solid var(--accent-gold);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transform: rotate(-5deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 4;
    pointer-events: none;
}

.support-card {
    position: absolute;
    top: 25%;
    right: -20px;
    background: #1E293B;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: float 4s ease-in-out infinite;
}

.support-card i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    transition: all 0.4s ease;
    color: #334155;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.05);
}

.feature-card-icon {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.btn-accent {
    background-color: var(--accent-gold);
    color: #0F172A;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-accent:hover {
    background-color: #9A3412;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(194, 65, 12, 0.3);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.bg-accent-gold {
    background-color: var(--accent-gold) !important;
}

.bg-accent-gold-light {
    background-color: rgba(194, 65, 12, 0.1) !important;
}

.text-accent-gold {
    color: var(--accent-gold) !important;
}

.hover-accent:hover {
    color: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
}

.btn-primary {
    background: var(--accent-gold);
    color: #0F172A !important;
    border: none;
    padding: 16px 36px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--accent-glow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: #9A3412;
    box-shadow: 0 12px 35px var(--accent-glow);
}

.service-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    border-color: var(--accent-gold);
    background: #fff;
    color: inherit;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-gold) !important;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    display: inline-block;
}

/* Unified Service Card */
.unified-service-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.unified-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
    border-color: var(--accent-gold);
}

.unified-service-card .icon-circle {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border: 1px dashed var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.unified-service-card:hover .icon-circle {
    background: var(--accent-gold);
    border-style: solid;
    transform: scale(1.1) rotate(10deg);
}

.unified-service-card:hover .icon-circle i {
    color: white !important;
}

.unified-service-card .service-image-header {
    margin: -40px -40px 30px -40px;
    height: 200px;
    overflow: hidden;
}

.unified-service-card .service-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.unified-service-card:hover .service-image-header img {
    transform: scale(1.1);
}

.unified-service-card h4,
.unified-service-card h3 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 1rem;
}

.unified-service-card p {
    color: var(--secondary-slate);
    flex-grow: 1;
    line-height: 1.6;
}

.unified-service-card .service-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Industrial Overrides */
.text-primary {
    color: var(--accent-gold) !important;
}

.bg-primary {
    background-color: var(--accent-gold) !important;
}

.btn-outline-primary {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline-primary:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #0F172A;
}

.bg-light {
    background-color: #f1f5f9 !important;
}

.text-accent-gold {
    color: var(--accent-gold) !important;
}

/* Floating Action Button - Scroll To Top */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px var(--accent-glow);
    color: #fff;
    background-color: var(--primary-navy);
}

.floating-btn i {
    font-size: 1.2rem;
}

/* Pulse Animation for CTA Attraction */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(194, 65, 12, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(194, 65, 12, 0);
    }
}

.pulse-btn {
    animation: pulse-animation 2s infinite;
}

.footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.6);
    padding: 100px 0 40px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(-5deg);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {

    .whatsapp-float,
    .floating-btn {
        bottom: 85px !important;
        /* Stay above mobile CTA bar */
    }

    .whatsapp-float {
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .floating-btn {
        right: 20px;
    }

    body {
        padding-bottom: 70px;
        /* Space for CTA bar */
    }
}

/* Footer Additional Components */
.social-icon-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(194, 65, 12, 0.3);
    border-color: transparent;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

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

.text-navy {
    color: #0F172A !important;
}

/* Home Page Highlights */
.highlight-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.highlight-item:hover {
    background: rgba(0, 0, 0, 0.03) !important;
}

.highlight-icon {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Home Page Service Cards */
.service-card-modern {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.service-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    border-color: var(--accent-gold);
}

.service-card-modern .icon-box {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(194, 65, 12, 0.2);
}

.service-card-modern:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
    background: #0F172A;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
}

.service-card-modern h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.service-card-modern:hover h4 {
    color: var(--accent-gold);
}

.service-card-modern p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.btn-modern-book {
    background: #0F172A;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-card-modern:hover .btn-modern-book {
    background: var(--accent-gold);
    transform: scale(1.05);
}

.service-card-modern .btn-modern-book {
    margin-top: 10px;
}

/* Animated badge */
.service-card-modern::after {
    content: 'Recommended';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
}

.service-card-modern:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(194, 65, 12, 0.05);
    color: var(--accent-gold);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-button {
    color: #0F172A;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    color: var(--accent-gold);
}

/* Multi-step Form */
.step-container {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.step-container.active {
    display: block;
}

.step-indicator {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.step-progress {
    height: 100%;
    background: var(--accent-gold);
    width: 33.33%;
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Custom Radio Card */
.custom-radio-card input:checked+label {
    background-color: var(--accent-gold);
    color: white !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 4px 10px rgba(194, 65, 12, 0.3);
}

.custom-radio-card label {
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.custom-radio-card label:hover {
    border-color: var(--accent-gold) !important;
    background-color: rgba(194, 65, 12, 0.05);
}

.cursor-pointer {
    cursor: pointer;
}

/* --- Extracted Page Specific Styles --- */

/* Services Page */
.unified-service-card:hover .service-image-header img {
    transform: scale(1.1);
}
.unified-service-card {
    transition: all 0.4s ease;
}
.unified-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1) !important;
}

/* Portfolio Page */
.filter-btn {
    background-color: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    font-weight: 600;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    background-color: rgba(15, 23, 42, 0.05);
}
.filter-btn.active {
    background-color: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
    box-shadow: 0 4px 10px rgba(15,23,42,0.2);
}

.result-card {
    cursor: crosshair;
}
.portfolio-img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.result-card:hover .portfolio-img {
    transform: scale(1.1);
    opacity: 0.5;
}
.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.result-card:hover .portfolio-overlay {
    opacity: 1;
}
/* Portfolio icon animation */
.result-card .icon-circle {
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.result-card:hover .icon-circle {
    transform: translateY(0);
}

/* About Page */
.about-value-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.about-value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.15);
    border-color: var(--accent-gold);
}
.about-value-card .icon-box {
    width: 80px;
    height: 80px;
    background: #0F172A;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}
.about-value-card:hover .icon-box {
    transform: rotate(15deg) scale(1.15);
    background: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(194, 65, 12, 0.4);
}
.about-value-card h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 25px;
}
.about-value-card p {
    color: #64748B;
    line-height: 1.9;
    margin-bottom: 0;
}
.shadow-2xl {
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.5);
}
.pulse-animation-badge {
    animation: about-pulse 4s infinite;
}
@keyframes about-pulse {
    0% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(194, 65, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0); }
}

/* Common Layout Helpers */
.hero-overlay-dark {
    background: linear-gradient(180deg, #0F172A 0%, rgba(15, 23, 42, 0.6) 100%);
}
.bg-deep-navy {
    background-color: #0F172A !important;
}
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Page Specific Helper Classes */
.hero-section-welcome {
    background: #0F172A;
    padding-top: 140px;
    padding-bottom: 100px;
}
.hero-overlay-welcome {
    background: linear-gradient(90deg, #0F172A 10%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}
.hero-img-bg {
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
}
.hero-container-rel {
    z-index: 2;
}
.hero-heading-welcome {
    letter-spacing: -2px;
    line-height: 1.1;
}
.hero-text-welcome {
    max-width: 500px;
}
.masonry-grid-container {
    grid-template-columns: 1fr 1fr;
    z-index: 1;
}
.masonry-img-sm {
    height: 220px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}
.masonry-img-lg {
    height: 280px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}
.badge-fixed-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15,23,42,0.9);
    backdrop-filter: blur(8px);
    border: 2px solid var(--accent-gold);
    z-index: 2;
    white-space: nowrap;
}
.glass-card-hero-overlay {
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    bottom: -94px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    z-index: 3;
}

/* About Story Sections */
.story-hero {
    background: #0F172A;
    padding-top: 140px;
    padding-bottom: 100px;
}
.story-hero-overlay {
    background: linear-gradient(180deg, #0F172A 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
}
.story-hero-text {
    max-width: 700px;
}
.bg-light-accent-shape {
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(194, 65, 12, 0.03);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}
.story-tech-img-overlay {
    top: 10%;
    left: -60px;
    width: 300px;
    z-index: 2;
}
.story-main-img {
    min-height: 600px;
    object-fit: cover;
}
.story-badge-floating {
    bottom: -30px;
    right: 40px;
    border: 2px solid var(--accent-gold);
    width: 220px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

/* Structural & Decorative Utility Classes */
.section-clean-bg {
    background: #F8FAFC;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
}
.ls-md {
    letter-spacing: 2px;
}
.accent-divider {
    width: 80px;
    height: 5px;
    background: var(--accent-gold);
    border-radius: 5px;
}
.decorative-border-offset {
    border: 3px solid var(--accent-gold) !important;
    top: -30px;
    bottom: 30px;
    left: -30px;
    right: 30px;
    z-index: 0;
    border-radius: 1rem;
}
.experience-badge-home {
    z-index: 4;
    min-width: 180px;
    transform: translate(20px, 20px);
}
.bg-navy-03 {
    background: rgba(15, 23, 42, 0.03);
    border-left: 5px solid var(--accent-gold);
}
.google-logo-sm {
    width: 30px;
    margin-right: 15px;
}
.quote-icon-bg {
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.1;
}
.avatar-md {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}
.text-truncate-sm {
    max-width: 150px;
}
.connector-line {
    left: 29px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    border-left: 2px dashed rgba(0,0,0,0.1);
}
.step-number-circle {
    width: 60px;
    height: 60px;
    z-index: 2;
}
.cta-overlay-welcome {
    background: linear-gradient(90deg, rgba(11, 17, 33, 0.95) 0%, rgba(11, 17, 33, 0.8) 100%);
    z-index: 0;
}
.cta-card-border {
    border: 1px solid rgba(194, 65, 12, 0.2);
}
.modal-glass-blue {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}
.object-fit-cover-fixed {
    object-fit: cover;
    background-attachment: fixed;
}
.max-w-600 {
    max-width: 600px;
}
.section-clean-bg-top {
    background: #F8FAFC;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.glass-overlay-bottom {
    background: linear-gradient(0deg, rgba(15,23,42,0.4) 0%, transparent 100%);
}