/* ============================================
   CLICKSEMRUS - Digital Marketing Agency
   Premium Modern Design System
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #D4A843;
    --primary-dark: #B8922E;
    --primary-light: #E8C55A;
    --secondary: #C9A227;
    --secondary-dark: #A88B1F;
    --accent: #D4A843;
    --accent-dark: #B8922E;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --gray-100: #F5F5F0;
    --gray-200: #E8E6E0;
    --gray-300: #D0CEC8;
    --gray-400: #8A8880;
    --gray-500: #5C5A54;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #D4A843 0%, #F5D060 50%, #C9A227 100%);
    --gradient-2: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
    --gradient-3: linear-gradient(135deg, #E8C55A 0%, #D4A843 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #111111 100%);
    --shadow-sm: 0 2px 8px rgba(212, 168, 67, 0.08);
    --shadow-md: 0 8px 30px rgba(212, 168, 67, 0.12);
    --shadow-lg: 0 20px 60px rgba(212, 168, 67, 0.15);
    --shadow-xl: 0 30px 80px rgba(212, 168, 67, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-primary: 'DM Sans', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-primary);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ---------- Preloader ---------- */
/* ---------- Premium Preloader ---------- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #050505;
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}
#preloader.loaded {
    opacity: 0; visibility: hidden;
    pointer-events: none;
}

/* Floating gold particles */
.preload-particles {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; pointer-events: none;
}
.preload-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    30% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-200px) scale(1.5); }
}

/* Content */
.preload-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Icon */
.preload-icon {
    width: 70px; height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #D4A843 0%, #F5D060 50%, #C9A227 100%);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: #0A0A0A;
    animation: iconPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(212,168,67,0.3), 0 0 80px rgba(212,168,67,0.1);
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(212,168,67,0.3); }
    50% { transform: scale(1.08); box-shadow: 0 0 60px rgba(212,168,67,0.5), 0 0 100px rgba(212,168,67,0.2); }
}

/* Brand name */
.preload-brand {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 28px;
}
.preload-click {
    color: #fff;
    opacity: 0;
    animation: letterReveal 0.6s ease forwards 0.3s;
}
.preload-semrus {
    color: var(--primary);
    opacity: 0;
    animation: letterReveal 0.6s ease forwards 0.6s;
}
@keyframes letterReveal {
    0% { opacity: 0; transform: translateY(15px); filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Progress line */
.preload-line {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    margin: 0 auto 18px;
    overflow: hidden;
}
.preload-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #F5D060);
    border-radius: 10px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(212,168,67,0.5);
}

/* Tagline */
.preload-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    animation: letterReveal 0.5s ease forwards 0.9s;
}

/* ---------- Utility Classes ---------- */
.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-2 {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .badge-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn-gradient {
    background: var(--gradient-1);
    color: var(--white) !important;
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}
.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--gradient-3);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}
.btn-gradient:hover::before { opacity: 1; }
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white) !important;
}

.btn-outline-gradient {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-gradient:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: var(--white);
    color: var(--primary) !important;
    border: none;
    padding: 14px 35px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: var(--primary) !important;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar-left {
    display: flex;
    gap: 25px;
}
.top-bar-left a, .top-bar-left span {
    color: var(--gray-300);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.top-bar-left a:hover { color: var(--primary); }
.top-bar-left i { color: var(--primary-light); font-size: 0.8rem; }
.top-bar-right {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}
.top-bar-right a {
    color: var(--gray-400);
    font-size: 0.9rem;
}
.top-bar-right a:hover { color: var(--primary); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.navbar {
    background: var(--white);
    padding: 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
}
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.navbar > .container {
    padding-top: 12px;
    padding-bottom: 12px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
}
.brand-icon {
    width: 44px; height: 44px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    border: 2px solid var(--primary);
}
.brand-text { color: var(--dark); position: relative; }

/* Typewriter Logo Animation */
.typewriter-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typewrite 2s steps(10) 1s forwards;
}
.typewriter-cursor {
    display: inline-block;
    color: var(--primary);
    font-weight: 400;
    animation: blink 0.7s step-end infinite;
    margin-left: -2px;
}
@keyframes typewrite {
    0% { width: 0; }
    100% { width: 100%; }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Nav Links */
.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    padding: 8px 18px !important;
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 18px; right: 18px;
    width: auto; height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

/* Custom hamburger */
.navbar-toggler { border: none; padding: 8px; outline: none !important; box-shadow: none !important; }
.toggler-bar {
    display: block;
    width: 24px; height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav Right (Phone + CTA) */
.nav-right {
    gap: 20px;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}
.nav-phone:hover { color: var(--primary); }
.phone-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}
.phone-text small {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}
.phone-text strong {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.2;
}
.btn-nav {
    padding: 10px 24px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- Mega Menu ---------- */
.mega-dropdown { position: static; }

/* Open mega menu on HOVER (desktop) */
@media (min-width: 992px) {
    .mega-dropdown:hover > .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .mega-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }
    .mega-dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
}

.mega-menu {
    border: none;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 0;
    width: 100%;
    left: 0; right: 0;
    margin-top: 0 !important;
    border-top: 3px solid var(--primary);
}
@keyframes megaFade {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
.mega-menu-inner {
    padding: 30px;
}
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid transparent;
}
.mega-item:hover {
    background: var(--gray-100);
    border-color: var(--gray-200);
    transform: translateY(-2px);
}
.mega-icon {
    width: 48px; height: 48px;
    background: var(--dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.mega-item:hover .mega-icon {
    background: var(--primary);
    color: var(--dark);
}
.mega-text h6 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}
.mega-text p {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.4;
}
.mega-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}
.mega-cta-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--dark);
    padding: 18px 25px;
    border-radius: var(--radius-md);
    color: var(--white);
}
.mega-cta-inner > i {
    font-size: 1.5rem;
    color: var(--primary);
}
.mega-cta-inner h6 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--white);
}
.mega-cta-inner p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--gray-400);
}
.mega-cta-inner .btn {
    margin-left: auto;
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 8px 20px;
}

