/* ==========================================================================
   GEEZ HABESHA PRINTING — AUTHORITATIVE PUBLIC DESIGN SYSTEM
   Full Technical Rebuild: Scoped, Modern, Zero-Conflict CSS
   Color System: Locked #F4390E Palette, Tints, Shades & Accents
   ========================================================================== */

:root {
    /* Primary Brand Base */
    --brand: #F4390E;
    --primary: #F4390E;

    /* Tints (Mixing with White) */
    --brand-10: #F54D26;
    --brand-20: #F6613E;
    --brand-30: #F77456;
    --brand-40: #F8886E;
    --brand-50: #FA9C87;
    --brand-60: #FBB09F;
    --brand-70: #FCC4B7;
    --brand-80: #FDD7CF;
    --brand-90: #FEEBE7;
    --brand-100: #FFFFFF;

    /* Shades (Mixing with Black) */
    --deep-10: #DC330D;
    --deep-20: #C32E0B;
    --deep-30: #AB280A;
    --deep-40: #922208;
    --deep-50: #7A1D07;
    --deep-60: #621706;
    --deep-70: #491104;
    --deep-80: #310B03;
    --deep-90: #180601;
    --deep-100: #000000;

    /* Neutrals */
    --white: #FFFFFF;
    --dark: #0F172A;
    --dark-muted: #334155;
    --dark-light: #64748B;
    --bg-light: #FFFFFF;
    --bg-soft: #F8FAFC;
    --bg-card: #FFFFFF;
    --border-color: #E2E8F0;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #F4390E 0%, #F6613E 50%, #F8886E 100%);
    --gradient-soft: linear-gradient(135deg, #FFFFFF 0%, #FEEBE7 100%);
    --gradient-deep: linear-gradient(135deg, #F4390E 0%, #922208 60%, #310B03 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --shadow-brand: 0 10px 25px rgba(244, 57, 14, 0.25);

    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-pill: 9999px;

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   BASE & RESET FOR PUBLIC PAGES
   ========================================================================== */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.public-site,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--dark);
    background-color: var(--bg-soft);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
    box-sizing: border-box;
}

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

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

button, input, select, textarea {
    font-family: inherit;
}

/* ==========================================================================
   HABESHA BACKGROUND PATTERN UTILITIES
   ========================================================================== */
.has-habesha-patterns {
    position: relative;
    background-color: var(--bg-soft);
}

.has-habesha-patterns::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--brand-80) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.has-habesha-patterns > * {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   1. SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.site-header.scrolled {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

/* Utility Top Bar */
.utility-bar {
    background-color: var(--dark);
    color: #CBD5E1;
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.utility-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94A3B8;
    transition: var(--transition-fast);
}

.utility-item i {
    color: var(--brand);
    font-size: 0.85rem;
}

.utility-item:hover {
    color: #FFFFFF;
}

.social-cluster {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #E2E8F0;
    font-size: 0.78rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--brand);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Main Navigation Bar */
.main-header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.desktop-nav ul li a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-muted);
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
}

.desktop-nav ul li a:hover {
    color: var(--brand);
    background-color: var(--brand-90);
}

.desktop-nav ul li a.active {
    color: #FFFFFF;
    background-color: var(--brand);
    font-weight: 600;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-brand);
    color: #FFFFFF;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-brand);
    transition: var(--transition-fast);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(244, 57, 14, 0.35);
    color: #FFFFFF;
}

/* Hamburger Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle div {
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 1060;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.drawer-close-btn {
    background: var(--bg-soft);
    border: 1px solid var(--border-color);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.drawer-close-btn:hover {
    background: var(--brand);
    color: #FFFFFF;
    border-color: var(--brand);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

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

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--brand-90);
    color: var(--brand);
    font-weight: 600;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn-primary-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-brand);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-brand);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    justify-content: center;
}

.btn-primary-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(244, 57, 14, 0.35);
}

.btn-secondary-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary-pill:hover {
    background: var(--bg-soft);
    border-color: var(--brand);
    color: var(--brand) !important;
    transform: translateY(-2px);
}

.btn-outline-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--brand) !important;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--brand);
    transition: var(--transition-fast);
}

.btn-outline-brand:hover {
    background: var(--brand);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-90);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--brand);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--dark-light);
    line-height: 1.6;
}

.section-footer-cta {
    text-align: center;
    margin-top: 45px;
}

/* ==========================================================================
   2. HERO SLIDER SECTION (EXACT TYPESCRIPT CLONE — 3D PRISM MESH & CUTOUT)
   ========================================================================== */
.hero.ts-hero-section,
.hero.creative-hero-section,
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #feebe7 45%, #fdd7cf 100%);
    border-bottom: 1px solid rgba(244, 57, 14, 0.2);
    padding: 0;
    box-sizing: border-box;
}

/* Faceted Low-Poly SVG Prism Mesh Background */
.ts-hero-svg-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ts-hero-faceted-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ambient Radial Flares */
.ts-hero-flare {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(48px);
    z-index: 1;
}

