/* ============================================================
   TOUCH LIFE BUILDING CLEANING — COMPONENTS CSS
   Nav · Footer · Chat Widget · WhatsApp Float
   ============================================================ */

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.transparent {
    background: transparent;
}

.site-header.solid {
    background: var(--tl-white);
    box-shadow: 0 2px 20px rgba(11, 31, 58, 0.10);
}

.header-inner {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    height: 76px;
    display: flex;
    align-items: center;
    gap: 36px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.site-header.solid .logo img {
    filter: none;
}

.logo-text {
    line-height: 1;
}

.logo-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    display: block;
    line-height: 1;
    transition: color 0.3s;
}

.logo-text small {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
    margin-top: 2px;
}

/* Transparent header — white text */
.site-header.transparent .logo-text strong {
    color: var(--tl-white);
}

.site-header.transparent .logo-text small {
    color: var(--tl-white);
}

.site-header.transparent .main-nav a,
.site-header.transparent .main-nav button {
    color: var(--tl-white);
}

/* Solid header — navy text */
.site-header.solid .logo-text strong {
    color: var(--tl-navy);
}

.site-header.solid .logo-text small {
    color: var(--tl-navy);
}

.site-header.solid .main-nav a,
.site-header.solid .main-nav button {
    color: var(--tl-navy);
}

.site-header.solid .header-wa {
    color: var(--tl-navy);
    border-color: var(--tl-border);
}

/* Main nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.main-nav>a,
.main-nav>.nav-dropdown>button {
    font-size: 14.5px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.2px;
}

.main-nav>a:hover,
.main-nav>.nav-dropdown>button:hover {
    color: var(--tl-gold) !important;
}

.main-nav>a.active {
    color: var(--tl-gold) !important;
    border-bottom: 2px solid var(--tl-gold);
    border-radius: 0;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    background: var(--tl-white);
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(11, 31, 58, 0.18);
    border: 1px solid var(--tl-border);
    min-width: 240px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--tl-navy) !important;
    transition: background 0.15s;
}

.dropdown-panel a:hover {
    background: var(--tl-off);
    color: var(--tl-blue) !important;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.header-wa {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: var(--tl-white);
    transition: var(--transition);
    white-space: nowrap;
}

.header-wa:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--tl-white);
}

.site-header.solid .header-wa {
    color: var(--tl-navy);
    border-color: var(--tl-border);
}

.site-header.solid .header-wa:hover {
    background: var(--tl-off);
}

/* Hamburger */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--tl-white);
    margin-left: auto;
    padding: 4px;
}

.site-header.solid .hamburger {
    color: var(--tl-navy);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--tl-navy);
    padding: 16px var(--container-pad) 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a,
.mobile-nav button {
    font-size: 15px;
    font-weight: 500;
    color: var(--tl-white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-nav a:last-child,
.mobile-nav button:last-child {
    border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav button:hover {
    color: var(--tl-gold);
}

.mobile-nav .mob-section-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 14px;
    margin-bottom: 4px;
}

.mobile-nav .mob-sub-link {
    padding-left: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.mobile-nav .mob-cta {
    margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--tl-navy);
    color: var(--tl-white);
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tl-gold);
    margin-bottom: 22px;
}

.footer-col .footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    display: block;
}

.footer-col .footer-logo-text strong {
    font-size: 20px;
    font-weight: 800;
    display: block;
    color: var(--tl-white);
}

.footer-col .footer-logo-text small {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--tl-white);
    font-weight: 600;
    font-size: 13.5px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 20px;
}

.footer-wa-btn:hover {
    background: #1fba59;
    transform: translateY(-1px);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-social a:hover {
    border-color: var(--tl-gold);
    color: var(--tl-gold);
    background: rgba(200, 151, 58, 0.1);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--tl-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact-item .icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--tl-gold);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
}

.footer-bottom-inner {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--tl-gold);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 9998;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    animation: wa-pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
    position: absolute;
    right: 68px;
    background: var(--tl-navy);
    color: var(--tl-white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    font-family: 'Outfit', sans-serif;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.12);
    }
}

/* ============================================================
   AI CHAT WIDGET
   ============================================================ */
#ai-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 9997;
    font-family: 'Outfit', sans-serif;
}

#chat-toggle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tl-blue), var(--tl-navy));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(21, 87, 160, 0.45);
    position: relative;
    margin-left: auto;
    transition: transform 0.25s, box-shadow 0.25s;
}

#chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(21, 87, 160, 0.6);
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--tl-gold);
    color: var(--tl-navy);
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--tl-white);
    animation: badge-bounce 1.5s infinite;
}