/* Old dropdown - keep for backward compat */
.dropdown-menu-modern {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 12px;
    min-width: 260px;
}

/* ---------- Old Hero Section (removed - using hero-main now) ---------- */

/* ---------- Clients/Partners Marquee ---------- */
.clients-section {
    padding: 40px 0;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.clients-section p {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}
.marquee-wrapper {
    overflow: hidden;
    position: relative;
}
.marquee-wrapper::before, .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px; height: 100%;
    z-index: 2;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-100), transparent);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-100), transparent);
}
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-track .client-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-300);
    font-family: var(--font-display);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: var(--transition);
}
.marquee-track .client-logo:hover { opacity: 1; color: var(--primary); }
.marquee-track .client-logo i { font-size: 1.8rem; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Services Section ---------- */
.services-section {
    background: var(--white);
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-icon {
    width: 80px; height: 80px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}
.service-icon.purple { background: rgba(212, 168, 67, 0.1); color: var(--primary); }
.service-icon.orange { background: rgba(212, 168, 67, 0.1); color: var(--secondary); }
.service-icon.green { background: rgba(212, 168, 67, 0.1); color: var(--primary); }
.service-icon.blue { background: rgba(212, 168, 67, 0.1); color: var(--primary); }
.service-icon.pink { background: rgba(212, 168, 67, 0.1); color: var(--primary); }
.service-icon.yellow { background: rgba(212, 168, 67, 0.1); color: var(--primary); }

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}
.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.service-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.service-card .service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}
.service-card .service-link i {
    transition: transform 0.3s;
}
.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ---------- About / Why Choose Us ---------- */
.about-section { background: var(--gray-100); }
.about-image-wrapper {
    position: relative;
}
.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-image-wrapper .experience-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.experience-badge h3 { font-size: 2.5rem; margin: 0; }
.experience-badge p { font-size: 0.85rem; margin: 0; opacity: 0.9; }
.about-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-content p { color: var(--gray-500); margin-bottom: 20px; }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}
.feature-list li .check-icon {
    width: 24px; height: 24px;
    background: rgba(212, 168, 67, 0.15);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---------- Stats / Counter ---------- */
.stats-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(212, 168, 67, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 67, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 30px;
}
.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 5px;
}
.stat-item .stat-number span { color: var(--primary); }
.stat-item .stat-label {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 500;
}
.stat-item .stat-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 10px;
}

/* ---------- Process / How We Work ---------- */
.process-section { background: var(--white); }
.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 45px; right: -50%;
    width: 100%; height: 2px;
    background: var(--gray-200);
}
.process-step:last-child::after { display: none; }
.process-number {
    width: 90px; height: 90px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.3);
}
.process-step h4 { font-size: 1.2rem; margin-bottom: 10px; }
.process-step p { color: var(--gray-500); font-size: 0.9rem; }

/* ---------- Testimonials ---------- */
.testimonials-section {
    background: var(--gray-100);
    overflow: hidden;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.testimonial-stars {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 15px;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}
.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-section h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
}
.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Portfolio ---------- */
.portfolio-section { background: var(--white); }
.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--dark);
    height: 350px;
    transition: var(--transition);
}
.portfolio-card .portfolio-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.8;
}
.portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
    opacity: 0.3;
}
.portfolio-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; padding: 30px;
    background: linear-gradient(transparent, rgba(15,15,26,0.95));
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}
.portfolio-overlay .portfolio-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-1);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.portfolio-overlay h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.portfolio-overlay p {
    color: var(--gray-400);
    font-size: 0.85rem;
}

/* ---------- Blog ---------- */
.blog-section { background: var(--gray-100); }
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.blog-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.blog-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}
.blog-card-body {
    padding: 25px;
}
.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--gray-400);
}
.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card h4 a:hover { color: var(--primary); }
.blog-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 15px;
}
.blog-card .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.blog-card:hover .read-more i { transform: translateX(5px); }
.blog-card .read-more i { transition: transform 0.3s; }

/* ---------- Page Header / Banner ---------- */
.page-header {
    background: var(--dark);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-header .hero-grid {
    opacity: 0.3;
}
.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}
.page-header p {
    font-size: 1.15rem;
    color: var(--gray-400);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto 20px;
}
.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
}
.breadcrumb-custom li {
    color: var(--gray-400);
    font-size: 0.9rem;
}
.breadcrumb-custom li a { color: var(--primary-light); }
.breadcrumb-custom li + li::before {
    content: '/';
    margin-right: 10px;
    color: var(--gray-500);
}

/* ---------- Contact Form ---------- */
.contact-section { background: var(--white); }
.contact-form .form-control, .contact-form .form-select {
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-100);
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
    background: var(--white);
}
.contact-form textarea.form-control { min-height: 150px; }
.contact-info-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    height: 100%;
}
.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.contact-info-item .ci-icon {
    width: 50px; height: 50px;
    background: rgba(212, 168, 67, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-item h5 { font-size: 1rem; margin-bottom: 5px; }
.contact-info-item p, .contact-info-item a {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}
.contact-info-item a:hover { color: var(--primary); }

/* ---------- Service Detail Page ---------- */
.service-detail-section { background: var(--white); }
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}
.sf-card {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 25px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.sf-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-5px);
}
.sf-card .sf-icon {
    width: 50px; height: 50px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.sf-card h5 { font-size: 1.1rem; margin-bottom: 8px; }
.sf-card p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.pricing-card.featured {
    border-color: var(--primary);
    position: relative;
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.pricing-card.featured:hover { transform: scale(1.05) translateY(-5px); }
.pricing-card h4 { font-size: 1.3rem; margin-bottom: 10px; }
.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}
.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-400);
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 0.9rem;
}
.pricing-card ul li:last-child { border: none; }
.pricing-card ul li i {
    color: var(--primary);
    margin-right: 8px;
}

/* ---------- Team Section ---------- */
.team-card {
    text-align: center;
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-10px); }
.team-avatar {
    width: 150px; height: 150px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}