.ts-hero-flare-tl {
    top: -128px;
    left: -128px;
    background: radial-gradient(circle, rgba(244, 57, 14, 0.25) 0%, rgba(246, 97, 62, 0.15) 50%, transparent 70%);
}

.ts-hero-flare-br {
    bottom: -128px;
    right: -128px;
    background: radial-gradient(circle, rgba(220, 51, 13, 0.3) 0%, rgba(247, 116, 86, 0.15) 50%, transparent 70%);
}

/* Hero Content Container & Viewfinder Brackets */
.ts-hero-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 50px;
    z-index: 10;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .ts-hero-wrapper {
        padding: 56px 32px 64px;
    }
}

@media (min-width: 1024px) {
    .ts-hero-wrapper {
        padding: 64px 32px 72px;
    }
}

/* Corner Viewfinder Technical Framing Brackets */
.ts-viewfinder-bracket {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: #f4390e;
    pointer-events: none;
    z-index: 15;
}

.ts-viewfinder-bracket.bracket-tl {
    top: 16px;
    left: 16px;
    border-left: 2px solid;
    border-top: 2px solid;
}

.ts-viewfinder-bracket.bracket-tr {
    top: 16px;
    right: 16px;
    border-right: 2px solid;
    border-top: 2px solid;
}

.ts-viewfinder-bracket.bracket-bl {
    bottom: 16px;
    left: 16px;
    border-left: 2px solid;
    border-bottom: 2px solid;
}

.ts-viewfinder-bracket.bracket-br {
    bottom: 16px;
    right: 16px;
    border-right: 2px solid;
    border-bottom: 2px solid;
}

/* Top Domain Pill Badge */
.ts-hero-top-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 12;
}

@media (min-width: 640px) {
    .ts-hero-top-badge {
        margin-bottom: 32px;
    }
}

.ts-domain-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(244, 57, 14, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}

.ts-ping-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f4390e;
    animation: tsPing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes tsPing {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.ts-domain-text {
    font-family: 'Plus Jakarta Sans', monospace, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ab280a;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .ts-domain-text {
        font-size: 12px;
    }
}

/* Hero Carousel Slider Track */
.ts-hero-section .hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    z-index: 10;
}

.ts-hero-slide {
    display: none;
    width: 100%;
}

.ts-hero-slide.active {
    display: block;
    animation: tsHeroFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Grid Layout: 7 cols left, 5 cols right */
.ts-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .ts-hero-grid {
        grid-template-columns: 7fr 5fr;
        gap: 48px;
    }
}

/* Left Column Styling */
.ts-hero-col-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .ts-hero-col-left {
        text-align: left;
    }
}

/* Kicker Row */
.ts-kicker-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .ts-kicker-row {
        justify-content: flex-start;
    }
}

.ts-prefix-pill {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 9999px;
    background: #f4390e;
    box-shadow: 0 1px 2px rgba(244, 57, 14, 0.2);
}

@media (min-width: 640px) {
    .ts-prefix-pill {
        font-size: 14px;
    }
}

.ts-kicker-text {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .ts-kicker-text {
        font-size: 14px;
    }
}

/* Display Headline & Connected Calligraphy Script Overlay */
.ts-headline-wrapper {
    position: relative;
    user-select: none;
    padding: 6px 0;
    margin-top: 4px;
}

.ts-hero-h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #0f172a;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

@media (min-width: 640px) {
    .ts-hero-h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .ts-hero-h1 {
        font-size: 4.5rem;
    }
}