@keyframes badge-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    background: var(--tl-white);
    border-radius: 20px;
    box-shadow: 0 16px 60px rgba(11, 31, 58, 0.22);
    overflow: hidden;
    display: none;
    flex-direction: column;
    border: 1px solid rgba(11, 31, 58, 0.08);
    animation: chat-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-window.open {
    display: flex;
}

@keyframes chat-in {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chat-header {
    background: linear-gradient(135deg, var(--tl-navy) 0%, var(--tl-blue) 100%);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--tl-white);
}

.chat-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(200, 151, 58, 0.3);
    border: 2px solid var(--tl-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--tl-gold);
    flex-shrink: 0;
}

.chat-header-info {
    flex: 1;
}

.chat-header-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.chat-header-info span {
    font-size: 11px;
    opacity: 0.65;
}

.chat-header-status {
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.8;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ADE80;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.chat-messages {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: 320px;
    background: var(--tl-off);
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(11, 31, 58, 0.15);
    border-radius: 2px;
}

.msg {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.msg-ai {
    align-self: flex-start;
}

.msg-user {
    align-self: flex-end;
    align-items: flex-end;
}

.msg-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.55;
}

.msg-ai .msg-bubble {
    background: var(--tl-white);
    color: var(--tl-navy);
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 4px rgba(11, 31, 58, 0.08);
}

.msg-user .msg-bubble {
    background: linear-gradient(135deg, var(--tl-blue), var(--tl-navy));
    color: var(--tl-white);
    border-bottom-right-radius: 4px;
}

.msg-time {
    font-size: 10px;
    color: #9CA3AF;
    margin-top: 3px;
    padding: 0 4px;
}

.typing-indicator .msg-bubble {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
}

.typing-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9CA3AF;
    animation: typing 1.2s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-6px);
    }
}

.quick-replies {
    padding: 10px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    background: var(--tl-white);
    border-top: 1px solid var(--tl-border);
}

.quick-replies button {
    font-size: 11.5px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 99px;
    border: 1px solid var(--tl-gold);
    color: #92400E;
    background: #FEF3C7;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
}

.quick-replies button:hover {
    background: var(--tl-gold);
    color: var(--tl-white);
    border-color: var(--tl-gold);
}

.chat-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--tl-white);
    border-top: 1px solid var(--tl-border);
}

#chat-input {
    flex: 1;
    border: 1px solid var(--tl-border);
    border-radius: 99px;
    padding: 10px 16px;
    font-size: 13.5px;
    font-family: 'Outfit', sans-serif;
    outline: none;
    color: var(--tl-navy);
    transition: border-color 0.2s;
}

#chat-input:focus {
    border-color: var(--tl-blue);
}

#chat-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tl-blue), var(--tl-navy));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    flex-shrink: 0;
}

#chat-send:hover {
    transform: scale(1.1);
}

.chat-footer {
    background: var(--tl-off);
    text-align: center;
    font-size: 10px;
    color: #9CA3AF;
    padding: 7px;
    border-top: 1px solid var(--tl-border);
}

.chat-footer a {
    color: var(--tl-blue);
    text-decoration: none;
}

/* ============================================================
   HERO STYLES (used globally)
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section .hero-bg,
.hero-compact .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-section .hero-overlay,
.hero-compact .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 58, 0.68);
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-compact {
    min-height: 380px;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--tl-navy) 0%, var(--tl-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-compact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-compact .hero-inner {
    position: relative;
    z-index: 2;
}

/* hero pills / badges row */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 20px 0 32px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--tl-white);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* hero trust bar */
.hero-trust-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 60px;
    padding-top: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    font-weight: 500;
}

/* ============================================================
   SERVICE CARD (used in homepage grid + services index)
   ============================================================ */
.service-card {
    background: var(--tl-white);
    border: 1px solid var(--tl-border);
    border-radius: var(--radius-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--tl-border);
}

.service-card-content {
    padding: 32px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--tl-gold);
    border-radius: 0 4px 4px 0;
    transition: width 0.3s ease;
}

.service-card:hover::before {
    width: 4px;
}

.service-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-4px);
}

.service-card.cta-card {
    background: var(--tl-gold);
    border-color: var(--tl-gold);
}

.service-card .service-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--tl-navy);
}

.service-card.cta-card h3 {
    color: var(--tl-navy);
}

.service-card p {
    font-size: 14px;
    color: var(--tl-mid);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card.cta-card p {
    color: rgba(11, 31, 58, 0.7);
}

.service-card a {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--tl-blue);
}

.service-card.cta-card a {
    color: var(--tl-navy);
}

.service-card a:hover {
    color: var(--tl-gold);
}

