/* ===== BASE FONT ===== */
* { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.02em; }

/* ===== TYPEWRITER ===== */
.typewrite > .wrap { border-right: 0.08em solid #EE483D; }

/* ===== HERO GRADIENT ANIMATION ===== */
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-gradient {
    background: linear-gradient(-45deg, #1e1e5c, #49499A, #2d2d7a, #3b0f6e);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
}

/* ===== FLOATING BLOBS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33%       { transform: translateY(-20px) rotate(5deg); }
    66%       { transform: translateY(10px) rotate(-3deg); }
}
.blob { animation: float 8s ease-in-out infinite; }
.blob-2 { animation: float 11s ease-in-out infinite reverse; }

/* ===== FADE IN UP ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeInUp 0.7s ease forwards; }
.fade-up-2 { animation: fadeInUp 0.9s ease forwards; }
.fade-up-3 { animation: fadeInUp 1.1s ease forwards; }

/* ===== MARQUEE ===== */
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-track { animation: marquee 20s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }

/* ===== CARD HOVER ===== */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(238,72,61,0.12);
}

/* ===== GLOW BUTTON ===== */
.btn-glow {
    box-shadow: 0 0 0 0 rgba(238,72,61,0.5);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.btn-glow:hover {
    box-shadow: 0 0 25px 4px rgba(238,72,61,0.35);
    transform: translateY(-2px);
}

/* ===== PROCESS STEP LINE ===== */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: linear-gradient(to right, #EE483D, #49499A);
    opacity: 0.3;
}

/* ===== STAT COUNTER ===== */
.stat-card { transition: transform 0.3s ease; }
.stat-card:hover { transform: scale(1.05); }

/* ===== TECH ICON ===== */
.tech-icon { transition: all 0.3s ease; }
.tech-icon:hover { transform: translateY(-6px); }

/* ===== INDUSTRY BOX ===== */
.industry-box { transition: all 0.3s ease; }
.industry-box:hover { background: #EE483D; transform: translateY(-4px); }
.industry-box:hover i, .industry-box:hover h3 { color: white !important; }

/* ===== SECTION BADGE ===== */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(238,72,61,0.1), rgba(73,73,154,0.1));
    border: 1px solid rgba(238,72,61,0.2);
    color: #EE483D;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, #EE483D, #ff8a65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== GLASS CARD ===== */
.glass {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }

/* ===== SMOOTH SCROLL ===== */
html { scroll-behavior: smooth; }

/* ===== BLOG CATEGORY BADGE COLORS ===== */
.bg-blue-100   { background-color: #dbeafe; }
.text-blue-700 { color: #1d4ed8; }
.bg-green-100   { background-color: #dcfce7; }
.text-green-700 { color: #15803d; }
.bg-purple-100   { background-color: #f3e8ff; }
.text-purple-700 { color: #7e22ce; }
.bg-red-100   { background-color: #fee2e2; }
.text-red-700 { color: #b91c1c; }
.bg-orange-100   { background-color: #ffedd5; }
.text-orange-700 { color: #c2410c; }
.bg-indigo-100   { background-color: #e0e7ff; }
.text-indigo-700 { color: #4338ca; }
.bg-teal-100   { background-color: #ccfbf1; }
.text-teal-700 { color: #0f766e; }
.bg-gray-100   { background-color: #f3f4f6; }
.text-gray-700 { color: #374151; }


/* ===== BLOG POST — MISSING TAILWIND CLASSES ===== */
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
@media (min-width: 1024px) { .lg\:flex-row { flex-direction: row; } .lg\:w-80 { width: 20rem; } }
@media (min-width: 1280px) { .xl\:w-96 { width: 24rem; } }

/* ===== EXPERT CTA SECTION (blog-post.php) ===== */
.expert-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1e5c 0%, #2d2d8a 55%, #49499A 100%);
    padding: 80px 0;
}
.expert-cta::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 340px; height: 340px;
    background: rgba(238,72,61,.07); border-radius: 50%; pointer-events: none;
}
.expert-cta::after {
    content: '';
    position: absolute; bottom: -60px; left: -60px;
    width: 260px; height: 260px;
    background: rgba(255,255,255,.04); border-radius: 50%; pointer-events: none;
}
.expert-cta-inner { position: relative; text-align: center; }
.expert-cta-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(238,72,61,.15); border: 1px solid rgba(238,72,61,.3);
    color: #ff8a75; font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 999px; margin-bottom: 20px;
}
.expert-cta-title {
    color: #fff;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.25; margin: 0 auto 14px; max-width: 680px;
}
.expert-cta-desc {
    color: rgba(255,255,255,.6);
    font-size: 1rem; max-width: 540px;
    margin: 0 auto 30px; line-height: 1.7;
}
.expert-cta-stats {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 14px 32px; margin-bottom: 30px;
}
.expert-cta-stat {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.75); font-size: .875rem;
}
.expert-cta-btns {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 14px; margin-bottom: 16px;
}
.expert-cta-btn-wa {
    display: inline-flex; align-items: center; gap: 9px;
    background: #22c55e; color: #fff;
    padding: 14px 32px; border-radius: 14px;
    font-weight: 700; font-size: .95rem; text-decoration: none;
    box-shadow: 0 8px 24px rgba(34,197,94,.3); transition: all .2s;
}
.expert-cta-btn-wa:hover { background: #16a34a; transform: translateY(-2px); color: #fff; }
.expert-cta-btn-quote {
    display: inline-flex; align-items: center; gap: 9px;
    background: #fff; color: #1e1e5c;
    padding: 14px 32px; border-radius: 14px;
    font-weight: 700; font-size: .95rem; text-decoration: none; transition: all .2s;
}
.expert-cta-btn-quote:hover { background: #f3f4f6; transform: translateY(-2px); color: #1e1e5c; }
.expert-cta-note { color: rgba(255,255,255,.35); font-size: .78rem; margin: 0; }

/* ===== CITY HERO — ANIMATIONS ===== */
@keyframes hero-float-a { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-22px) scale(1.04)} }
@keyframes hero-float-b { 0%,100%{transform:translateY(0) translateX(0)} 33%{transform:translateY(-14px) translateX(12px)} 66%{transform:translateY(10px) translateX(-10px)} }
@keyframes hero-float-c { 0%,100%{transform:translateY(0)} 50%{transform:translateY(18px)} }
@keyframes hero-spin-cw  { to { transform: rotate(360deg); } }
@keyframes hero-spin-ccw { to { transform: rotate(-360deg); } }
@keyframes hero-slide-up { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes hero-badge-pop { 0%{opacity:0;transform:scale(.85)} 70%{transform:scale(1.04)} 100%{opacity:1;transform:scale(1)} }
.h-anim-1 { animation: hero-slide-up .55s .05s ease both; }
.h-anim-2 { animation: hero-slide-up .55s .18s ease both; }
.h-anim-3 { animation: hero-slide-up .55s .32s ease both; }
.h-anim-4 { animation: hero-slide-up .55s .46s ease both; }
.h-badge  { animation: hero-badge-pop .5s .1s ease both; }
.h-blob-1 { animation: hero-float-a 7s ease-in-out infinite; }
.h-blob-2 { animation: hero-float-b 10s ease-in-out infinite; }
.h-blob-3 { animation: hero-float-c 8s 1s ease-in-out infinite; }
.h-ring-1 { animation: hero-spin-cw 22s linear infinite; }
.h-ring-2 { animation: hero-spin-ccw 14s linear infinite; }
.h-card-stat { transition: transform .2s ease, box-shadow .2s ease; }
.h-card-stat:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(73,73,154,.12); }

/* ===== CITY HERO GRID (9/3 = 75% / 25%) ===== */
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 3fr 1fr; align-items: center; gap: 40px; } }
.hero-left { text-align: center; }
@media (min-width: 1024px) { .hero-left { text-align: left; } }


/* CITY PAGE */

/* Hero section wrapper */
.city-hero-section {
    background: #F4F4FF;
    position: relative;
    overflow: hidden;
}

/* Hero animated blobs */
.city-hero-blob-1 {
    position: absolute;
    top: -120px;
    left: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(73,73,154,.13) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}
.city-hero-blob-2 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(238,72,61,.10) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}
.city-hero-blob-3 {
    position: absolute;
    top: 35%;
    left: 48%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(73,73,154,.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Hero dot grid overlay */
.city-hero-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(73,73,154,.14) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

/* Hero spinning rings */
.city-hero-ring-1 {
    position: absolute;
    top: 16px;
    right: 64px;
    width: 130px;
    height: 130px;
    border: 2px dashed rgba(73,73,154,.18);
    border-radius: 50%;
    pointer-events: none;
}
.city-hero-ring-2 {
    position: absolute;
    top: 52px;
    right: 102px;
    width: 58px;
    height: 58px;
    border: 2px dashed rgba(238,72,61,.22);
    border-radius: 50%;
    pointer-events: none;
}

/* Hero floating accent squares */
.city-hero-sq-1 {
    position: absolute;
    top: 18%;
    right: 22%;
    width: 14px;
    height: 14px;
    background: #49499A;
    opacity: .18;
    border-radius: 3px;
    transform: rotate(22deg);
    pointer-events: none;
}
.city-hero-sq-2 {
    position: absolute;
    top: 60%;
    right: 35%;
    width: 10px;
    height: 10px;
    background: #EE483D;
    opacity: .20;
    border-radius: 2px;
    transform: rotate(-15deg);
    pointer-events: none;
}
.city-hero-sq-3 {
    position: absolute;
    top: 75%;
    left: 20%;
    width: 16px;
    height: 16px;
    background: #49499A;
    opacity: .12;
    border-radius: 4px;
    transform: rotate(40deg);
    pointer-events: none;
}

/* Hero inner content container */
.city-hero-inner {
    padding-top: 24px;
    padding-bottom: 24px;
}

/* Badge animated dot */
.city-hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #EE483D;
    display: inline-block;
    animation: hero-float-a 1.8s ease-in-out infinite;
}

/* Why-us card header gradient */
.city-whyus-card-header {
    background: linear-gradient(135deg, #1e1e5c 0%, #49499A 100%);
}

/* Process step icon gradient */
.city-process-icon {
    background: linear-gradient(135deg, #1e1e5c, #49499A);
}

/* Testimonial avatar gradient */
.city-testimonial-avatar {
    background: linear-gradient(135deg, #49499A, #EE483D);
}

/* CTA section wrapper */
.city-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1e5c 0%, #2d2d8a 55%, #49499A 100%);
    padding: 80px 0;
}

/* CTA decorative circles */
.city-cta-deco-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    background: rgba(238,72,61,.07);
    border-radius: 50%;
    pointer-events: none;
}
.city-cta-deco-2 {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
    pointer-events: none;
}
.city-cta-deco-3 {
    position: absolute;
    top: 30%;
    left: 8%;
    width: 10px;
    height: 10px;
    background: rgba(238,72,61,.35);
    border-radius: 50%;
    pointer-events: none;
}
.city-cta-deco-4 {
    position: absolute;
    bottom: 28%;
    right: 7%;
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    pointer-events: none;
}

/* CTA inner (relative wrapper) */
.city-cta-inner {
    position: relative;
}

/* CTA heading block */
.city-cta-heading-wrap {
    text-align: center;
    margin-bottom: 24px;
}

/* CTA badge pill */
.city-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(238,72,61,.15);
    border: 1px solid rgba(238,72,61,.3);
    color: #ff8a75;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
}

/* CTA main heading */
.city-cta-title {
    text-align: center;
    color: #fff;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin: 0 auto 16px;
    max-width: 680px;
}

/* CTA gradient text span */
.city-cta-title-highlight {
    background: linear-gradient(90deg, #EE483D, #ff8a65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA sub-paragraph */
.city-cta-desc {
    text-align: center;
    color: rgba(255,255,255,.6);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* CTA stats row */
.city-cta-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
}

/* Individual CTA stat item */
.city-cta-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
}

/* CTA stat icon colours */
.city-cta-stat-icon-green  { color: #4ade80; font-size: 1rem; }
.city-cta-stat-icon-blue   { color: #60a5fa; font-size: 1rem; }
.city-cta-stat-icon-yellow { color: #fbbf24; font-size: 1rem; }
.city-cta-stat-icon-pink   { color: #f472b6; font-size: 1rem; }

/* CTA buttons row */
.city-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* CTA primary button */
.city-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EE483D;
    color: #fff;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(238,72,61,.35);
    transition: all .2s;
}
.city-cta-btn-primary:hover {
    background: #d43c32;
    transform: translateY(-2px);
    color: #fff;
}

/* CTA WhatsApp button */
.city-cta-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,.15);
    border: 1.5px solid rgba(34,197,94,.4);
    color: #4ade80;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .2s;
}
.city-cta-btn-wa:hover {
    background: rgba(34,197,94,.25);
    transform: translateY(-2px);
    color: #4ade80;
}

/* Tailwind missing utility */
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

/* City hero layout widths */
@media (min-width: 1024px) {
    .lg\:w-\[60\%\] { width: 60%; }
    .lg\:w-\[40\%\] { width: 40%; }
}
