/* =========================================================================
   SSV Global - Professional Main Stylesheet (Nested Mobile Navigation)
   ========================================================================= */

/* 1. RESET & BASE
   ------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-gradient: linear-gradient(135deg, #D4AF37 0%, #AA801E 100%);
    --primary-color: #B89332;
    --primary-light: rgba(184, 147, 50, 0.08);
    --text-dark: #1A1A1D;
    --text-muted: #6B6B70;
    --bg-light: #F9F9FB;
    --container-padding: 30px;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

html, body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding-top: 160px; /* Increased to ensure content starts below floating header */
    line-height: 1.8;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none !important;
    text-align: left;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Lora', serif;
}

/* =========================================================================
   FLUID TYPOGRAPHY ENGINE (Universally Responsive For All Devices)
   Using clamp(MIN, VAL, MAX) to smoothly scale fonts from Mobile to 4K
   ========================================================================= */
.display-1 { font-size: clamp(2.8rem, 6vw + 1rem, 6rem) !important; }
.display-2 { font-size: clamp(2.5rem, 5vw + 1rem, 5.5rem) !important; }
.display-3 { font-size: clamp(2.2rem, 4.5vw + 1rem, 4.5rem) !important; line-height: 1.2; }
.display-4 { font-size: clamp(1.8rem, 3.5vw + 1rem, 3.5rem) !important; line-height: 1.2; }
.display-5 { font-size: clamp(1.5rem, 2.5vw + 1rem, 3rem) !important; }
.display-6 { font-size: clamp(1.2rem, 2vw + 1rem, 2.5rem) !important; }
/* Universal Responsive Typography */
p { 
    max-width: 800px; /* Enhanced scope for readability */
    margin-left: 0;
    margin-right: auto;
    word-wrap: normal; 
    overflow-wrap: normal; 
    word-break: normal;
    hyphens: none !important;
    line-height: 1.8; /* Optimized breathing room */
    letter-spacing: 0.2px;
    text-align: left !important;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Mobile Alignment Support */
@media (max-width: 991px) {
    p {
        text-align: left !important;
        max-width: 100%;
        line-height: 1.7; /* Slightly tighter for mobile */
    }
}

li { 
    max-width: 100%; 
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-light);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(184, 147, 50, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 2. LAYOUT
   ------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

section {
    padding: 100px 0;
    width: 100%;
}

/* Common Utility Classes */
.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-7 { padding-top: 7rem !important; padding-bottom: 7rem !important; }
.shadow-xl { box-shadow: 0 40px 80px rgba(0,0,0,0.12) !important; }

/* Premium Trust Cards */
.trust-card-premium {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 30px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}
.trust-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}
.trust-icon-premium {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}



/* Page Header Centering (Global) */
.page-header {
    padding: 140px 0 80px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}


/* =========================================================================
   3. NAVIGATION (Modern Floating Pill Navbar)
   ========================================================================= */
.navbar {
    position: fixed !important;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1300px;
    z-index: 10000;
    background: #ffffff !important;
    border-radius: 100px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    padding: 10px 40px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.02) !important;
}