.team-card h5 { font-size: 1.15rem; margin-bottom: 5px; }
.team-card span { color: var(--primary); font-size: 0.9rem; font-weight: 500; }
.team-card .team-social {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.team-card .team-social a {
    width: 35px; height: 35px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: var(--transition);
}
.team-card .team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--gray-100); }
.accordion-item {
    border: 1px solid var(--gray-200) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.accordion-button {
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 1.05rem;
    padding: 18px 25px;
    background: var(--white);
}
.accordion-button:not(.collapsed) {
    background: rgba(212, 168, 67, 0.04);
    color: var(--primary);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1); }
.accordion-body {
    color: var(--gray-500);
    line-height: 1.8;
}

/* ---------- Footer ---------- */
.footer { background: var(--dark); }
.footer-cta {
    position: relative;
    margin-top: -60px;
    padding: 0 0 60px;
}
.cta-box {
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    padding: 50px;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-box h2 { color: var(--white); font-size: 2rem; }
.cta-box p { color: rgba(255,255,255,0.8); margin: 0; font-size: 1.05rem; }

.footer-main { padding: 60px 0 40px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
}
.footer-logo .brand-icon {
    width: 40px; height: 40px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo span span { color: var(--primary-light); }
.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9rem;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--gradient-1);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-links a::before {
    content: '';
    width: 0; height: 2px;
    background: var(--primary-light);
    transition: width 0.3s;
}
.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}
.footer-links a:hover::before { width: 10px; }

.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray-400);
    font-size: 0.9rem;
}
.footer-contact li i {
    color: var(--primary-light);
    font-size: 1rem;
    margin-top: 3px;
}
.footer-contact li a {
    color: var(--gray-400);
}
.footer-contact li a:hover { color: var(--primary); }

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 10px;
}
.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--white);
    font-size: 0.85rem;
    outline: none;
}
.newsletter-form input::placeholder { color: var(--gray-500); }
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form button {
    padding: 10px 18px;
    background: var(--gradient-1);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-form button:hover { opacity: 0.9; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
}
.footer-bottom p { color: var(--gray-500); font-size: 0.85rem; margin: 0; }
.footer-bottom a {
    color: var(--gray-400);
    font-size: 0.85rem;
}
.footer-bottom a:hover { color: var(--primary-light); }

/* ---------- WhatsApp & Back to Top ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse-whatsapp 2s infinite;
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.back-to-top {
    position: fixed;
    bottom: 30px; left: 30px;
    width: 45px; height: 45px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
    transform: translateY(-3px);
    color: var(--white);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
    .section-header h2 { font-size: 2.4rem; }
}
@media (max-width: 991px) {
    .section-padding { padding: 70px 0; }
    .process-step::after { display: none; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-5px); }
    .cta-box { padding: 35px; }
    .service-features-grid { grid-template-columns: 1fr; }
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
    }
    .mega-menu-grid { grid-template-columns: 1fr; }
    .mega-menu-inner { padding: 15px; }
    .mega-item { padding: 12px; }
    .mega-cta-inner { flex-wrap: wrap; }
    .mega-cta-inner .btn { margin-left: 0; margin-top: 10px; width: 100%; }
    .nav-link { text-transform: none; letter-spacing: 0; }
}
@media (max-width: 767px) {
    .section-header h2 { font-size: 2rem; }
    .stat-item .stat-number { font-size: 2.5rem; }
    .page-header h1 { font-size: 2.2rem; }
    .page-header { padding: 120px 0 60px; }
    .cta-box { padding: 25px; }
    .cta-box h2 { font-size: 1.5rem; }
    .footer-cta { margin-top: -40px; }
}
@media (max-width: 575px) {
    .section-header h2 { font-size: 1.6rem; }
}

/* ---------- Industries Section ---------- */
.industry-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}
.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.industry-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}
.industry-card h5 { font-size: 1rem; }

/* ---------- About Page Timeline ---------- */
.timeline {
    position: relative;
    padding: 30px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 3px;
    background: var(--gray-200);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 2;
    top: 25px;
}
.timeline-year {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; padding-left: 50px; }
    .timeline-content { width: 100%; }
    .timeline-dot { left: 20px; }
}

/* ---------- Swiper Customization ---------- */
.swiper-pagination-bullet {
    background: var(--primary);
    width: 10px; height: 10px;
}
.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
}

/* ---------- Particle / Decoration ---------- */
.decoration-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.1;
}

/* ---------- Values Section ---------- */
.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.value-card .value-icon {
    width: 70px; height: 70px;
    background: rgba(212, 168, 67, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 20px;
}
.value-card h5 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

/* ---------- Blog Detail ---------- */
.blog-detail-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-500);
}
.blog-detail-content h2, .blog-detail-content h3 {
    color: var(--dark);
    margin: 30px 0 15px;
}
.blog-detail-content p { margin-bottom: 20px; }
.blog-detail-content ul, .blog-detail-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.blog-detail-content li { margin-bottom: 8px; }

/* Tag */
.tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(212, 168, 67, 0.08);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* ---------- Loading animation on scroll ---------- */
/* ============================================
   DIGIONTOP-STYLE HOMEPAGE
   ============================================ */

/* -- Gold Text -- */
.gold-text { color: var(--primary); }

/* -- Section Common -- */
.section-top { text-align: center; margin-bottom: 50px; }
.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(212,168,67,0.1);
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.section-tag.gold { background: rgba(212,168,67,0.15); border-color: var(--primary); }
.section-top.light .section-tag { background: rgba(212,168,67,0.15); }
.section-title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 550px;
    margin: 0 auto;
}

/* -- Buttons -- */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--dark) !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-xl);
    border: none;
    transition: var(--transition);
    text-decoration: none;
}
.btn-main:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,168,67,0.3);
    color: var(--dark) !important;
}
.btn-outline-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    text-decoration: none;
}
.btn-outline-main:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: rgba(212,168,67,0.05);
}

/* ============ CLIENT RESULTS ============ */
/* ============ CASE STUDIES — PREMIUM ============ */
.cs-section {
    padding: 100px 0 80px;
    background: #fff;
}
.cs-header {
    text-align: center;
    margin-bottom: 50px;
}
.cs-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.cs-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.cs-title span { color: var(--primary); font-style: italic; }
.cs-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

