/* DESIGN SYSTEM & VARIABLES */
:root {
    --bg-dark: #050505; /* Deeper Black */
    --bg-card: #0d0d0d; /* Premium Card Gray */
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08); 
    --accent: #ff5500; /* Signature Orange */
    --accent-secondary: #ff3300;
    --accent-glow: rgba(255, 85, 0, 0.3);
    --secondary-glow: rgba(255, 0, 0, 0.3);
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --text-muted: #666666;
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1300px; /* Wider for premium feel */
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial; /* Controlled by Lenis */
    overflow-x: hidden;
}

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

main, #navbar {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

body.loaded main, body.loaded #navbar {
    opacity: 1;
    transform: translateY(0);
}

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

/* PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #050505;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Logo Container */
.preloader-logo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
}

.preloader-logo-icon {
    font-size: 5rem;
    color: var(--accent);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    filter: none;
    will-change: opacity, transform, filter;
}

.preloader-logo-icon.exiting {
    opacity: 0;
    transform: translateY(-14px) scale(0.7) rotate(-8deg);
    filter: none;
}

.preloader-logo-icon.entering {
    opacity: 0;
    transform: translateY(14px) scale(0.7) rotate(8deg);
    filter: none;
}

.preloader-logo-icon.visible {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: none;
}

.preloader-logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 0;
}

.pl-web { color: #fff; }
.pl-info { color: #fff; }
.pl-plus { 
    color: var(--accent);
    font-weight: 800;
}

.preloader-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.preloader-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: dotBounce 1.2s ease-in-out infinite;
}

.preloader-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.preloader-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes dotBounce {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1.1); }
}

/* Bottom section: percentage, bar, text */
.preloader-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    width: 420px;
    max-width: 90vw;
    padding: 2.5rem;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    backdrop-filter: blur(15px);
}

.preloader-service-text-top {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 1.5rem;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    will-change: opacity, transform;
}

.preloader-bar-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: visible;
    position: relative;
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff5500, #ff8800, #ffaa00);
    transition: width 0.1s linear;
    position: relative;
}

.preloader-bar-glow {
    position: absolute;
    top: -4px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffaa00;
    box-shadow: 0 0 12px 4px rgba(255, 170, 0, 0.6), 0 0 24px 8px rgba(255, 85, 0, 0.3);
    transition: left 0.1s linear;
}

/* Ambient glow behind the logo */
.preloader-logo-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: ambientPulse 3s ease-in-out infinite;
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 10rem 0;
    position: relative;
}

/* Ensure all animated content is always visible — never hidden by JS failures */
[data-reveal] {
    opacity: 1 !important;
}

/* Ensure featured badge is always visible */
.popular-badge {
    opacity: 1 !important;
}

/* TYPOGRAPHY UTILS */
.section-label {
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.4rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    gap: 0.8rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-large {
    padding: 1.4rem 3.5rem;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 20px -10px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px var(--accent-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(255, 85, 0, 0.05);
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: #000;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* NAVBAR */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: none;
}

#navbar.scrolled {
    padding: 1.2rem 0;
    background: #050505;
}
#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.logo-web { color: #fff; }
.logo-info { color: var(--accent); }
.logo-plus { 
    color: #fff;
    background: var(--accent);
    padding: 0 0.4rem;
    border-radius: 4px;
    margin-left: 0.1rem;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dim);
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a i {
    font-size: 1.1rem;
    color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover i {
    color: #fff;
    transform: scale(1.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}

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

.nav-links a.active,
.nav-links a[aria-current="page"] {
    color: #fff;
    font-weight: 600;
}

.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
    width: 100%;
}

.nav-links a.active i,
.nav-links a[aria-current="page"] i {
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
/* =============================================
   HERO SECTION — Reference Image Match
   ============================================= */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
    background: #0a0808;
}

/* Subtle noise texture overlay */
.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(120px);
    animation: blobFloat 18s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.12) 0%, transparent 65%);
    top: -150px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 20, 0, 0.08) 0%, transparent 65%);
    bottom: -100px;
    right: 10%;
    animation-delay: -8s;
}

@keyframes blobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(30px, -30px) scale(1.05); }
    100% { transform: translate(-20px, 20px) scale(0.97); }
}

/* Grid layout matching reference: text left, image right */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Status badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    margin-bottom: 1.8rem;
    font-family: var(--font-body);
}