.service-card.cta-card a:hover {
    opacity: 0.7;
}

/* ============================================================
   TESTIMONIAL CARD
   ============================================================ */
.testimonial-card {
    background: var(--tl-white);
    border: 1px solid var(--tl-border);
    border-radius: var(--radius-card);
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-2px);
}

.testimonial-card .stars {
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--tl-mid);
    font-style: italic;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.testimonial-card .author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--tl-navy);
}

.testimonial-card .author-info small {
    font-size: 12px;
    color: var(--tl-mid);
}

.testimonial-card .service-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 99px;
    background: var(--tl-gold-light);
    color: var(--tl-gold);
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(200, 151, 58, 0.2);
    white-space: nowrap;
}

/* ============================================================
   USP ROW (Why Choose Us)
   ============================================================ */
.usp-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.usp-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--tl-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.usp-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--tl-navy);
}

.usp-text p {
    font-size: 14px;
    color: var(--tl-mid);
    line-height: 1.6;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.666% + 36px);
    right: calc(16.666% + 36px);
    height: 2px;
    background: var(--tl-border);
}

.step-item {
    text-align: center;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--tl-navy);
    color: var(--tl-white);
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    border: 4px solid var(--tl-gold-light);
}

.step-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--tl-navy);
}

.step-item p {
    font-size: 14px;
    color: var(--tl-mid);
    line-height: 1.65;
}

/* ============================================================
   PROPERTY TYPES TILE
   ============================================================ */
.prop-tile {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius-inner);
    border: 1px solid var(--tl-border);
    cursor: default;
    transition: var(--transition);
    background: var(--tl-white);
}

.prop-tile:hover {
    background: rgba(46, 156, 202, 0.06);
    border-color: var(--tl-sky);
}

.prop-tile .prop-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.prop-tile h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--tl-navy);
}

/* ============================================================
   CHECKLIST (included / not included)
   ============================================================ */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--tl-dark);
    line-height: 1.5;
}

.check-item .ci-icon {
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 1px;
}

.check-item.no {
    color: var(--tl-mid);
}

/* ============================================================
   HORIZONTAL SERVICE BLOCK (services/index.html)
   ============================================================ */
.service-block {
    display: grid;
    grid-template-columns: 240px 1fr auto;
    gap: 0;
    border: 1px solid var(--tl-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--tl-white);
    transition: var(--transition);
    margin-bottom: 20px;
}

.service-block:hover {
    box-shadow: var(--shadow-elevated);
}

.service-block .sb-icon-col {
    background: var(--tl-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    padding: 32px 20px;
}

.service-block .sb-img-col {
    width: 100%;
    height: 100%;
}

.service-block .sb-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-block .sb-content {
    padding: 28px 32px;
}

.service-block .sb-content .sub {
    font-size: 13.5px;
    color: var(--tl-sky);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.service-block .sb-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-block .sb-content p {
    font-size: 14.5px;
    color: var(--tl-mid);
    margin-bottom: 16px;
    line-height: 1.65;
}

.sb-includes {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sb-includes li {
    font-size: 13px;
    color: var(--tl-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb-includes li::before {
    content: '✓';
    color: var(--tl-sky);
    font-weight: 700;
    flex-shrink: 0;
}

.service-block .sb-cta {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    min-width: 180px;
    border-left: 1px solid var(--tl-border);
}

.sb-price {
    text-align: right;
}

.sb-price .from {
    font-size: 11px;
    color: var(--tl-mid);
    display: block;
    margin-bottom: 2px;
}

.sb-price .amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--tl-navy);
    display: block;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.comparison-table th {
    background: var(--tl-navy);
    color: var(--tl-white);
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 12px 20px;
    font-size: 14px;
    color: var(--tl-navy);
    border-bottom: 1px solid var(--tl-border);
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--tl-mid);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
    background: var(--tl-off);
}

.comparison-table .yes {
    color: #16a34a;
    font-size: 18px;
}

.comparison-table .no {
    color: #dc2626;
    font-size: 18px;
}

/* ============================================================
   FORM GRID (2-col within form)
   ============================================================ */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============================================================
   QUOTE SIDEBAR
   ============================================================ */
.quote-sidebar-card {
    background: var(--tl-navy);
    color: var(--tl-white);
    border-radius: var(--radius-card);
    padding: 28px;
    margin-bottom: 20px;
}

.quote-sidebar-card h3 {
    color: var(--tl-gold);
    font-size: 16px;
    margin-bottom: 18px;
}

.sidebar-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.sidebar-feature span:first-child {
    flex-shrink: 0;
    font-size: 16px;
}

/* ============================================================
   CASE STUDY CARD
   ============================================================ */
.case-study-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    border: 1px solid var(--tl-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--tl-white);
    transition: var(--transition);
    margin-bottom: 24px;
}

.case-study-card:hover {
    box-shadow: var(--shadow-elevated);
}

.cs-img {
    background: linear-gradient(135deg, var(--tl-navy), var(--tl-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    min-height: 200px;
}

.cs-content {
    padding: 32px;
}

.cs-type {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tl-sky);
    margin-bottom: 10px;
    display: block;
}

.cs-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.cs-row {
    margin-bottom: 12px;
}

.cs-row strong {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tl-gold);
    display: block;
    margin-bottom: 3px;
}

.cs-row p {
    font-size: 14px;
    color: var(--tl-mid);
}

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-card {
    background: var(--tl-white);
    border: 1px solid var(--tl-border);
    border-radius: var(--radius-card);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-2px);
}

.contact-card.primary {
    border: 2px solid var(--tl-gold);
}

.contact-card .cc-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--tl-mid);
    margin-bottom: 16px;
}