/* Grid */
.cs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 50px;
}

/* Card */
.cs-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.cs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Visual */
.cs-card-visual {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.cs-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}
.cs-card:hover .cs-card-visual img {
    transform: scale(1.05);
}
.cs-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.cs-client-info strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}
.cs-client-info span {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* Quote */
.cs-card-quote { padding: 20px 24px 0; }
.cs-card-quote p {
    background: linear-gradient(135deg, #FFF8E7, #FFF3D0);
    border-left: 4px solid var(--primary);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Stats */
.cs-card-stats {
    display: flex;
    padding: 24px 24px 0;
}
.cs-stat {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    border: 1px solid #eee;
}
.cs-stat:first-child { border-radius: 10px 0 0 10px; }
.cs-stat:last-child { border-radius: 0 10px 10px 0; }
.cs-stat h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}
.cs-stat span {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Desc */
.cs-card-desc { padding: 20px 24px 0; }
.cs-card-desc p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* Link */
.cs-card-link {
    display: inline-block;
    padding: 20px 24px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
}
.cs-card-link:hover { color: var(--dark); }
.cs-card-link i { transition: transform 0.3s; }
.cs-card-link:hover i { transform: translateX(4px); }

/* Bottom CTA */
.cs-bottom { text-align: center; margin-top: 10px; }

/* Responsive */
@media (max-width: 991px) {
    .cs-grid { grid-template-columns: 1fr; gap: 28px; }
    .cs-title { font-size: 2.1rem; }
}
@media (max-width: 575px) {
    .cs-section { padding: 60px 0; }
    .cs-title { font-size: 1.7rem; }
    .cs-card-visual { height: 240px; }
    .cs-stat h3 { font-size: 1.5rem; }
}

/* ============ HERO ============ */
.hero-main {
    position: relative;
    background: var(--dark);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 60px 0 50px;
    overflow: hidden;
    min-height: 0;
}
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(95deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.2) 65%, transparent 85%);
}
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: transparent;
    border: 1.5px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 25px;
}
.hero-badge-pill i { font-size: 0.85rem; }
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    font-family: var(--font-display);
    white-space: nowrap;
}
.hero-subtitle {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.45;
}
.hero-desc {
    font-size: 0.92rem;
    color: rgba(200,200,200,0.8);
    margin-bottom: 30px;
    max-width: 460px;
    line-height: 1.75;
}
.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

/* Hero Buttons - exact screenshot style */
.btn-hero-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    background: var(--primary);
    color: var(--dark) !important;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}
.btn-hero-gold:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,168,67,0.35);
    color: var(--dark) !important;
}
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    background: transparent;
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.4);
    text-decoration: none;
    transition: var(--transition);
}
.btn-hero-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
    color: var(--white) !important;
}
.btn-arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}
.btn-hero-gold .btn-arrow { background: rgba(0,0,0,0.15); }

/* Hero Stats Row with Icons - exact match */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
}
.hero-stat-box {
    text-align: center;
    padding: 0 30px;
}
.stat-icon-circle {
    width: 55px; height: 55px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin: 0 auto 12px;
}
.hero-stat-box h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 0 2px;
    font-family: var(--font-display);
}
.hero-stat-box p {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin: 0;
}
.hero-stat-divider {
    width: 1px;
    height: 90px;
    background: rgba(255,255,255,0.12);
    margin: 0 5px;
    flex-shrink: 0;
    align-self: center;
}

/* ============ SERVICES SECTION (premium design) ============ */
.sv-section {
    position: relative;
    padding: 0;
    background: var(--white);
    overflow: hidden;
}
.sv-overlay {
    padding: 80px 6% 50px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
}
.sv-overlay-left {
    flex: 1;
    min-width: 0;
}
.sv-overlay-right {
    flex: 0 0 45%;
    max-width: 45%;
    overflow: hidden;
}
.sv-overlay-right img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 991px) {
    .sv-overlay { flex-direction: column; }
    .sv-overlay-right { flex: 0 0 100%; max-width: 100%; }
}
.sv-main-heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin: 0 0 18px;
}
.sv-main-heading span {
    color: var(--primary);
    font-style: italic;
}
.sv-main-sub {
    font-size: 17px;
    color: #777;
    margin: 0 0 18px;
}
.sv-main-line {
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 3px;
}
.sv-image-wrap {
    text-align: center;
    line-height: 0;
}
.sv-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
.sv-section .sv-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}
.sv-section .sv-header-left {
    flex: 1;
    min-width: 300px;
}
.sv-section .sv-header-img {
    flex: 0 0 45%;
    max-width: 45%;
}
.sv-section .sv-header-img img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}
.sv-section::before {
    content: "";
    position: absolute;
    width: 500px; height: 500px;
    border: 1px solid rgba(212,168,67,0.12);
    border-radius: 50%;
    right: -250px; top: 50px;
}
.sv-section::after {
    content: "";
    position: absolute;
    width: 300px; height: 300px;
    border: 1px solid rgba(212,168,67,0.08);
    border-radius: 50%;
    left: -180px; bottom: 0;
}

/* Header */
.sv-header {
    position: relative; z-index: 2;
    max-width: 900px;
    margin-bottom: 55px;
}
.sv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.sv-eyebrow::after {
    content: "";
    width: 45px; height: 2px;
    background: var(--primary);
}
.sv-header h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 900;
    font-family: var(--font-display);
}
.sv-header h2 span { color: var(--primary); }
.sv-header p {
    margin-top: 22px;
    color: #777;
    font-size: 18px;
}

/* Grid */
.sv-grid {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.sv-card {
    position: relative;
    min-height: 340px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 28px;
    background: linear-gradient(145deg, #ffffff, #fafafa);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.45s ease, border-color 0.45s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--dark);
    display: flex;
    flex-direction: column;
}
.sv-card:hover {
    transform: translateY(-14px);
    border-color: var(--primary);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12), 0 0 35px rgba(212,168,67,0.12);
    color: var(--dark);
}

/* Gold top line */
.sv-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    transition: width 0.5s ease;
}
.sv-card:hover::before { width: 100%; }