.status-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    animation: pulse-dot 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
    50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1); }
}

/* Big stacked headline matching reference */
#hero h1 {
    font-size: clamp(3.8rem, 7.5vw, 7rem);
    line-height: 0.92;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #ffffff;
}

#hero h1 .subhead {
    display: block;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    color: var(--text-dim);
    margin-top: 0.6rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Orange accent lines */
#hero h1 .accent-text {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    background: none;
    display: block;
}

.glow-letters span {
    transition: transform 0.3s ease;
    display: inline-block;
}
.glow-letters span:hover {
    transform: translateY(-2px);
}

#hero p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.7;
}

#hero p strong {
    color: var(--text-main);
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

/* CTA button style matching reference */
.btn-large {
    padding: 1.1rem 2.4rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    letter-spacing: 0.02em;
}

/* ---- Graphic Card (right side) ---- */
.hero-graphic {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.graphic-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    width: 100%;
    max-width: 560px;
}

.graphic-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(255, 85, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.graphic-card:hover img {
    transform: scale(1.02);
}

.card-overlay {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(5, 5, 5, 0.35) 100%
    );
    pointer-events: none;
}

/* Floating Adobe tool badges */
.tool-badge {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    animation: badgeFloat 6s ease-in-out infinite;
}

.badge-pr {
    background: #2b0a62;
    top: 8%;
    right: -5%;
    animation-delay: 0s;
}

.badge-ae {
    background: #1a0060;
    top: 26%;
    left: -4%;
    animation-delay: 1.2s;
}

.badge-ps {
    background: #001e4a;
    top: 10%;
    right: 18%;
    animation-delay: 0.6s;
}

.badge-ai {
    background: #1a0a00;
    bottom: 22%;
    left: 2%;
    animation-delay: 1.8s;
    border: 1.5px solid rgba(255,120,0,0.3);
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

.hero-mobile-layout {
    display: none;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item .number {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.trust-item .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border-glass);
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 85, 0, 0.3);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 2.5rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-card ul {
    margin-bottom: 3rem;
}

.service-card ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-card ul li i {
    color: var(--accent);
    font-size: 1.1rem;
}

.card-footer {
    margin-top: auto;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-glass);
}

.turnaround {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price {
    font-weight: 700;
    font-family: var(--font-heading);
}

/* WHY CHOOSE US */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-items {
    display: grid;
    gap: 2.5rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
}

.item-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}

.why-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.why-image {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2rem;
}

.image-glow {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

/* PORTFOLIO */
.section-header {
    margin-bottom: 4rem;
}

.filter-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-dim);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

/* PORTFOLIO SECTION */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns for better showcase size */
    gap: 4rem;
}

.portfolio-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 85, 0, 0.4);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
}

.item-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.item-content {
    padding: 3rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .item-content {
    transform: translateY(0);
    opacity: 1;
}

.item-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.item-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.portfolio-btns {
    display: flex;
    gap: 1.5rem;
}

.portfolio-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.portfolio-btn:hover {
    background: #fff;
    color: #000;
}

.filter-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
    background: transparent;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 85, 0, 0.05);
}

/* PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-step {
    padding: 3rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 2rem;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent);
    opacity: 0.6; /* Increased visibility */
    display: block;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 85, 0, 0.2));
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* TESTIMONIALS */
/* TESTIMONIALS */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-arrows {
    display: none;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 8rem;
    color: var(--accent);
    opacity: 0.05;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 85, 0, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.stars {
    color: #ffb400;
    margin-bottom: 2rem;
    font-size: 1rem;
    display: flex;
    gap: 0.3rem;
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 3rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 16px; /* Modern square rounded */
    object-fit: cover;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.client-info h5::after {
    content: '\eb7a'; /* Remix icon check circle */
    font-family: 'remixicon';
    color: #34d399;
    font-size: 0.9rem;
    font-weight: 400;
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.google-rating {
    text-align: center;
    margin-top: 6rem;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-glass);
    color: var(--text-dim);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-rating i {
    color: #fff;
    background: #4285f4;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    padding: 4rem 3rem;
    border-radius: 2rem;
    border: 1px solid var(--border-glass);
    text-align: center;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
    z-index: 10;
}

.pricing-card.popular {
    border-color: var(--accent);
    background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
}

.popular-tag, .popular-badge {
    position: absolute;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: #000;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px var(--accent-glow);
    z-index: 10;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.pricing-card ul {
    margin-bottom: 3rem;
    text-align: left;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.pricing-card ul li i {
    color: var(--accent);
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

.custom-pricing {
    text-align: center;
    margin-top: 4rem;
    color: var(--text-muted);
}

.custom-pricing a {
    color: var(--accent);
    font-weight: 600;
}

/* FAQ ACCORDION */
.faq-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 5rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.faq-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    cursor: pointer;
}

.faq-header h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: var(--transition);
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    opacity: 0;
}

.faq-body p {
    padding-bottom: 2.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 85%;
}

.faq-row.active .faq-header h4 {
    color: #fff;
}

.faq-row.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-row.active .faq-body {
    max-height: 400px;
    opacity: 1;
}

.faq-row:hover .faq-header h4 {
    color: #fff;
}

@media (max-width: 992px) {
    .faq-accordion {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(135deg, #000 0%, #111 100%);
    border: 1px solid var(--accent);
    box-shadow: 0 0 50px rgba(255, 85, 0, 0.1);
    padding: 6rem;
    border-radius: 1rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.cta-box h2 span {
    color: var(--accent);
    transition: transform 0.4s ease;
    display: inline-block;
}

.cta-box p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.cta-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.promise {
    font-size: 0.9rem;
    opacity: 0.6;
    font-weight: 600;
}

/* FOOTER */
#footer {
    background: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info p {
    color: var(--text-muted);
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-grid h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    color: var(--text-dim);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dim);
}

.social-icons a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* CUSTOM CURSOR */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    opacity: 0.3;
}

/* HERO ENHANCEMENTS — legacy override removed, see top hero block */

/* LOGO MARQUEE */
.no-padding {
    padding: 2rem 0;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    background: var(--bg-card);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 2rem 0;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 4rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
    transition: var(--transition);
}

.logo-item i {
    font-size: 2rem;
}

.logo-item:hover {
    color: var(--text-main);
}

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

/* TEXT MARQUEE */
.text-marquee {
    background: var(--accent);
    padding: 1.5rem 0;
    margin: 3rem 0;
    overflow: hidden;
}

.text-marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite reverse;
}

.text-marquee-content span {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #000;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
}

.text-marquee-content span.dot {
    -webkit-text-stroke: 0;
    color: rgba(0, 0, 0, 0.3);
}

/* CONTACT SECTION */
.contact-box {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem;
    border-radius: 2.5rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-form .form-group label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 1rem;
    color: #fff;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-box {
        padding: 3rem 1.5rem;
    }
}

#workflow {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pipeline-wrap {
    position: relative;
    margin-top: 4rem;
}

.pipeline-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 3rem 2rem;
    border-radius: 2rem;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255, 85, 0, 0.1);
}

.step-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 32px;
    height: 32px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    display: inline-block;
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.dots-pipeline-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .pipeline-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    .dots-pipeline-svg {
        display: none;
    }
}

@media (max-width: 768px) {
    .pipeline-grid-6 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {    .hero-grid, .newsletter-box {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .hero-content {
        margin: 0 auto;
    }
    .newsletter-form {
        margin: 0 auto;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .pricing-grid, .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    #navbar {
        padding: 1rem 0;
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(15px);
    }
    .nav-links {
        display: none; /* Hide menu pages on mobile as requested */
    }
    #navbar .container {
        gap: 1rem;
    }
    .logo {
        margin-right: auto;
        font-size: 1.2rem;
    }
    #navbar .btn {
        display: flex;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    .mobile-menu-btn {
        display: none; /* Removed as per user request */
    }
    .portfolio-grid, .pricing-grid, .testimonial-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .trust-divider {
        display: none;
    }
    .cta-box {
        padding: 4rem 2rem;
    }
    .cta-btns {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.video-preview,
.video-hero-card {
    position: relative;
}

.video-control-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    z-index: 2;
}

.video-control-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(255, 85, 0, 0.9);
}

.video-control-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.video-control-btn i {
    font-size: 1.4rem;
}

.video-hero-card .video-control-btn {
    width: 72px;
    height: 72px;
}

@media (max-width: 768px) {
    .video-control-btn {
        width: 50px;
        height: 50px;
    }

    .video-hero-card .video-control-btn {
        width: 58px;
        height: 58px;
    }
}

.video-work-hero {
    padding: 7rem 0 4rem;
    background: linear-gradient(130deg, rgba(255, 85, 0, 0.1), rgba(10, 10, 10, 0.98));
}

.video-work-hero .hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.video-work-hero .hero-copy h1 {
    font-size: clamp(3rem, 4vw, 4.6rem);
    line-height: 1.02;
    max-width: 720px;
    margin-bottom: 1.5rem;
}

.video-work-hero .hero-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2rem;
    font-size: 1.03rem;
}