.navbar.scrolled {
    top: 10px;
    width: 98%;
    padding: 6px 35px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.navbar-brand img {
    height: 65px; 
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    top: 10px;
    background: #fff !important;
    padding: 6px 35px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled .navbar-brand img {
    height: 55px;
}

.navbar-nav .nav-link {
    font-weight: 600; /* Bolder for visibility */
    color: var(--text-dark) !important;
    margin: 0 18px;
    font-size: 0.98rem;
    padding: 0 !important; /* Let bar centering handle it */
    position: relative;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -10px; /* Move indicator below text */
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

/* Mega Menu (Desktop) */
.dropdown-menu.mega-menu {
    position: absolute;
    top: 100%;
    left: 50% !important;
    transform: translateX(-50%) translateY(20px);
    width: 650px;
    max-width: 95vw;
    background: #fff;
    border: none;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-smooth);
    display: block;
}

.nav-item.dropdown:hover .mega-menu,
.dropdown-menu.mega-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-header {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0 0 15px 12px;
}

.dropdown-item {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 10px 15px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* 4. MOBILE NAVIGATION (Nested Accordion)
   ------------------------------------------------------------------------- */
@media (max-width: 991px) {
    body { padding-top: 95px !important; } /* Ultra-tight padding for premium content visibility */
    
    .navbar {
        width: auto !important;
        left: 15px;
        right: 15px;
        border-radius: 25px;
        top: 15px;
        padding: 8px 20px !important;
    }



    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        margin-top: 15px;
        border-radius: 24px;
        padding: 20px 15px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        margin: 2px 0;
        border-radius: 12px;
    }

    .navbar-nav .nav-link:hover {
        background: var(--primary-light);
    }

    .navbar-nav .nav-link::after { display: none; }

    .nav-item.dropdown {
        position: static !important;
    }

    /* Fix the overall Mega Menu container for mobile */
    .dropdown-menu.mega-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: none; 
        margin: 5px 0 0 0 !important;
        padding: 10px 0 !important;
        border-radius: 12px !important;
    }

    .dropdown-menu.mega-menu.show {
        display: block !important;
    }

    /* Nested Mobile Layout Styling */
    .mega-menu-column {
        padding: 0;
        border: none !important;
    }

    .mega-menu-group {
        margin-bottom: 5px;
    }

    .mobile-toggle {
        padding: 15px 20px !important;
        cursor: pointer;
        transition: var(--transition-smooth);
        border-radius: 12px;
        background: rgba(0,0,0,0.02);
        margin: 5px 12px;
        user-select: none;
        color: var(--text-dark) !important;
        pointer-events: auto !important;
        display: flex !important;
    }

    .mobile-toggle:hover {
        background: var(--primary-light);
        color: var(--primary-color) !important;
    }

    .mobile-toggle i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .mega-menu-group.active .mobile-toggle {
        color: var(--primary-color) !important;
        background: var(--primary-light);
    }

    .mega-menu-group.active .mobile-toggle i {
        transform: rotate(180deg);
    }

    /* Expanding Sub-list */
    .mega-menu-list {
        max-height: 0px;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-left: 15px;
        border-left: 2px solid rgba(184, 147, 50, 0.15);
        margin-left: 15px;
        margin-bottom: 5px;
    }

    .mega-menu-list .dropdown-item {
        margin: 2px 0;
        padding: 10px 15px;
        font-size: 0.95rem;
        border-radius: 8px;
        border-bottom: 1px solid rgba(0,0,0,0.03);
        background: transparent;
    }

    .mega-menu-list .dropdown-item:last-child {
        border-bottom: none;
    }
}

/* 5. HERO & COMPONENTS
   ------------------------------------------------------------------------- */
.hero-section {
    padding: clamp(60px, 12vh, 150px) 0;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0f0f12 0%, #1a1a1d 100%) !important; /* Premium Dark Charcoal Gradient */
    overflow: hidden;
}

/* Premium Aurora Animation System */
.aurora-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
}

.aurora-blob {
    position: absolute;
    width: 40%;
    height: 60%;
    border-radius: 50%;
}

.aurora-1 {
    background: radial-gradient(circle, rgba(184, 147, 50, 0.4) 0%, rgba(184, 147, 50, 0) 70%);
    top: -10%; left: -10%;
    animation: auroraMove1 15s ease-in-out infinite alternate;
}

.aurora-2 {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0) 70%);
    bottom: -20%; right: -10%;
    animation: auroraMove2 20s ease-in-out infinite alternate;
}

.aurora-3 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: 40%; left: 50%;
    animation: auroraMove3 18s ease-in-out infinite alternate;
}

@keyframes auroraMove1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20%, 30%) scale(1.2); }
}

@keyframes auroraMove2 {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(-30%, -20%) scale(0.9); }
}

@keyframes auroraMove3 {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-20%, 10%) scale(1.3); }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px !important;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    color: #ffffff; /* Switched to white for high contrast on dark bg */
    text-align: center;
}

.hero-title .text-bold {
    font-weight: 800; /* Extra bold for the "scalable" parts */
}

.hero-title .text-gold {
    color: var(--primary-color);
}

.reveal-item {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 5px;
}

/* Maintain compatibility with previous reveal system but simplify for the new style */
.hero-title .reveal-line {
    display: block;
    overflow: visible; /* Allow spans to wrap naturally if needed */
    line-height: 1.3;
}