/* Number */
.sv-num {
    position: absolute;
    top: 22px; right: 25px;
    font-size: 13px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1px;
    font-family: var(--font-display);
}

/* Icon */
.sv-icon {
    width: 70px; height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
    background: var(--dark);
    color: var(--primary);
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.16);
    transition: 0.45s ease;
}
.sv-card:hover .sv-icon {
    transform: rotate(-8deg) scale(1.1);
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 15px 35px rgba(212,168,67,0.3);
}

/* Content */
.sv-body { position: relative; z-index: 2; flex: 1; }
.sv-body h3 {
    margin: 0 0 14px;
    color: var(--dark);
    font-size: 24px;
    font-weight: 850;
    letter-spacing: -0.7px;
    font-family: var(--font-display);
}
.sv-body p {
    margin: 0;
    max-width: 390px;
    color: #727272;
    font-size: 15px;
    line-height: 1.7;
}

/* Bottom */
.sv-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
}
.sv-arrow {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: #fff;
    font-size: 18px;
    transition: 0.4s ease;
}
.sv-card:hover .sv-arrow {
    background: var(--primary);
    color: var(--dark);
    transform: rotate(45deg);
}

/* Gold glow */
.sv-glow {
    position: absolute;
    width: 180px; height: 180px;
    right: -100px; bottom: -100px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0;
    transition: 0.5s ease;
}
.sv-card:hover .sv-glow { opacity: 0.18; }

/* Featured SEO card (dark) */
.sv-featured {
    background: linear-gradient(145deg, #111318, #1c1d20);
    border-color: #292929;
}
.sv-featured .sv-body h3 { color: #fff; }
.sv-featured .sv-body p { color: #b8b8b8; }
.sv-featured .sv-bottom { color: #fff; }
.sv-featured .sv-icon {
    background: var(--primary);
    color: var(--dark);
}
.sv-featured:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 0 45px rgba(212,168,67,0.18);
    color: #fff;
}
.sv-featured:hover .sv-icon {
    background: var(--dark);
    color: var(--primary);
}

/* ============ GOLDEN SERVICE CARDS ============ */
.sc-grid {
    padding: 0 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
}
.sc-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.sc-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 66%;
    margin: 0 auto;
}

/* Card */
.sc-card {
    position: relative;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 25px 22px 60px;
    text-decoration: none;
    color: var(--dark);
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}
.sc-card::before {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 100%; height: 100%;
    background: linear-gradient(145deg, transparent 40%, rgba(245,197,24,0.15) 70%, rgba(245,197,24,0.3) 100%);
    border-radius: 20px;
    z-index: 0;
    transition: opacity 0.4s;
}
.sc-card:hover::before {
    opacity: 0.8;
}
.sc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    color: var(--dark);
}

/* Decorative dots */
.sc-card::after {
    content: '⠿⠿⠿';
    position: absolute;
    top: 15px; left: 18px;
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.5;
}

/* Icons floating above card */
.sc-icons {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}
.sc-ico {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.sc-ico-text { font-size: 0.6rem !important; font-weight: 900; }
.sc-card:hover .sc-ico {
    transform: translateY(-5px);
}

/* Number + Title inline */
.sc-title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}
.sc-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    font-family: var(--font-display);
    flex-shrink: 0;
    margin-top: 2px;
}
.sc-title-row h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    line-height: 1.25;
}

/* Gold underline */
.sc-line {
    width: 35px; height: 3px;
    background: var(--primary);
    border-radius: 3px;
    margin: 10px 0 12px;
}

/* Description */
.sc-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Arrow */
.sc-arrow {
    position: absolute;
    bottom: 18px; right: 20px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: 0.3s ease;
    z-index: 2;
}
.sc-card:hover .sc-arrow {
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(212,168,67,0.4);
}

/* Responsive */
@media (max-width: 1000px) {
    .sc-row-3 { grid-template-columns: repeat(2, 1fr); }
    .sc-row-2 { max-width: 100%; }
}
@media (max-width: 650px) {
    .sc-grid { padding: 0 20px 60px; }
    .sc-row-3 { grid-template-columns: 1fr; }
    .sc-row-2 { grid-template-columns: 1fr; }
    .sv-overlay { padding: 60px 20px 30px; }
    .sv-main-heading { font-size: 28px !important; letter-spacing: -1px; }
}

/* Header */
.srv-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.srv-tag span:first-child {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.srv-tag-line {
    width: 45px; height: 2px;
    background: var(--primary);
    display: inline-block;
}
.srv-heading {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 15px;
}
.srv-heading em { font-style: italic; }
.srv-sub {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 15px;
}
.srv-sub-line {
    width: 45px; height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* Right visual - service image */
.srv-hero-img {
    text-align: center;
}
.srv-hero-img img {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
}

/* Service Cards */
.srv-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px 25px 30px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.srv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(212,168,67,0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.srv-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    color: var(--dark);
}
.srv-card:hover::before { opacity: 1; }

.srv-card-num {
    position: absolute;
    top: 18px; left: 22px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--dark);
    background: var(--primary);
    padding: 3px 14px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-style: italic;
}

/* Colored icon row */
.srv-card-icons {
    display: flex;
    gap: 10px;
    margin: 45px 0 20px;
    justify-content: center;
}
.srv-ico {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.srv-ico-text { font-size: 0.7rem !important; letter-spacing: 0.5px; }
.srv-card:hover .srv-ico {
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.srv-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.srv-card-line {
    width: 35px; height: 3px;
    background: var(--primary);
    border-radius: 3px;
    margin-bottom: 12px;
}
.srv-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
    padding-right: 45px;
}
.srv-card-arrow {
    position: absolute;
    bottom: 25px; right: 22px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.srv-card:hover .srv-card-arrow {
    background: var(--primary);
    color: var(--dark);
    transform: rotate(-45deg);
}

@media (max-width: 991px) {
    .srv-heading { font-size: 2.2rem; }
}
@media (max-width: 767px) {
    .srv-heading { font-size: 1.8rem; }
    .srv-card-icons { gap: 8px; }
    .srv-ico { width: 36px; height: 36px; font-size: 0.9rem; }
}

/* ============ SERVICES GRID (legacy) ============ */
.services-grid-section { background: var(--white); }
.service-block {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.service-block:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212,168,67,0.12);
    color: var(--dark);
}
.service-num {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-200);
    font-family: var(--font-display);
    line-height: 1;
    transition: var(--transition);
}
.service-block:hover .service-num { color: rgba(212,168,67,0.2); }
.service-block-icon {
    width: 65px; height: 65px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}
.service-block:hover .service-block-icon {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
}
.service-block h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-block p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 15px;
    line-height: 1.6;
}
.service-arrow {
    display: inline-flex;
    width: 35px; height: 35px;
    border-radius: 50%;
    background: var(--gray-100);
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}
.service-block:hover .service-arrow {
    background: var(--primary);
    color: var(--dark);
}