.video-hero-card {
    background: rgba(255, 85, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.25);
}

.video-hero-card .video-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.15);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.video-hero-card video {
    width: 100%;
    display: block;
    min-height: 320px;
    background: #060606;
}

.video-section {
    padding: 5rem 0 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.video-grid-wide {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.video-card.video-card-wide .video-preview {
    min-height: 360px;
}

.video-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.8rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 85, 0, 0.18);
}

.video-preview {
    position: relative;
    overflow: hidden;
    min-height: 210px;
}

.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.video-card-content h3 {
    font-size: 1.3rem;
}

.video-card-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.7;
}

.video-work-cta {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 85, 0, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
}

.video-work-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    max-width: 720px;
}

@media (max-width: 1024px) {
    .video-work-hero .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .video-work-hero .hero-copy {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .video-work-hero {
        padding: 5rem 0 2rem;
    }

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

    .video-card.video-card-wide .video-preview {
        min-height: 240px;
    }

    .video-work-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

/* CHATBOT WIDGET */
.chat-toggle-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    z-index: 999;
    box-shadow: 0 10px 30px var(--accent-glow);
    transition: var(--transition);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fff;
    color: var(--accent);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
}

.chatbot-widget {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 420px;
    max-width: calc(100vw - 4rem);
    background: rgba(15, 15, 15, 0.6);
    border-radius: 28px;
    overflow: hidden;
    z-index: 1001;
    box-shadow: 0 30px 100px rgba(0,0,0,0.6), 0 0 40px rgba(255, 85, 0, 0.05);
    display: flex;
    flex-direction: column;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.chatbot-widget.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.chatbot-header {
    background: transparent;
    padding: 1.8rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.chatbot-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,85,0,0.2), transparent);
}

.chatbot-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.chatbot-avatar {
    position: relative;
    width: 50px;
    height: 50px;
}

.chatbot-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border: 2px solid #121212;
    border-radius: 50%;
}

.online-dot.pulsating {
    animation: pulseOnline 2s infinite;
}

@keyframes pulseOnline {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.chatbot-titles {
    display: flex;
    flex-direction: column;
}

.chatbot-info h5 {
    font-size: 1.1rem;
    margin: 0 0 0.2rem 0;
    font-weight: 700;
}

.trust-text {
    font-size: 0.75rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-text i {
    color: var(--accent);
}

.chatbot-close {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-dim);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    color: #fff;
    background: rgba(255,85,0,0.1);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.chatbot-body {
    padding: 1.5rem;
    height: 450px;
    overflow-y: auto !important;
    background: radial-gradient(circle at top right, rgba(255, 85, 0, 0.02), transparent);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,85,0,0.5) transparent;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-body::-webkit-scrollbar {
    width: 3px;
}

.chatbot-body::-webkit-scrollbar-thumb {
    background: rgba(255,85,0,0.5);
    border-radius: 10px;
}

.chat-message {
    padding: 1.2rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 0.95rem;
    max-width: 85%;
    line-height: 1.5;
    animation: chatAppear 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 1;
    transform: none;
    transform-origin: bottom left;
}

.chat-message.bot {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-bottom-left-radius: 0.4rem;
    align-self: flex-start;
}

.chat-message.user {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: #fff;
    border-bottom-right-radius: 0.4rem;
    align-self: flex-end;
    box-shadow: 0 10px 20px rgba(255, 85, 0, 0.2);
    transform-origin: bottom right;
}

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

.typing-indicator {
    display: flex;
    gap: 0.4rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    border-bottom-left-radius: 0.4rem;
    width: fit-content;
    align-self: flex-start;
    animation: chatAppear 0.3s ease forwards;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--text-dim);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); background: var(--accent); }
}