/* Premium Reveal Animation System */
.reveal-line {
    display: block;
    overflow: hidden;
    line-height: 1.25;
}

.reveal-inner {
    display: block;
    transform: translateY(110%);
    opacity: 0;
    animation: revealUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.reveal-line:nth-child(1) .reveal-inner { animation-delay: 0.2s; }
.reveal-line:nth-child(2) .reveal-inner { animation-delay: 0.4s; }
.reveal-line:nth-child(3) .reveal-inner { animation-delay: 0.6s; }

.highlight-gold {
    background: linear-gradient(135deg, #B89332 0%, #AA801E 50%, #B89332 100%);
    -webkit-background-clip: text;
    background-clip: text; /* Added standard property to fix lint */
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: goldShimmer 5s linear infinite;
}

@keyframes revealUp {
    0% { transform: translateY(110%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.reveal-item-fade {
    opacity: 0;
    animation: fadeInSlide 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeInSlide {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.2vw + 0.4rem, 1.15rem) !important;
    color: rgba(255, 255, 255, 0.7); /* Light grey for contrast */
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px; /* Increased for centered layout */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .hero-subtitle {
        text-align: left;
        max-width: 100%;
    }
}

/* Refined Reveal Animation */
.premium-text-reveal .reveal-line {
    margin-bottom: 0.15em;
}

.premium-text-reveal .reveal-inner {
    display: inline-block;
    background: linear-gradient(to bottom, #111 0%, #333 100%);
    -webkit-background-clip: text;
    background-clip: text; /* Added standard property */
    -webkit-text-fill-color: transparent;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(184, 147, 50, 0.12) 0%, rgba(255,255,255,0) 75%);
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 50%;
    animation: pulseBlob 8s ease-in-out infinite;
}

@keyframes pulseBlob {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
}

.hero-main-img {
    border-radius: 40px; 
    width: 100%; 
    height: auto;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    animation: heroFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes heroFloat {
    0% {
        transform: translateY(0);
        box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    }
    50% {
        transform: translateY(-15px);
        box-shadow: 0 45px 80px rgba(184, 147, 50, 0.25);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    }
}

/* Premium Floating Badge for Hero Image */
.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.2rem 2.2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 10;
    animation: floatBadge 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 18px;
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.icon-round {
    background: linear-gradient(135deg, #FFDF73 0%, #AA801E 100%) !important;
    color: #fff !important;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(184, 147, 50, 0.3);
}

@media (max-width: 991px) {
    .floating-badge {
        left: 20px;
        bottom: -20px;
        padding: 1rem 1.5rem;
    }
}

/* Highly Animated Glossy Buttons */
.btn-primary-custom, 
.btn-outline-custom {
    position: relative;
    overflow: hidden;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1;
}

/* Primary Button - Sleek Solid Gold (Based on Image) */
.btn-primary-custom {
    background: #ebc763 !important; /* Elegant gold from image */
    color: #ffffff !important;
    padding: 0.85rem 2.2rem !important;
    border-radius: 100px !important;
    box-shadow: 0 10px 25px rgba(235, 199, 99, 0.3) !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.btn-primary-custom:hover {
    background: #d4b358 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 179, 88, 0.4) !important;
}

/* Secondary Button - Dark Charcoal Gradient */
.btn-outline-custom {
    background: linear-gradient(135deg, #3a3a3d 0%, #1A1A1D 40%, #0d0d0f 100%);
    background-size: 200% auto;
    color: #fff !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25), inset 0 2px 3px rgba(255,255,255,0.15);
}

.btn-outline-custom:hover {
    background-position: right center; /* Animate gradient */
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4), inset 0 2px 3px rgba(255,255,255,0.25);
    color: var(--primary-color) !important;
}

/* The Glossy Shine Swoosh Animation */
.btn-primary-custom::before, 
.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-primary-custom:hover::before, 
.btn-outline-custom:hover::before {
    left: 200%;
}

.trust-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 28px;
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    text-align: center;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
    .hero-title { 
        font-size: 36px !important; /* Slightly smaller for tablets */
        letter-spacing: -1px; 
        line-height: 1.2;
    }
    .hero-subtitle { font-size: 1rem; }
}

@media (max-width: 767px) {
    h1, .display-3, .hero-title { 
        font-size: 24px !important; /* Reduced for better mobile fit */
        line-height: 1.2;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle { 
        font-size: 0.9rem; 
        margin-bottom: 25px;
        line-height: 1.5;
        opacity: 0.9;
    }
    .reveal-item {
        letter-spacing: 2px;
        font-size: 0.65rem !important;
        margin-bottom: 4px;
    }
}

@media (max-width: 360px) {
    .hero-title { 
        font-size: 21px !important; /* Even smaller for very narrow devices like iPhone SE */
    }
    .hero-subtitle {
        font-size: 0.85rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        margin-left: -5px; /* Visual optical alignment */
    }
}



/* 6. PORTFOLIO
   ------------------------------------------------------------------------- */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    height: 100%;
    min-height: 300px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.portfolio-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.portfolio-name {
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Lora', serif;
}

.portfolio-item-sm {
    height: 300px;
}

@media (max-width: 991px) {
    .portfolio-item {
        min-height: 250px;
    }
}

@media (max-width: 767px) {
    .portfolio-overlay {
        padding: 20px;
    }
    .portfolio-name {
        font-size: 1.25rem;
    }
    .portfolio-item-sm {
        height: 250px;
    }
}

/* Portfolio Filters Redesign - Premium Slider */
.portfolio-filters {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding: 10px 0;
    transition: var(--transition-smooth);
}

.filter-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.06) !important;
    color: var(--text-dark) !important;
    background: #fff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    white-space: nowrap;
}

.filter-btn:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    box-shadow: 0 12px 25px rgba(184, 147, 50, 0.15);
}

.filter-btn.active {
    background: var(--text-dark);
    color: #fff !important;
    border-color: var(--text-dark);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
    .portfolio-filters {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding: 15px 10px !important;
        gap: 12px;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 20px !important;
        padding-right: 20px !important;
        scrollbar-width: none;
        position: relative;
        mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 15px, black calc(100% - 15px), transparent);
    }

    .portfolio-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        padding: 10px 24px !important;
        font-size: 0.88rem !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.04) !important;
    }
}

/* 7. BRAND MARQUEE (Redesigned)
   ------------------------------------------------------------------------- */
.brand-section-container {
    padding: 60px 0;
}

.brand-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    display: flex;
}

.brand-marquee-wrapper::before,
.brand-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, rgba(249, 249, 251, 0) 100%);
}