.contact-card .cc-detail {
    font-size: 14px;
    font-weight: 600;
    color: var(--tl-navy);
    margin-bottom: 4px;
}

/* ============================================================
   CAREERS — ROLE CARD
   ============================================================ */
.role-card {
    background: var(--tl-white);
    border: 1px solid var(--tl-border);
    border-radius: var(--radius-card);
    padding: 28px;
    transition: var(--transition);
}

.role-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-2px);
}

.role-card .role-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.role-card h3 {
    font-size: 18px;
    color: var(--tl-navy);
}

.role-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 99px;
    background: rgba(46, 156, 202, 0.1);
    color: var(--tl-sky);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.role-card .role-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.role-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--tl-mid);
}

.role-card p {
    font-size: 14px;
    color: var(--tl-mid);
    margin-bottom: 20px;
}

/* ============================================================
   LEGAL PAGES (privacy, terms)
   ============================================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px var(--container-pad);
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 8px;
    color: var(--tl-navy);
}

.legal-content .legal-meta {
    font-size: 13px;
    color: var(--tl-mid);
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--tl-border);
}

.legal-content h2 {
    font-size: 20px;
    color: var(--tl-navy);
    margin-top: 40px;
    margin-bottom: 14px;
}

.legal-content p {
    font-size: 15px;
    color: var(--tl-mid);
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-content ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 14px;
}

.legal-content ul li {
    font-size: 15px;
    color: var(--tl-mid);
    line-height: 1.7;
    margin-bottom: 6px;
}

/* ============================================================
   RATING SHOWCASE
   ============================================================ */
.rating-showcase {
    background: linear-gradient(135deg, var(--tl-navy), var(--tl-blue));
    padding: 80px 0;
    text-align: center;
}

.rating-big {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--tl-gold);
    line-height: 1;
    display: block;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 16px 0;
}

.rating-stars svg {
    color: var(--tl-gold);
}

.rating-showcase p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 24px;
}

.platform-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.platform-badge {
    padding: 8px 20px;
    border-radius: 99px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
}

/* ============================================================
   INLINE MAP SECTION
   ============================================================ */
.map-embed {
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--tl-border);
    height: 320px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   INFO TIP BOX
   ============================================================ */
.tip-box {
    background: var(--tl-gold-light);
    border: 1.5px solid rgba(200, 151, 58, 0.3);
    border-radius: var(--radius-inner);
    padding: 18px 22px;
    font-size: 14px;
    color: var(--tl-navy);
    line-height: 1.65;
}

.tip-box strong {
    color: var(--tl-gold);
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   RESPONSIVE — COMPONENTS
   ============================================================ */
@media (max-width: 768px) {

    /* Header */
    .main-nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .header-inner {
        padding: 0 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Service block */
    .service-block {
        grid-template-columns: 1fr;
    }

    .service-block .sb-icon-col {
        display: none;
    }

    .service-block .sb-img-col {
        width: 100%;
        height: 220px;
    }

    .service-block .sb-cta {
        border-left: none;
        border-top: 1px solid var(--tl-border);
        align-items: flex-start;
    }

    /* Steps */
    .steps-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .steps-row::before {
        display: none;
    }

    /* Case study */
    .case-study-card {
        grid-template-columns: 1fr;
    }

    .cs-img {
        min-height: 140px;
    }

    /* Form row */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Chat widget */
    .chat-window {
        width: calc(100vw - 40px);
        right: -14px;
    }

    #ai-chat-widget {
        right: 20px;
        bottom: 90px;
    }

    .whatsapp-float {
        right: 20px;
        bottom: 20px;
    }
}