.quick-reply-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
    animation: chatAppear 0.5s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 1;
    transform: none;
}

.quick-reply-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.quick-reply-chip:hover {
    background: rgba(255, 85, 0, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.1);
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-main); /* High contrast */
    margin-bottom: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 85, 0, 0.12);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(255, 85, 0, 0.2), inset 2px 2px 5px rgba(0,0,0,0.5);
    transform: translateY(-1px);
}

.form-group input[type="date"],
.form-group input[type="time"] {
    background: linear-gradient(145deg, #2a2a2a, #111);
    box-shadow: 
        10px 10px 20px rgba(0, 0, 0, 0.9),
        -2px -2px 10px rgba(255, 85, 0, 0.1),
        inset 1px 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 85, 0, 0.3); /* Constant orange tint */
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(36%) sepia(87%) saturate(2971%) hue-rotate(11deg) brightness(98%) contrast(108%);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.form-group input[type="date"]:hover::-webkit-calendar-picker-indicator,
.form-group input[type="time"]:hover::-webkit-calendar-picker-indicator {
    background: rgba(255, 85, 0, 0.1);
    transform: scale(1.1);
}

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

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 85, 0, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 85, 0, 0.1);
}

.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus {
    background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
    box-shadow: 
        inset 5px 5px 10px rgba(0, 0, 0, 0.8),
        inset -1px -1px 5px rgba(255, 85, 0, 0.15);
    transform: translateY(1px);
    border-color: var(--accent);
}

/* Success Animation */
.success-msg {
    text-align: center;
    padding: 2rem 0;
    animation: slideUpFade 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.success-msg h2 {
    color: #22c55e;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.success-msg p {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.3));
    animation: bounceEmoji 1s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceEmoji {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-15px) scale(1.1); }
}

/* Loading State Animation */
.loading-state {
    text-align: center;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 85, 0, 0.2);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(255, 85, 0, 0.3);
}

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

.loading-state h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.loading-state p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    #work {
        display: none !important;
    }

    .services-grid, .portfolio-grid, .process-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        align-items: center;
        width: 100%;
    }

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

    .chatbot-widget,
    .chat-toggle-btn,
    .cursor,
    .cursor-follower {
        display: none !important;
    }

    /* Testimonial Mobile Slider Alignment */
    .testimonial-arrows {
        display: flex;
        gap: 1rem;
        position: relative;
        justify-content: center;
        margin-top: 1.5rem;
        width: 100%;
    }
    .testi-arrow {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
        transition: 0.3s ease;
    }
    .testi-arrow:active, .testi-arrow:hover {
        background: var(--accent);
        border-color: var(--accent);
    }
    .testimonial-grid {
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1.5rem;
        padding-bottom: 1rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }
    .testimonial-card {
        min-width: 90vw;
        scroll-snap-align: center;
    }
    .google-rating {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    section {
        padding: 5rem 0;
    }
    h2 {
        font-size: 2.2rem;
    }
    #hero h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    .service-card, .pricing-card {
        padding: 2rem;
    }
}


/* IMPROVED HOVER & SELECT STYLING */
.form-group select option {
    background: #121212;
    color: #fff;
    padding: 10px;
}

.btn-primary:hover {
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
}

.chat-toggle-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.form-group input:hover, 
.form-group select:hover, 
.form-group textarea:hover {
    border-color: rgba(255, 85, 0, 0.4);
}

.form-group input[type="date"]:hover,
.form-group input[type="time"]:hover {
    transform: translateY(-2px);
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.6),
        -2px -2px 8px rgba(255, 85, 0, 0.05);
    border-color: var(--accent);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}


.logo:hover {
    letter-spacing: 1px;
}