/* ============ WHY CHOOSE US ============ */
/* ============ WHY CHOOSE US - DARK PREMIUM ============ */
.wcu-section {
    background: #0a0a0a;
    padding: 100px 6%;
    position: relative;
    overflow: hidden;
}
.wcu-inner {
    display: flex;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Left */
.wcu-left { flex: 0 0 35%; }
.wcu-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.wcu-tag span:first-child {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2.5px;
}
.wcu-tag-line {
    width: 40px; height: 2px;
    background: var(--primary);
}
.wcu-heading {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.wcu-heading span {
    color: var(--primary);
    font-style: italic;
}
.wcu-desc {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 25px;
}
.wcu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1.5px solid var(--primary);
    border-radius: 50px;
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    margin-bottom: 35px;
}
.wcu-btn:hover {
    background: var(--primary);
    color: #0a0a0a !important;
}

/* Stats boxes */
.wcu-stats {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #222;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
}
.wcu-stat-box {
    flex: 1;
    padding: 20px;
    text-align: center;
}
.wcu-stat-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    margin: 0 auto 10px;
}
.wcu-stat-box strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-display);
}
.wcu-stat-box small {
    font-size: 0.75rem;
    color: #666;
}
.wcu-stat-divider {
    width: 1px;
    height: 80px;
    background: #222;
}

/* Right - Cards */
.wcu-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wcu-card {
    display: flex;
    align-items: center;
    gap: 0;
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s ease;
}
.wcu-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 10px 40px rgba(212,168,67,0.08);
}

/* Card image area with gold orb */
.wcu-card-img {
    flex: 0 0 200px;
    height: 180px;
    background: #0a0a0a;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.wcu-card-gradient {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, transparent 20%, rgba(212,168,67,0.08) 60%, rgba(212,168,67,0.2) 100%);
    z-index: 1;
}

/* Gold glass orb */
.wcu-orb {
    width: 85px; height: 85px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(245,210,100,0.4), rgba(212,168,67,0.15) 50%, rgba(180,140,40,0.1) 100%);
    border: 2px solid rgba(212,168,67,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    box-shadow:
        0 0 30px rgba(212,168,67,0.2),
        0 0 60px rgba(212,168,67,0.1),
        inset 0 -10px 20px rgba(0,0,0,0.3);
}
.wcu-orb i {
    font-size: 2.2rem;
    color: var(--primary);
    filter: drop-shadow(0 2px 8px rgba(212,168,67,0.6));
}

/* Gold pedestal/base */
.wcu-pedestal {
    width: 100px; height: 6px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 50%;
    margin-top: 10px;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 20px rgba(212,168,67,0.3), 0 0 40px rgba(212,168,67,0.15);
}
.wcu-pedestal::after {
    content: '';
    position: absolute;
    top: 6px; left: 10%;
    width: 80%; height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212,168,67,0.3), transparent);
    border-radius: 50%;
    filter: blur(3px);
}

/* Hover animation */
.wcu-card:hover .wcu-orb {
    box-shadow:
        0 0 40px rgba(212,168,67,0.35),
        0 0 80px rgba(212,168,67,0.15),
        inset 0 -10px 20px rgba(0,0,0,0.3);
    transform: translateY(-3px);
    transition: 0.4s ease;
}
.wcu-card:hover .wcu-pedestal {
    box-shadow: 0 0 30px rgba(212,168,67,0.4), 0 0 60px rgba(212,168,67,0.2);
}
.wcu-card-num {
    position: absolute;
    top: 12px; right: 15px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-display);
    opacity: 0.6;
    z-index: 2;
}

/* Card body */
.wcu-card-body {
    flex: 1;
    padding: 22px 25px;
}
.wcu-card-body h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.wcu-card-body p {
    font-size: 0.83rem;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

/* Arrow */
.wcu-card-arrow {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    margin-right: 20px;
    transition: 0.3s;
}
.wcu-card:hover .wcu-card-arrow {
    background: var(--primary);
    color: #0a0a0a;
}

/* Decorative dots */
.wcu-dots {
    position: absolute;
    width: 80px; height: 80px;
    background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.2;
    z-index: 1;
}
.wcu-dots-tl { top: 40px; left: 30px; }
.wcu-dots-br { bottom: 40px; right: 30px; }

/* Responsive */
@media (max-width: 991px) {
    .wcu-inner { flex-direction: column; }
    .wcu-left { flex: auto; }
    .wcu-heading { font-size: 2.4rem; }
    .wcu-card-img { flex: 0 0 120px; height: 130px; }
    .wcu-card-img > i { font-size: 2.5rem; }
}
@media (max-width: 650px) {
    .wcu-section { padding: 70px 20px; }
    .wcu-heading { font-size: 2rem; }
    .wcu-card { flex-direction: column; }
    .wcu-card-img { flex: auto; width: 100%; height: 120px; }
    .wcu-card-arrow { margin: 0 0 15px 0; }
}

/* ============ GROWTH ENGINE SECTION ============ */
.ge-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}
.ge-heading {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 25px;
}
.ge-heading span {
    color: var(--primary);
    font-style: italic;
}
.ge-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
}
.ge-image {
    text-align: center;
}
.ge-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
}
@media (max-width: 991px) {
    .ge-heading { font-size: 2.2rem; }
}
@media (max-width: 650px) {
    .ge-section { padding: 70px 20px; }
    .ge-heading { font-size: 1.8rem; }
}