.ts-headline-gradient {
    display: block;
    background: linear-gradient(90deg, #180601 0%, #c32e0b 50%, #f4390e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}

.ts-script-overlay {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    z-index: 20;
    pointer-events: none;
}

@media (min-width: 640px) {
    .ts-script-overlay {
        top: -20px;
    }
}

@media (min-width: 1024px) {
    .ts-script-overlay {
        left: 120px;
        transform: rotate(-5deg);
    }
}

.ts-script-badge {
    font-family: 'Caveat', cursive, serif;
    font-style: italic;
    font-weight: 800;
    font-size: 2rem;
    color: #f4390e;
    padding: 4px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(244, 57, 14, 0.4);
    box-shadow: 0 10px 25px rgba(244, 57, 14, 0.2);
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
}

@media (min-width: 640px) {
    .ts-script-badge {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .ts-script-badge {
        font-size: 3.75rem;
    }
}

/* Description */
.ts-hero-description {
    font-size: 0.88rem;
    color: #475569;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 500;
}

@media (min-width: 640px) {
    .ts-hero-description {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .ts-hero-description {
        margin: 0;
    }
}

/* Feature Pills Row */
.ts-feature-pills-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 4px;
}

@media (min-width: 640px) {
    .ts-feature-pills-row {
        gap: 12px;
    }
}

@media (min-width: 1024px) {
    .ts-feature-pills-row {
        justify-content: flex-start;
    }
}

.ts-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(244, 57, 14, 0.2);
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.text-brand { color: #f4390e; }
.text-accent { color: #f6613e; }
.text-emerald { color: #059669; }

/* Action CTA Buttons */
.ts-hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
}

@media (min-width: 640px) {
    .ts-hero-ctas {
        flex-direction: row;
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .ts-hero-ctas {
        justify-content: flex-start;
    }
}

.ts-btn-primary {
    width: 100%;
    padding: 14px 28px;
    border-radius: 12px;
    background: linear-gradient(90deg, #f4390e 0%, #f54d26 50%, #dc330d 100%);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(244, 57, 14, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

@media (min-width: 640px) {
    .ts-btn-primary {
        width: auto;
    }
}

.ts-btn-primary:hover {
    background: linear-gradient(90deg, #f6613e 0%, #f4390e 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(244, 57, 14, 0.4);
}

.ts-btn-secondary {
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    background: #ffffff;
    color: #1e293b !important;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #cbd5e1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

@media (min-width: 640px) {
    .ts-btn-secondary {
        width: auto;
    }
}

.ts-btn-secondary:hover {
    background: #f8fafc;
    color: #f4390e !important;
    border-color: #f4390e;
    transform: translateY(-2px);
}

/* Right Column: 3D Halo Rings & Cutout Stage */
.ts-hero-col-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    width: 100%;
}

@media (min-width: 1024px) {
    .ts-hero-col-right {
        margin-top: 0;
    }
}

.ts-orbit-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ts-orbit-ring-outer {
    width: 288px;
    height: 288px;
    border: 2px dashed rgba(244, 57, 14, 0.3);
    animation: tsSpin 40s linear infinite;
}

@media (min-width: 640px) {
    .ts-orbit-ring-outer {
        width: 384px;
        height: 384px;
    }
}

@keyframes tsSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ts-orbit-ring-mid {
    width: 240px;
    height: 240px;
    border: 1px solid rgba(244, 57, 14, 0.2);
}

@media (min-width: 640px) {
    .ts-orbit-ring-mid {
        width: 320px;
        height: 320px;
    }
}

.ts-orbit-ring-glow {
    position: absolute;
    width: 192px;
    height: 192px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 57, 14, 0.15) 0%, rgba(253, 215, 207, 0.3) 50%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

@media (min-width: 640px) {
    .ts-orbit-ring-glow {
        width: 256px;
        height: 256px;
    }
}

/* Product Cutout Stage */
.ts-product-stage {
    position: relative;
    width: 100%;
    max-width: 448px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .ts-product-stage {
        aspect-ratio: 1/1;
    }
}

.ts-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(244, 57, 14, 0.25));
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.ts-product-stage:hover .ts-product-img {
    transform: scale(1.05);
}

.ts-ground-shadow {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 32px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 100%;
    filter: blur(8px);
    pointer-events: none;
    z-index: 2;
}

/* Bottom Floating Glass Badge */
.ts-glass-badge {
    position: absolute;
    bottom: -8px;
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(244, 57, 14, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 20;
}

.ts-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f4390e 0%, #ab280a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(244, 57, 14, 0.3);
}

.ts-badge-info {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ts-badge-title {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ts-badge-sub {
    font-size: 11px;
    font-weight: 600;
    color: #f4390e;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Top Right Guaranteed Floating Tag */
.ts-guarantee-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 12px;
    border-radius: 9999px;
    background: #f4390e;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(244, 57, 14, 0.3);
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Slider Controls Bar (Bottom) */
.ts-controls-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(244, 57, 14, 0.2);
    margin-top: 32px;
    width: 100%;
}

@media (min-width: 640px) {
    .ts-controls-bar {
        padding-top: 48px;
    }
}

.ts-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', monospace, sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
}

.ts-counter-current {
    color: #0f172a;
    font-size: 14px;
}

.ts-counter-slash {
    color: #f4390e;
    font-weight: 900;
}

.ts-dots-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ts-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.ts-dot:hover {
    background: #94a3b8;
}

.ts-dot.active {
    width: 32px;
    height: 10px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #f4390e 0%, #f6613e 100%);
    box-shadow: 0 4px 12px rgba(244, 57, 14, 0.4);
}

.ts-arrows-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ts-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.ts-arrow-btn:hover {
    background: #f8fafc;
    color: #f4390e;
    border-color: #f4390e;
}

.ts-arrow-btn.ts-arrow-next {
    background: linear-gradient(90deg, #f4390e 0%, #dc330d 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(244, 57, 14, 0.3);
}

.ts-arrow-btn.ts-arrow-next:hover {
    background: linear-gradient(90deg, #f6613e 0%, #f4390e 100%);
    box-shadow: 0 6px 16px rgba(244, 57, 14, 0.4);
}
    display: flex;
    gap: 10px;
}

.slider-prev,
.slider-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--brand);
    color: #FFFFFF;
    border-color: var(--brand);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    width: 32px;
    background: var(--brand);
}

/* ==========================================================================
   3. CORE SERVICES 5-GRID
   ========================================================================== */
.services-section {
    padding: 90px 0;
    background-color: var(--bg-soft);
}

.services-grid-5 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.service-card-item {
    background: #FFFFFF;
    padding: 36px 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-70);
}

.service-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

/* Color Tint Variations */
.service-tint-1 .service-icon-circle { background: var(--brand-90); color: var(--brand); }
.service-tint-2 .service-icon-circle { background: #FEF3C7; color: #D97706; }
.service-tint-3 .service-icon-circle { background: #E0E7FF; color: #4F46E5; }
.service-tint-4 .service-icon-circle { background: #DCFCE7; color: #16A34A; }
.service-tint-5 .service-icon-circle { background: #FCE7F3; color: #DB2777; }

.service-card-item:hover .service-icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.service-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.92rem;
    color: var(--dark-light);
    line-height: 1.55;
}

/* ==========================================================================
   4. WHY CHOOSE US
   ========================================================================== */
.why-us-section {
    padding: 90px 0;
    background: #FFFFFF;
}

.why-us-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.why-us-card {
    background: var(--bg-soft);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.why-us-card:hover {
    background: #FFFFFF;
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-80);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-90);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.why-us-card h4 {
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-us-card p {
    font-size: 0.94rem;
    color: var(--dark-light);
    line-height: 1.6;
}

/* ==========================================================================
   5. PORTFOLIO SHOWCASE
   ========================================================================== */
.portfolio-section {
    padding: 90px 0;
    background-color: var(--bg-soft);
}

.portfolio-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.portfolio-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.portfolio-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.portfolio-card:hover .portfolio-media img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.portfolio-card-info {
    padding: 22px;
}

.portfolio-badge {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand);
    background: var(--brand-90);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 8px;
}

.portfolio-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
}

/* ==========================================================================
   6. TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    padding: 90px 0;
    background: #FFFFFF;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-soft);
    padding: 34px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-80);
}

.testimonial-rating {
    color: #F59E0B;
    margin-bottom: 16px;
    font-size: 0.95rem;
    display: flex;
    gap: 4px;
}

.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--dark-muted);
    line-height: 1.65;
    margin: 0 0 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-initial-avatar {
    width: 100%;
    height: 100%;
    background: var(--brand-90);
    color: var(--brand);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.testimonial-author-info strong {
    display: block;
    font-size: 0.98rem;
    color: var(--dark);
}

.testimonial-author-info span {
    font-size: 0.82rem;
    color: var(--dark-light);
}

/* ==========================================================================
   7. CLIENTS / PARTNERS RIBBON
   ========================================================================== */
.clients-ribbon-section {
    padding: 50px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.clients-ribbon-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.clients-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-light);
    margin-bottom: 24px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: var(--transition-fast);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08);
}

.client-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   8. STATISTICS BANNER
   ========================================================================== */
.stats-banner-section {
    padding: 40px 0 80px;
    background: #FFFFFF;
}

.stats-banner-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.stats-gradient-box {
    background: var(--gradient-brand);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    box-shadow: var(--shadow-brand);
    color: #FFFFFF;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-icon {
    font-size: 2.2rem;
    opacity: 0.9;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.stat-dark-badge {
    background: rgba(0, 0, 0, 0.15);
    padding: 12px 18px;
    border-radius: var(--radius-lg);
}

/* ==========================================================================
   9. CALL TO ACTION (CTA)
   ========================================================================== */
.cta-section {
    padding: 80px 0;
    background-color: var(--bg-soft);
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--dark-light);
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ==========================================================================
   10. SITE FOOTER
   ========================================================================== */
footer {
    background-color: var(--dark);
    color: #E2E8F0;
    padding: 80px 0 0;
    font-size: 0.92rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--brand);
    border-radius: 2px;
}

.footer-col p {
    color: #94A3B8;
    line-height: 1.65;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: #FFFFFF;
    padding-left: 6px;
}

.bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    text-align: center;
    color: #64748B;
    font-size: 0.85rem;
}

/* ==========================================================================
   11. MOBILE BOTTOM NAVIGATION BAR
   ========================================================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    padding: 8px 16px;
}

.mobile-bottom-nav-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--dark-light);
    transition: var(--transition-fast);
}

.mobile-nav-item i {
    font-size: 1.15rem;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--brand);
    font-weight: 600;
}

/* ==========================================================================
   12. ABOUT US PAGE STYLES
   ========================================================================== */
.page-hero {
    background: linear-gradient(180deg, #FFFFFF 0%, #FEEBE7 100%);
    padding: 60px 0 70px;
    text-align: center;
}

.page-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-story-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-media {
    position: relative;
}

.about-story-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 4px solid #FFFFFF;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.mission-vision-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-box {
    background: #FFFFFF;
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.mv-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-70);
}

.mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--brand-90);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.values-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.value-card {
    background: #FFFFFF;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-80);
}

/* ==========================================================================
   13. SERVICES PAGE STYLES
   ========================================================================== */
.services-catalog {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    transition: var(--transition-normal);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-70);
}

.service-detail-card.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dark-muted);
}

.service-features-list li i {
    color: var(--brand);
}

/* Process Timeline */
.process-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.process-card {
    background: #FFFFFF;
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    text-align: center;
}

.process-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

/* FAQ Accordion */
.faq-container {
    max-width: 860px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--brand);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--dark-light);
    line-height: 1.65;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================================================
   14. CONTACT US PAGE STYLES
   ========================================================================== */