.brand-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, rgba(249, 249, 251, 0) 100%);
}

.brand-marquee-track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
    padding-left: 50px;
}

.brand-marquee-track:hover {
    animation-play-state: paused;
}

.brand-heading {
    font-size: clamp(0.9rem, 2.5vw, 1.4rem) !important;
    margin-bottom: 30px !important;
}

.brand-item {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #cbd0d8;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: default;
    white-space: nowrap;
}

/* Premium Typographic Variety (All Uppercase) */
.brand-item:nth-child(4n+1) { font-weight: 900; letter-spacing: -1px; } 
.brand-item:nth-child(4n+2) { font-weight: 400; letter-spacing: 6px; } 
.brand-item:nth-child(4n+3) { font-weight: 800; font-style: italic; color: #e57373; opacity: 0.8; } 
.brand-item:nth-child(4n+4) { font-weight: 300; letter-spacing: 3px; } 

/* Interactive Hover Lighting */
.brand-item:hover {
    color: var(--primary-color) !important;
    opacity: 1 !important;
    transform: scale(1.15) translateY(-5px);
    text-shadow: 0 10px 20px rgba(184, 147, 50, 0.25);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

@media (max-width: 991px) {
    .brand-marquee-wrapper::before, .brand-marquee-wrapper::after { width: 150px; }
    .brand-marquee-track { gap: 60px; animation-duration: 25s; }
    .brand-item { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .brand-marquee-wrapper::before, .brand-marquee-wrapper::after { width: 80px; }
    .brand-marquee-track { gap: 40px; padding-left: 20px; }
    .brand-item { font-size: 1.25rem; }
    @keyframes scrollMarquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
}

/* 8. PREMIUM TRUST CARDS (Why Partner With Us)
   ------------------------------------------------------------------------- */
.trust-card-premium {
    position: relative;
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid rgba(184, 147, 50, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    text-align: left;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    overflow: hidden;
    z-index: 1;
}

.trust-card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(184, 147, 50, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.trust-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(184, 147, 50, 0.08);
    border-color: rgba(184, 147, 50, 0.3);
}

.trust-card-premium:hover::before {
    opacity: 1;
}

.trust-icon-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255,255,255,1) 100%);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(184, 147, 50, 0.1);
    transition: all 0.4s ease;
}

.trust-card-premium:hover .trust-icon-premium {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 25px rgba(184, 147, 50, 0.3);
}

.icon-bg-watermark {
    position: absolute;
    bottom: -15%;
    right: -10%;
    font-size: 10rem;
    color: var(--primary-light);
    opacity: 0.3;
    z-index: -2;
    transform: rotate(-15deg);
    transition: all 0.6s ease;
}

.trust-card-premium:hover .icon-bg-watermark {
    color: var(--primary-color);
    opacity: 0.05;
    transform: rotate(0deg) scale(1.1);
}

/* 9. PREMIUM FOOTER
   ------------------------------------------------------------------------- */
.premium-footer {
    background: #111113;
    background-image: radial-gradient(circle at top right, rgba(184, 147, 50, 0.08) 0%, transparent 40%),
                      radial-gradient(circle at bottom left, rgba(184, 147, 50, 0.04) 0%, transparent 40%);
    color: #fff;
    padding-top: 150px;
    padding-bottom: 30px;
    margin-top: 150px;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 60px;
    position: absolute;
    top: -90px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.footer-logo-text {
    font-family: 'Lora', serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.footer-desc {
    color: #8c8c91;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(184, 147, 50, 0.3);
    color: #fff;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--primary-color);
}

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

.footer-links a {
    color: #8c8c91;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    margin-right: 0px;
    color: var(--primary-color);
    font-size: 0.8rem;
    width: 0;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(8px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
    margin-right: 8px;
    width: 10px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.fc-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(184, 147, 50, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    border: 1px solid rgba(184, 147, 50, 0.2);
}

.fc-text {
    color: #cfcfd1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.fc-text a {
    color: #cfcfd1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fc-text a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #6a6a6f;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .premium-footer { margin-top: 200px; padding-top: 200px; }
    .footer-cta-card { top: -140px; padding: 40px 30px; text-align: center; }
    .footer-cta-card .text-lg-end { text-align: center !important; margin-top: 30px; }
}

/* 10. HERO Animated Background Mesh
   ------------------------------------------------------------------------- */
.hero-bg-mesh {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: flowMesh 15s infinite alternate ease-in-out;
    opacity: 0.7;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(184, 147, 50, 0.15); /* Primary Gold */
    top: -10%;
    left: -15%;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 700px;
    height: 700px;
    background: rgba(160, 160, 165, 0.1); /* Subtle Silver/Grey */
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
    animation-direction: alternate-reverse;
}

.hero-blob-3 {
    width: 500px;
    height: 500px;
    background: rgba(184, 147, 50, 0.08); /* Lighter Gold */
    top: 30%;
    left: 40%;
    animation-duration: 25s;
    animation-delay: -10s;
}

/* Subtle Grid/Dot Pattern Overlay (Optional extra texture) */
.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0,0,0,0.03) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}

@keyframes flowMesh {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(60px, -60px) scale(1.15) rotate(20deg); }
    66% { transform: translate(-40px, 90px) scale(0.85) rotate(-15deg); }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

/* =========================================================================
   UI/UX FLUID & RESPONSIVE FIXES (End-To-End Checks)
   ========================================================================= */

/* Handle Desktop Default Heights previously dictated by inline styles */
@media (min-width: 992px) {
    .qa-img-wrapper { height: 550px; }
    .service-img-wrapper-tall { height: 650px; }
    .service-img-wrapper-normal { height: 500px; }
}

/* Tablet Overrides */
@media (max-width: 991px) {
    section {
        padding: 70px 0 !important; /* Overrides aggressive 100px inline paddings */
    }
    .service-img-wrapper, 
    .qa-img-wrapper,
    .service-img-wrapper-tall,
    .service-img-wrapper-normal {
        height: 350px !important; /* Force scaled height to preserve UI layout */
    }
}

/* Mobile Overrides */
@media (max-width: 576px) {
    section {
        padding: 50px 0 !important;
    }
    .service-img-wrapper, 
    .qa-img-wrapper,
    .service-img-wrapper-tall,
    .service-img-wrapper-normal {
        height: 250px !important;
    }
    /* Prevent title blowouts */
    h2 { word-break: break-word; font-size: calc(1.5rem + 1vw); }
}

/* Base Component Classes */
/* 11. PREMIUM SERVICE CARDS
   ------------------------------------------------------------------------- */
.service-card-item {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 40px; /* More rounded for premium feel */
    border: 1px solid rgba(184, 147, 50, 0.05); /* Very subtle gold border */
    display: flex;
    flex-direction: column; /* Stacked look for better focus */
    align-items: flex-start;
    gap: 25px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); /* Very soft base shadow */
    position: relative;
    overflow: hidden;
}

.service-card-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 0;
    background: var(--primary-color);
    transition: all 0.5s ease;
}

.service-card-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.06);
    border-color: rgba(184, 147, 50, 0.2);
}