/* COMPREHENSIVE MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
    /* Reduce hollow spaces */
    section {
        padding: 4rem 0;
    }
    
    h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    /* Grids stacking */
    .services-grid,
    .work-grid,
    .pipeline-grid-6,
    .footer-grid,
    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        align-items: center;
        width: 100%;
    }
    
    .hero-content h1,
    .hero-content p,
    .hero-btns {
        width: 100%;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-graphic {
        justify-self: center;
        width: 100%;
        max-width: 560px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-box {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }
    
    /* Fix chatbot mobile positioning and size */
    .chatbot-widget,
    .chat-toggle-btn {
        display: none !important;
    }

    /* Back to top button on mobile */
    .back-to-top-btn {
        position: fixed;
        bottom: 2rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        background: rgba(20, 20, 20, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        z-index: 998;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .back-to-top-btn.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .back-to-top-btn:active {
        background: var(--accent);
        border-color: var(--accent);
        transform: scale(0.9);
    }

    /* Unique Professional Mobile Hero */
    #hero {
        padding-top: 7rem;
        padding-bottom: 4rem;
        min-height: auto;
    }
    
    .hero-content,
    .hero-graphic {
        display: flex !important;
    }
    
    .hero-mobile-layout.mobile-only {
        display: block;
        text-align: left;
    }
    
    .hm-heading {
        font-family: var(--font-heading);
        font-size: clamp(3rem, 12vw, 4.5rem);
        font-weight: 800;
        line-height: 0.95;
        letter-spacing: -0.04em;
        margin-bottom: 1.5rem;
        text-transform: none;
        margin-top: 1.5rem;
    }
    
    .hm-heading .accent-text {
        color: var(--accent);
        background: none;
        -webkit-text-fill-color: var(--accent);
    }
    
    .hm-desc {
        color: var(--text-dim);
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-mobile-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 2rem;
    }
    
    .hm-card {
        background: #0d0d0d;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 1.2rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        transition: var(--transition);
    }
    
    .hm-card:active {
        border-color: var(--accent);
        background: rgba(255, 255, 255, 0.02);
    }
    
    .hm-icon {
        width: 36px;
        height: 36px;
        background: rgba(255, 85, 0, 0.08);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .hm-card h4 {
        font-size: 0.85rem;
        font-weight: 700;
        margin: 0;
        color: #fff;
    }
    
    .hm-card p {
        font-size: 0.75rem;
        color: var(--text-muted);
        line-height: 1.4;
        margin: 0;
    }

    /* Override the previous card logic for mobile hero */
    .hero-content {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }
    .hero-content::before {
        display: none;
    }
    .hero-graphic {
        border-radius: 2rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 40px rgba(255, 85, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.03);
    }
}

/* Hide back to top on desktop by default since it wasn't requested */
@media (min-width: 769px) {
    .back-to-top-btn {
        display: none !important;
    }
}

/* Utility classes for responsive visibility */
.mobile-only {
    display: none; /* Hidden by default */
}

.desktop-only {
    display: block; /* Visible on larger screens */
}

/* Mobile breakpoint (adjustable) */
@media (max-width: 768px) {
    .mobile-only {
        display: block; /* Show on mobile */
    }
    .desktop-only {
        display: none; /* Hide on mobile */
    }
}

/* Clients section (desktop-only) */
.clients-section {
    padding: 6rem 0;
}
.clients-section .section-sub {
    color: var(--text-dim);
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem 1.2rem;
    margin-top: 2rem;
}
.client-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    transition: var(--transition);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.client-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,85,0,0.12);
    color: var(--accent);
    font-size: 1.6rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    margin-bottom: 1rem;
}
.client-icon i {
    font-size: 1.6rem;
    line-height: 1;
    display: inline-block;
    color: var(--accent) !important;
    opacity: 1 !important;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.client-card h4 { margin: 0 0 0.4rem 0; font-size: 1rem; }
.client-name { color: var(--text-dim); margin-bottom: 0.6rem; font-size: 0.9rem; }
.accent-line { width: 36px; height: 3px; background: var(--accent); margin: 0.75rem 0; border-radius: 2px; }
.client-link { color: var(--accent); font-weight: 700; margin-top: 0.5rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.client-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.6); border-color: rgba(255,85,0,0.12); background: linear-gradient(180deg, rgba(255,85,0,0.02), transparent); }

.clients-cta-bar {
    margin-top: 2rem;
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cta-left { display: flex; align-items: center; gap: 1rem; color: var(--text-dim); }
.cta-left .cta-text { line-height: 1.2; }
.cta-right { display: flex; align-items: center; }

/* Responsive columns for wider mobile/devices but still desktop-only (hidden below 768px) */
@media (max-width: 1400px) {
    .clients-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1200px) {
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1000px) {
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
    .clients-cta-bar { flex-direction: column; align-items: stretch; gap: 1rem; }
    .cta-right { justify-content: flex-end; }
}
@media (max-width: 820px) {
    .clients-grid { grid-template-columns: 1fr; }
}