.contact-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #FFFFFF;
    padding: 24px 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-normal);
}

.info-card:hover {
    transform: translateX(6px);
    border-left: 4px solid var(--brand);
    box-shadow: var(--shadow-md);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--brand-90);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-card-text h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-light);
    margin-bottom: 4px;
}

.info-card-text p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.contact-form-wrapper {
    background: #FFFFFF;
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.contact-form-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-muted);
    margin-bottom: 8px;
}

.extreme-input,
.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-color);
    background: var(--bg-soft);
    font-size: 0.98rem;
    color: var(--dark);
    transition: var(--transition-fast);
}

.extreme-input:focus,
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px var(--brand-90);
}

.visible-send-btn {
    width: 100%;
    background: var(--gradient-brand);
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-brand);
    transition: var(--transition-fast);
}

.visible-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(244, 57, 14, 0.35);
}

/* Twilight Alert Notifications */
.twilight-alert {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 18px 30px;
    border-radius: var(--radius-md);
    color: #FFFFFF;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.96);
    border-left: 6px solid var(--brand);
    backdrop-filter: blur(10px);
    display: none;
    box-shadow: var(--shadow-lg);
    animation: twilightSlide 0.4s ease-out;
}

@keyframes twilightSlide {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Leaflet Map Styling */
.geez-custom-pin {
    background: transparent;
    border: none;
}

/* ==========================================================================
   15. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-slide-content {
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-slide-artwork {
        margin-top: 30px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-bottom-nav {
        display: block;
    }
    body.public-site {
        padding-bottom: 65px;
    }
    .about-story-grid,
    .mission-vision-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hide-on-mobile {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 10px 16px;
    }
    .hero {
        padding: 40px 0 60px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-image-frame {
        height: 300px;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 24px 18px;
    }
    .service-features-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   16. TYPESCRIPT WEBSITE UI CLONE — PUBLIC WEBSITE OVERRIDES
   These styles intentionally sit after the legacy public styles so the PHP
   pages visually match src/components/WebsiteView.tsx + HeroSlider.tsx.
   ========================================================================== */
.ts-site-header { position: sticky; top: 0; z-index: 1000; background: transparent; box-shadow: none; }
.ts-container { width: min(100% - 32px, 1280px); margin: 0 auto; }
.ts-utility-bar { background: #f4390e; color: #fff; font-size: 12px; font-weight: 700; }
.ts-utility-inner { min-height: 34px; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.ts-utility-left, .ts-utility-right { display:flex; align-items:center; gap:20px; }
.ts-utility-bar a, .ts-utility-bar span { color:#fff; opacity:.96; display:inline-flex; align-items:center; gap:7px; }
.ts-utility-bar a:hover { opacity:1; }
.ts-utility-bar i { font-size:11px; }
.ts-utility-socials { display:flex; gap:5px; }
.ts-utility-socials a { min-width:24px; height:24px; padding:0 6px; border-radius:7px; background:rgba(255,255,255,.18); justify-content:center; font-size:9px; font-weight:900; }
.ts-utility-socials a:hover { background:#fff; color:#f4390e; }
.ts-nav { background:rgba(255,255,255,.96); backdrop-filter: blur(16px); border-bottom:1px solid #f1f5f9; box-shadow:0 2px 12px rgba(15,23,42,.05); }
.ts-nav-inner { min-height:72px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.ts-brand { display:inline-flex; align-items:center; gap:11px; min-width:max-content; }
.ts-brand-mark { width:40px; height:40px; border-radius:12px; background:linear-gradient(135deg,#f4390e,#c32e0b); color:#fff; display:flex; align-items:center; justify-content:center; font-size:20px; font-weight:900; box-shadow:0 7px 18px rgba(244,57,14,.25); }
.ts-brand-copy { display:flex; flex-direction:column; }
.ts-brand-name { font-size:20px; line-height:1; font-weight:900; letter-spacing:-.03em; color:#0f172a; }
.ts-brand-name b { color:#f4390e; }
.ts-brand-copy small { margin-top:4px; color:#f4390e; font-size:9px; line-height:1; font-weight:900; letter-spacing:.18em; text-transform:uppercase; }
.ts-nav-links { display:flex; align-items:center; gap:24px; color:#334155; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.ts-nav-links a { position:relative; padding:7px 0; color:#334155; }
.ts-nav-links a:hover, .ts-nav-links a.active { color:#f4390e; }
.ts-nav-links a.active::after { content:""; position:absolute; left:0; right:0; bottom:0; height:2px; border-radius:10px; background:#f4390e; }
.ts-nav-actions { display:flex; align-items:center; gap:10px; }
.ts-nav-cta { display:inline-flex; align-items:center; gap:8px; padding:10px 15px; border-radius:999px; color:#fff; background:linear-gradient(90deg,#f4390e,#f6613e); font-size:11px; font-weight:800; box-shadow:0 8px 22px rgba(244,57,14,.2); }
.ts-nav-cta:hover { color:#fff; transform:translateY(-1px); }
.ts-mobile-toggle { display:none; border:0; background:#f8fafc; width:38px; height:38px; border-radius:12px; padding:8px; }
.ts-mobile-toggle span { display:block; height:2px; background:#0f172a; border-radius:3px; margin:4px 0; }
.ts-mobile-drawer { padding:20px; }
.ts-drawer-top { display:flex; justify-content:space-between; align-items:center; padding-bottom:16px; border-bottom:1px solid #e2e8f0; margin-bottom:12px; }
.ts-mobile-links a { font-size:13px; font-weight:800; }
.ts-mobile-quote { margin-top:auto; width:100%; }

.public-site { font-family:'Plus Jakarta Sans','Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif !important; background:#fff !important; color:#0f172a; }
.public-site main, .public-site > section, .public-site > div { font-family:inherit; }
.public-site h1,.public-site h2,.public-site h3,.public-site h4 { letter-spacing:-.025em; }
.page-hero { background:linear-gradient(180deg,#fff 0%,#feebe7 100%); border-bottom:1px solid rgba(244,57,14,.15); padding:56px 0 60px; }
.section-eyebrow { font-size:11px; letter-spacing:.12em; font-weight:900; padding:4px 11px; }
.section-title { font-size:clamp(32px,4vw,46px); font-weight:900; }
.section-subtitle { font-size:13px; max-width:700px; margin-left:auto; margin-right:auto; }
.btn-primary-pill { font-size:12px; font-weight:800; padding:12px 20px; border-radius:12px; }
.btn-secondary-pill { font-size:12px; font-weight:800; padding:12px 18px; border-radius:12px; }

/* Home cards: closer to the TypeScript grid rhythm */
.services-section, .why-us-section, .portfolio-section { padding:68px 0; }
.services-grid-5 { gap:18px; }
.service-card-item { border-color:rgba(244,57,14,.14); border-radius:18px; padding:24px 18px; text-align:center; align-items:center; }
.service-card-item:hover { box-shadow:0 18px 36px rgba(15,23,42,.08); transform:translateY(-6px); }
.service-icon-circle { width:56px; height:56px; border-radius:16px; margin-bottom:16px; }
.service-card-title { font-size:15px; margin-bottom:8px; }
.service-card-desc { font-size:11px; line-height:1.65; }

/* Hero sizing and visual treatment */
.hero { background:linear-gradient(180deg,#fff 0%,#feebe7 100%); padding:0; min-height:auto; }
.hero-background { opacity:.7; }
.hero-slider { max-width:1280px; }
.hero-slide { min-height:620px; padding:34px 0 30px; }
.hero-slide-content { max-width:650px; }
.hero-eyebrow { font-size:11px; }
.hero-title { font-size:clamp(38px,5.4vw,66px); font-weight:900; letter-spacing:-.04em; }
.hero-desc { font-size:14px; color:#475569; }
.hero-slide-artwork { min-height:500px; }
.hero-image-frame { max-width:440px; height:390px; border-radius:26px; box-shadow:0 24px 55px rgba(15,23,42,.13); }
.hero-quality-badge { left:-8px; bottom:-10px; border-left:4px solid #f4390e; border-radius:18px; padding:12px 14px; }
.hero-controls { max-width:1280px; padding:0 24px; margin-top:12px; }

/* Partner section: no remote image dependency, so broken logo placeholders disappear */
.ts-partners-section { padding:64px 0 70px; background:#111720; border-top:1px solid #1e293b; border-bottom:1px solid #1e293b; }
.ts-section-header.center { max-width:760px; margin:0 auto 34px; text-align:center; }
.ts-eyebrow { display:inline-flex; align-items:center; gap:7px; padding:5px 10px; border-radius:999px; color:#f4390e; background:rgba(244,57,14,.1); border:1px solid rgba(244,57,14,.2); text-transform:uppercase; letter-spacing:.1em; font-weight:900; font-size:10px; }
.ts-section-header h2 { color:#fff; font-size:clamp(28px,3.5vw,38px); margin:12px 0 8px; font-weight:900; }
.ts-section-header h2 span { color:#f4390e; }
.ts-section-header p { color:#94a3b8; font-size:12px; line-height:1.7; }
.ts-partners-grid { display:grid; grid-template-columns:repeat(6,minmax(0,1fr)); gap:14px; }
.ts-partner-card { appearance:none; border:1px solid #1e293b; border-radius:18px; background:rgba(2,6,23,.7); padding:18px 12px; min-height:160px; color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; cursor:pointer; transition:.25s ease; }
.ts-partner-card:hover { transform:translateY(-4px); border-color:rgba(244,57,14,.55); background:#020617; box-shadow:0 16px 34px rgba(0,0,0,.24); }
.ts-partner-logo { width:58px; height:58px; border-radius:18px; background:linear-gradient(135deg,#f4390e,#922208); color:#fff; display:flex; align-items:center; justify-content:center; font-size:20px; font-weight:900; box-shadow:0 10px 22px rgba(244,57,14,.18); }
.ts-partner-card strong { margin-top:12px; color:#e2e8f0; font-size:11px; line-height:1.4; }
.ts-partner-card:hover strong { color:#fa9c87; }
.ts-partner-sector { color:#94a3b8; font-size:9px; line-height:1.35; margin-top:4px; min-height:24px; }
.ts-partner-verified { margin-top:9px; padding:3px 7px; border-radius:999px; border:1px solid rgba(52,211,153,.2); background:rgba(16,185,129,.08); color:#34d399; font-size:8px; font-weight:800; }

.ts-modal { position:fixed; inset:0; z-index:3000; display:flex; align-items:center; justify-content:center; padding:18px; background:rgba(2,6,23,.78); backdrop-filter:blur(8px); opacity:0; visibility:hidden; transition:.2s ease; }
.ts-modal.active { opacity:1; visibility:visible; }
.ts-modal-card { width:min(100%,540px); max-height:90vh; overflow:auto; background:#0f172a; color:#e2e8f0; border:1px solid rgba(244,57,14,.4); border-radius:26px; padding:24px; position:relative; box-shadow:0 30px 90px rgba(0,0,0,.45); }
.ts-modal-close { position:absolute; top:14px; right:14px; width:34px; height:34px; border:0; border-radius:10px; background:#1e293b; color:#94a3b8; cursor:pointer; }
.ts-modal-brandline { display:flex; align-items:center; gap:14px; padding-right:40px; }
.ts-modal-logo { width:62px; height:62px; flex:none; border-radius:18px; background:linear-gradient(135deg,#f4390e,#ab280a); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:900; font-size:22px; }
.ts-modal-kicker { color:#34d399; font-size:9px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.ts-modal-card h3 { margin:3px 0 0; color:#fff; font-size:20px; }
.ts-modal-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:22px 0; }
.ts-modal-grid > div { padding:12px; border-radius:14px; background:#020617; border:1px solid #1e293b; }
.ts-modal-grid span, .ts-modal-scope span { display:block; color:#64748b; font-size:9px; text-transform:uppercase; font-weight:900; letter-spacing:.08em; margin-bottom:5px; }
.ts-modal-grid strong { color:#e2e8f0; font-size:11px; line-height:1.4; }
.ts-modal-scope { padding:14px; border-radius:16px; background:#020617; border:1px solid #1e293b; margin-bottom:18px; }
.ts-modal-scope p { margin:0; color:#cbd5e1; font-size:11px; line-height:1.65; }

/* Footer cloned from the TypeScript WebsiteView */
.ts-footer { background:#111720; color:#94a3b8; padding:50px 0 0; border-top:1px solid #1e293b; }
.ts-footer-grid { display:grid; grid-template-columns:1.3fr 1fr 1fr 1.1fr; gap:32px; padding-bottom:38px; }
.ts-footer-brand { color:#fff; font-size:20px; font-weight:900; margin-bottom:10px; }
.ts-footer-brand b { color:#f4390e; }
.ts-footer-grid p, .ts-footer-grid a, .ts-footer-grid span { font-size:11px; line-height:1.7; }
.ts-footer-grid p { max-width:330px; }
.ts-footer-grid h4 { color:#fff; font-size:13px; margin:0 0 12px; }
.ts-footer-grid a, .ts-footer-grid span { display:block; color:#94a3b8; margin-bottom:6px; }
.ts-footer-grid a:hover { color:#fff; }
.ts-footer-socials { display:flex; gap:8px; margin-top:14px; }
.ts-footer-socials a { width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.08); color:#fff; margin:0; font-size:9px; font-weight:900; }
.ts-footer-socials a:hover { background:#f4390e; }
.ts-footer-bottom { border-top:1px solid #1e293b; text-align:center; padding:18px 16px; color:#64748b; font-size:10px; }
.ts-speed-dial { position:fixed; right:18px; bottom:18px; z-index:1200; display:flex; flex-direction:column; gap:8px; align-items:center; }
.ts-speed-dial a { width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:#0088cc; color:#fff; box-shadow:0 10px 22px rgba(15,23,42,.2); }
.ts-speed-dial a:nth-child(2) { background:#25d366; }
.ts-speed-dial a.primary { width:46px; height:46px; background:linear-gradient(135deg,#f4390e,#f6613e); box-shadow:0 12px 26px rgba(244,57,14,.35); }
.ts-speed-dial a:hover { transform:scale(1.07); }
.mobile-bottom-nav { display:none !important; }

/* Shared page section proportions */
.about-story-grid, .mission-vision-container, .values-grid, .services-catalog, .process-grid, .faq-container, .contact-grid { max-width:1280px; }
.about-story-grid { padding-top:60px; padding-bottom:60px; gap:40px; }
.mv-box, .value-card, .process-card, .faq-item, .info-card, .contact-form-wrapper, .service-detail-card { border-radius:24px; }
.service-detail-card { padding:26px; gap:28px; }

@media (max-width: 1080px) {
  .ts-nav-links { gap:15px; }
  .ts-partners-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .ts-nav-links, .ts-nav-cta { display:none; }
  .ts-mobile-toggle { display:block; }
  .ts-utility-inner { min-height:32px; padding:0 8px; }
  .ts-hide-md { display:none !important; }
  .ts-footer-grid { grid-template-columns:1fr 1fr; }
  .hero-slide { min-height:auto; padding:28px 0 24px; }
  .hero-slide-artwork { min-height:380px; }
}
@media (max-width: 620px) {
  .ts-container { width:min(100% - 20px, 1280px); }
  .ts-brand-name { font-size:17px; }
  .ts-brand-mark { width:36px; height:36px; font-size:18px; }
  .ts-partners-section { padding:52px 0 58px; }
  .ts-partners-grid { grid-template-columns:1fr 1fr; gap:10px; }
  .ts-partner-card { min-height:150px; padding:15px 9px; }
  .ts-modal-grid { grid-template-columns:1fr; }
  .ts-footer-grid { grid-template-columns:1fr; gap:24px; }
  .ts-speed-dial { right:12px; bottom:12px; }
  .ts-hide-sm { display:none !important; }
}

.ts-calculator-wrap { padding:56px 0 72px; background:#f8fafc; }
.ts-calc-grid { display:grid; grid-template-columns:7fr 5fr; gap:26px; max-width:1100px; margin:0 auto; }
.ts-calc-panel { background:#fff; border:1px solid #e2e8f0; border-radius:26px; padding:26px; box-shadow:0 8px 24px rgba(15,23,42,.05); }
.ts-calc-panel h3 { display:flex; align-items:center; gap:9px; color:#0f172a; font-size:17px; margin:0 0 22px; }
.ts-calc-panel h3 i { color:#f4390e; }
.ts-calc-field { margin-bottom:17px; }
.ts-calc-field label { display:block; margin-bottom:7px; color:#334155; font-size:11px; font-weight:900; text-transform:uppercase; letter-spacing:.06em; }
.ts-calc-field select, .ts-calc-field input { width:100%; border:1px solid #cbd5e1; background:#fff; color:#0f172a; border-radius:12px; padding:11px 12px; font:700 12px inherit; outline:none; }
.ts-calc-field select:focus, .ts-calc-field input:focus { border-color:#f4390e; box-shadow:0 0 0 4px #feebe7; }
.ts-calc-two { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.ts-calc-checks { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:8px; padding:14px; background:#f8fafc; border-radius:16px; }
.ts-calc-checks label { color:#475569; font-size:11px; font-weight:700; }
.ts-calc-checks input { accent-color:#f4390e; margin-right:6px; }
.ts-calc-summary { background:linear-gradient(135deg,#f4390e,#922208); border-radius:26px; padding:28px; color:#fff; box-shadow:0 18px 45px rgba(244,57,14,.25); display:flex; flex-direction:column; justify-content:center; }
.ts-calc-summary-kicker { font-size:11px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; opacity:.85; }
.ts-calc-total { font-size:38px; font-weight:900; letter-spacing:-.04em; margin:7px 0 0; }
.ts-calc-unit { font-size:11px; opacity:.9; margin-top:3px; }
.ts-calc-lines { margin:22px 0; padding:14px 0; border-top:1px solid rgba(255,255,255,.2); border-bottom:1px solid rgba(255,255,255,.2); }
.ts-calc-lines div { display:flex; align-items:center; justify-content:space-between; gap:10px; font-size:11px; margin:8px 0; }
.ts-calc-lines strong { color:#fff; }
.ts-calc-summary .btn-primary-pill { background:#fff; color:#f4390e !important; box-shadow:none; }
.ts-calc-note { font-size:9px; line-height:1.6; opacity:.78; margin:12px 0 0; }
@media (max-width:860px){ .ts-calc-grid { grid-template-columns:1fr; } }
@media (max-width:520px){ .ts-calc-two,.ts-calc-checks { grid-template-columns:1fr; } .ts-calc-total { font-size:31px; } }