.why-section { background: var(--white); }
.why-rating-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0 15px;
    padding: 15px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}
.rating-stars { color: var(--primary); font-size: 1rem; }
.rating-stars.sm { font-size: 0.85rem; }
.why-rating-box strong { font-size: 1.3rem; color: var(--dark); }
.why-projects-box {
    padding: 15px 20px;
    background: var(--dark);
    border-radius: var(--radius-md);
    color: var(--white);
}
.why-projects-box strong {
    font-size: 1.8rem;
    color: var(--primary);
    font-family: var(--font-display);
}
.why-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    transition: var(--transition);
}
.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}
.why-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-display);
    line-height: 1;
    flex-shrink: 0;
}
.why-card h5 { font-size: 1.1rem; margin-bottom: 5px; }
.why-card p { font-size: 0.88rem; color: var(--gray-500); margin: 0; line-height: 1.6; }
.see-all-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 10px;
}
.see-all-link:hover { gap: 10px; color: var(--primary-dark); }

/* ============ PORTFOLIO — DARK SCROLL PREVIEW ============ */
.pw-section {
    background: #0A0A0A;
    padding: 90px 0 80px;
}
.pw-top { text-align: center; margin-bottom: 40px; }
.pw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.pw-eyebrow i { font-size: 0.9rem; }
.pw-heading {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.pw-sub {
    color: #888;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

/* Filter Tabs */
.pw-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}
.pw-tab {
    padding: 10px 24px;
    border: 2px solid #333;
    border-radius: 50px;
    background: transparent;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: #aaa;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pw-tab i { font-size: 0.8rem; }
.pw-tab:hover { border-color: var(--primary); color: var(--primary); }
.pw-tab.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #0A0A0A;
}

/* Portfolio Grid */
.pw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.pw-card {
    background: #141414;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #222;
    transition: all 0.4s ease;
    min-width: 0;
}
.pw-card:hover {
    border-color: #333;
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Live iframe Preview Container */
.pw-preview {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background: #111;
    border-bottom: 1px solid #222;
}
.pw-preview iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 1440px;
    height: 4000px;
    border: none;
    transform-origin: 0 0;
    pointer-events: none;
}
/* Screenshot fallback for blocked iframes */
.pw-preview--img .pw-screenshot {
    position: absolute;
    top: 0; left: 0; width: 100%;
    transition: transform 6s ease-in-out;
}
.pw-preview--img .pw-screenshot img {
    width: 100%;
    display: block;
}
.pw-card:hover .pw-preview--img .pw-screenshot {
    transform: translateY(calc(-100% + 320px));
}
@media (max-width: 991px) {
    .pw-card:hover .pw-preview--img .pw-screenshot { transform: translateY(calc(-100% + 260px)); }
}
@media (max-width: 575px) {
    .pw-card:hover .pw-preview--img .pw-screenshot { transform: translateY(calc(-100% + 240px)); }
}

/* Result badge overlay */
.pw-result-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10,10,10,0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,168,67,0.3);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 3;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.pw-result-badge i { margin-right: 4px; }
.pw-card:hover .pw-result-badge {
    background: var(--primary);
    color: #0A0A0A;
    border-color: var(--primary);
}

/* Info bar */
.pw-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}
.pw-info-text h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}
.pw-cat {
    font-size: 0.82rem;
    color: #999;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pw-cat i { color: var(--primary); font-size: 0.75rem; }
.pw-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
    flex-shrink: 0;
}
.pw-card:hover .pw-arrow {
    border-color: var(--primary);
    background: var(--primary);
    color: #0A0A0A;
}

/* Bottom stats strip */
.pw-bottom { text-align: center; margin-top: 50px; }
.pw-stat-strip {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 10px;
}
.pw-stat-item { text-align: center; }
.pw-stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}
.pw-stat-item span {
    font-size: 0.85rem;
    color: #777;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 1199px) {
    .pw-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .pw-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .pw-heading { font-size: 2.2rem; }
    .pw-preview { height: 260px; }
}
@media (max-width: 575px) {
    .pw-grid { grid-template-columns: 1fr; gap: 16px; }
    .pw-heading { font-size: 1.8rem; }
    .pw-section { padding: 60px 0; }
    .pw-preview { height: 240px; }
    .pw-info { padding: 14px 16px; }
    .pw-info-text h4 { font-size: 1rem; }
}