.service-card-item:hover::before {
    height: 100%;
}

.sc-icon {
    background: linear-gradient(135deg, rgba(184, 147, 50, 0.08) 0%, rgba(184, 147, 50, 0.02) 100%);
    width: 75px;
    height: 75px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-card-item:hover .sc-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg);
}

.service-card-title {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* --- SEO ARTICLE CONTENT STYLING --- */
.article-style h2 {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.article-style h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.article-style p {
    margin-bottom: 1.5rem;
    color: #444;
}

.article-style strong {
    color: var(--text-dark);
    font-weight: 700;
}

.article-style h2:first-child {
    margin-top: 0;
}

.sticky-top {
    transition: all 0.3s ease;
}

.service-card-link i {
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    letter-spacing: 1.5px;
}

.service-card-link:hover i {
    transform: translateX(8px);
}

.footer-cta-title {
    font-family: 'Lora', serif; 
    font-size: 2.2rem; 
    letter-spacing: -0.5px;
}
.footer-cta-subtitle {
    font-size: 1.1rem;
}

/* Mobile Overrides Refinement */
@media (max-width: 991.98px) {
    /* Navbar fixed top, non-floating, full width to save space */
    /* Ultra-Slim Mobile Header with Maximized Logo Icon */
    .navbar {
        width: 96% !important;
        top: 12px !important;
        left: 2% !important;
        margin: 0 auto !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        padding: 0 18px !important;
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
        border: 1px solid rgba(184, 147, 50, 0.15) !important;
        position: fixed !important;
        height: 70px !important;
        min-height: 70px !important;
        display: flex !important;
        align-items: center !important;
        overflow: visible !important;
        z-index: 10000 !important;
    }
    
    .navbar-toggler {
        border: none !important;
        padding: 0 !important;
        width: 42px !important;
        height: 42px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(184, 147, 50, 0.05) !important;
        border-radius: 12px !important;
        outline: none !important;
        transition: all 0.3s ease !important;
    }
    
    .navbar-toggler-icon {
        width: 22px !important;
        height: 22px !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23B89332' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h14M4 23h22'/%3e%3c/svg%3e") !important;
    }
    
    .navbar-brand {
        margin-right: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        height: auto !important;
        transform: translateY(-5px) !important; /* Elevated for premium alignment */
    }

    .navbar-brand img {
        height: 55px !important; 
        width: auto !important;
        display: block !important;
        filter: drop-shadow(0 4px 10px rgba(0,0,0,0.05));
        position: relative;
        z-index: 10001;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Reduce spacing for a more compact and mobile-first experience */
    .hero-section {
        padding-top: 150px !important;
        padding-bottom: 80px !important;
        text-align: center !important;
    }
    
    .hero-title {
        text-align: center !important;
        font-size: 28px !important;
        line-height: 1.25 !important;
        margin-bottom: 20px !important;
    }

    .hero-subtitle {
        text-align: center !important;
        margin: 0 auto 35px !important;
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        opacity: 0.85;
    }

    .hero-btns {
        justify-content: center !important;
        gap: 15px !important;
    }
    
    .hero-main-img {
        max-width: 90% !important;
        margin: 40px auto 0 !important;
        display: block !important;
        border-radius: 30px !important;
    }


    /* Removed conflicting padding-top rule to allow main mobile padding to take effect */
    
    /* Service Cards (Column wrap and smaller padding for screen space) */
    .service-card-item {
        padding: 25px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .service-card-item .sc-icon {
        margin-bottom: 5px;
    }

    /* Fix Footer CTA Card text wrap & cut off issue */
    .footer-cta-card {
        width: calc(100% - 30px) !important;
        max-width: none !important;
        left: 15px !important;
        right: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 35px 25px !important;
        white-space: normal !important;
        box-sizing: border-box !important;
        background: #1A1A1D !important;
        background-image: radial-gradient(circle at top right, rgba(184, 147, 50, 0.15) 0%, transparent 80%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1px solid rgba(184, 147, 50, 0.4) !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    }

    .footer-cta-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        word-wrap: break-word !important;
        white-space: normal !important;
    }
    
    .footer-cta-subtitle {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    /* Paragraph Spacing Mobile Fixes */
    p {
        text-align: left !important;
        line-height: 1.5 !important;
    }

    /* Removed obsolete filter scroll fix that targeted old HTML structure */
    /* Redesign ALL Button Sizes (Mobile) */
    .btn, .btn-primary-custom, a.btn-primary-custom, button.btn-primary-custom,
    .btn-outline-custom, a.btn-outline-custom {
        padding: 0.8rem 2.2rem !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        border-radius: 100px !important;
        white-space: nowrap !important;
        letter-spacing: 0.8px !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center !important;
        width: 100% !important; /* Full width buttons on mobile for better touch target */
        max-width: 320px !important;
        margin: 0 auto;
        text-decoration: none !important;
        text-transform: uppercase !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
    }

    .hero-btns {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    .floating-badge {
        display: flex !important;
        left: 50% !important;
        bottom: -20px !important;
        transform: translateX(-50%) !important;
        width: 280px !important;
        padding: 1rem 1.5rem !important;
        background: #ffffff !important;
        border-radius: 20px !important;
        box-shadow: 0 15px 45px rgba(0,0,0,0.12) !important;
        border: 1px solid rgba(184, 147, 50, 0.25) !important;
        z-index: 100 !important;
        animation: floatBadgeMobile 4s ease-in-out infinite !important;
    }

    /* Professional Mobile Typography Overhaul */
    h1, .hero-title {
        font-size: 32px !important;
        font-weight: 800 !important;
        letter-spacing: -1px !important;
        line-height: 1.15 !important;
    }

    h2 {
        font-size: 26px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
    }

    p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        color: var(--text-muted) !important;
    }

    .section-title-wrap {
        text-align: center !important;
        margin-bottom: 40px !important;
    }

    /* Strategic Partnership Card Mobile Fixes */
    .partnership-card {
        padding: 35px 25px !important;
        border-radius: 30px !important;
    }

    .model-icon-box {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.2rem !important;
    }

    /* Production Lifecycle Mobile Fixes */
    .lifecycle-premium-wrap {
        padding: 40px 20px !important;
        border-radius: 35px !important;
    }

    /* Trust Card Premium Mobile Fixes */
    .trust-card-premium {
        padding: 35px 25px !important;
        border-radius: 25px !important;
        text-align: center !important;
    }

    .trust-icon-premium {
        margin: 0 auto 20px !important;
    }

    /* Footer Mobile Professionalism */
    .premium-footer {
        padding-top: 180px !important;
        margin-top: 120px !important;
    }

    .footer-cta-card {
        top: -120px !important;
    }

    .footer-heading {
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .footer-heading::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .footer-links, .footer-contact {
        text-align: center !important;
    }

    .footer-contact li {
        justify-content: center !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
    }

    .footer-socials {
        justify-content: center !important;
        margin-bottom: 30px !important;
    }
}


/* Specific Tablet Grid Fix for Services */
@media (min-width: 768px) and (max-width: 991px) {
    .row.g-4 > .col-md-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
}