/* ============ INDUSTRIES ============ */
.industries-section { background: var(--white); }
.industry-block {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    align-items: flex-start;
}
.industry-block:hover {
    border-color: var(--primary);
    background: var(--gray-100);
    transform: translateY(-3px);
}
.industry-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-display);
    line-height: 1;
    flex-shrink: 0;
}
.industry-block h5 { font-size: 1rem; margin-bottom: 3px; }
.industry-block p { font-size: 0.82rem; color: var(--gray-500); margin: 0; }
.industry-cta {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}
.industry-cta p { color: var(--gray-500); margin: 0 0 5px; }
.industry-cta a {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.industry-cta a:hover { gap: 10px; }

/* ============ PROCESS ============ */
/* ============ HOW WE WORK — PREMIUM ============ */
.hww-section {
    background: #060606;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative gold arcs */
.hww-arc {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(212,168,67,0.08);
    pointer-events: none;
}
.hww-arc--tl { top: -200px; left: -200px; }
.hww-arc--br { bottom: -200px; right: -200px; }

/* Header */
.hww-header { text-align: center; margin-bottom: 60px; }
.hww-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1.5px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 24px;
}
.hww-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hww-title span { color: var(--primary); font-style: italic; }
.hww-sub {
    font-size: 1rem;
    color: #777;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid — Desktop 4 cols */
.hww-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* Step card */
.hww-step { position: relative; }
.hww-step__card {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 40px 24px 30px;
    text-align: center;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    overflow: hidden;
    height: 100%;
}
.hww-step__card:hover {
    border-color: rgba(212,168,67,0.3);
    background: rgba(212,168,67,0.03);
    transform: translateY(-5px);
}

/* Watermark number */
.hww-step__watermark {
    position: absolute;
    top: 8px; right: 16px;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(212,168,67,0.07);
    line-height: 1;
    pointer-events: none;
}

/* Icon circle with gold glow */
.hww-step__icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(212,168,67,0.15), 0 0 40px rgba(212,168,67,0.05);
    position: relative;
    z-index: 2;
    transition: box-shadow 0.3s, background 0.3s;
}
.hww-step__card:hover .hww-step__icon {
    box-shadow: 0 0 30px rgba(212,168,67,0.3), 0 0 60px rgba(212,168,67,0.1);
    background: rgba(212,168,67,0.1);
}

/* Horizontal connector line + arrow between steps (desktop) */
.hww-step__arrow {
    position: absolute;
    top: 100px;
    right: -14px;
    width: 28px;
    height: 28px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Horizontal line through arrow */
.hww-step__arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -12px;
    right: -12px;
    height: 1.5px;
    background: rgba(212,168,67,0.25);
    transform: translateY(-50%);
}
/* Arrow circle */
.hww-step__arrow i {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #0a0a0a;
    border: 1.5px solid rgba(212,168,67,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.7rem;
    position: relative;
    z-index: 2;
}

/* Label */
.hww-step__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 8px;
}

/* Heading */
.hww-step__heading {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Gold divider */
.hww-step__line {
    width: 40px; height: 2px;
    background: var(--primary);
    margin: 0 auto 14px;
    border-radius: 2px;
}

/* Description */
.hww-step__desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.hww-cta { text-align: center; }

/* Mobile timeline connector — hidden on desktop */
.hww-timeline-connector { display: none; }

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .hww-step__arrow { display: none; }
}
@media (max-width: 991px) {
    .hww-grid {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 500px;
        margin: 0 auto 50px;
    }
    .hww-title { font-size: 2.1rem; }
    .hww-step__card {
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 0 16px;
        text-align: left;
        padding: 24px 20px;
        border-radius: 14px;
    }
    .hww-step__icon {
        margin: 0;
        flex-shrink: 0;
        width: 56px; height: 56px;
        font-size: 1.2rem;
        grid-row: 1 / 6;
        align-self: start;
    }
    .hww-step__watermark {
        top: auto; bottom: 10px; right: 14px;
        font-size: 3.5rem;
    }
    .hww-step__line { margin: 0 0 10px; }
    .hww-step__desc { word-wrap: break-word; overflow-wrap: break-word; }
    .hww-step__arrow { display: none; }

    /* Vertical timeline connector */
    .hww-timeline-connector {
        display: block;
        width: 2px;
        height: 24px;
        background: rgba(212,168,67,0.2);
        margin: 0 0 0 47px;
        position: relative;
    }
    .hww-timeline-connector::before,
    .hww-timeline-connector::after {
        content: '';
        position: absolute;
        left: -3px;
        width: 8px; height: 8px;
        border-radius: 50%;
        background: rgba(212,168,67,0.3);
    }
    .hww-timeline-connector::before { top: -3px; }
    .hww-timeline-connector::after { bottom: -3px; }
}
@media (max-width: 575px) {
    .hww-section { padding: 70px 0 60px; }
    .hww-title { font-size: 1.7rem; }
    .hww-badge { font-size: 0.7rem; padding: 6px 18px; letter-spacing: 3px; }
    .hww-step__heading { font-size: 1.05rem; }
    .hww-step__desc { font-size: 0.8rem; }
}

/* ============ REVIEWS ============ */
.reviews-section { background: var(--white); }
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray-500);
}
.google-rating-badge strong { color: var(--dark); font-size: 1rem; }
.reviews-swiper { padding-bottom: 50px; }
.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 25px;
    height: 100%;
    transition: var(--transition);
}
.review-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.review-avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.review-header h6 { margin: 0; font-size: 0.95rem; }
.review-header small { color: var(--gray-400); font-size: 0.75rem; }
.review-service-tag {
    margin-left: auto;
    padding: 3px 10px;
    background: rgba(212,168,67,0.1);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}
.review-card .rating-stars { margin-bottom: 10px; }
.review-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* ============ CONSULTATION FORM ============ */
.consult-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.consult-section::before {
    content: '';
    position: absolute;
    top: -40%; right: -15%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.consult-form { max-width: 400px; margin: 0 auto; }
.input-group-custom {
    display: flex;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 15px;
}
.input-prefix {
    padding: 14px 15px;
    background: rgba(255,255,255,0.05);
    color: var(--gray-400);
    font-weight: 600;
    font-size: 0.9rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.input-group-custom input {
    flex: 1;
    padding: 14px 15px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
}
.input-group-custom input::placeholder { color: var(--gray-500); }
.consent-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.8rem;
    margin-bottom: 20px;
    cursor: pointer;
}
.consent-label input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px; height: 16px;
}
.consult-alt { margin-top: 20px; }
.consult-alt p { color: var(--gray-500); font-size: 0.85rem; }
.consult-alt a { color: var(--primary); font-weight: 600; }

/* ============ FINAL CTA ============ */
.final-cta { padding: 60px 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .hero-main { padding: 40px 0 40px; background-position: center; }
    .hero-bg-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%); }
    .hero-title { font-size: 3.2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-stats-row { gap: 20px; }
    .mega-menu-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .hero-main { padding: 110px 0 50px; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns a { width: 100%; justify-content: center; }
    .hero-stats-row { flex-wrap: wrap; gap: 20px; }
    .hero-stat-divider { display: none; }
    .hero-stat-box { flex: 0 0 28%; }
    .section-title { font-size: 1.8rem; }
    .service-block { padding: 25px 18px; }
    .mega-menu-grid { grid-template-columns: 1fr; }
}

[data-aos] { transition-duration: 800ms !important; }
