/* ============================================================
   TOP NOTCH COMMERCIAL CLEANING — PUBLIC SITE STYLES
   ============================================================ */

:root {
    --tn-green:   #37ca37;
    --tn-blue:    #188bf6;
    --tn-navy:    #315686;
    --tn-orange:  #F37E21;
    --tn-dark:    #1a1a2e;
    --tn-gray:    #616161;
    --tn-light:   #f8f9fa;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Top Bar */
.top-bar {
    background-color: var(--tn-navy);
}

/* Bootstrap primary override */
.btn-primary, .bg-primary {
    background-color: var(--tn-navy) !important;
    border-color: var(--tn-navy) !important;
}
.btn-primary:hover {
    background-color: #254070 !important;
    border-color: #254070 !important;
}
.text-primary { color: var(--tn-green) !important; }
.border-primary { border-color: var(--tn-green) !important; }

/* Logo */
.navbar-logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo-text { line-height: 1.1; }
.logo-main {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: 1px;
}
.logo-sub {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.58rem;
    color: var(--tn-green);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
@media (max-width: 576px) {
    .navbar-logo-img { height: 38px; }
    .logo-main { font-size: 1rem; }
    .logo-sub  { font-size: 0.52rem; }
}

/* Navbar */
.navbar {
    padding: 0.75rem 0;
}
.navbar .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.82);
    padding: 0.5rem 1rem;
    text-transform: uppercase;
}
.navbar .nav-link.active,
.navbar .nav-link:hover { color: #fff !important; }


/* ---- HERO ---- */
.hero-section {
    background:
        linear-gradient(180deg,
            rgba(10,22,40,0.82) 0%,
            rgba(13,31,60,0.72) 40%,
            rgba(17,34,68,0.65) 70%,
            rgba(26,45,74,0.75) 100%
        ),
        url('/assets/images/hero-skyline.jpg') center center / cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle colour tint overlay — keeps brand feel */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 40% at 70% 110%, rgba(55,202,55,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 30% at 20% 100%, rgba(24,139,246,0.07) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-section .container { position: relative; z-index: 3; }

/* ── STARS ── */
.hero-stars {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-stars span {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: starTwinkle var(--d, 3s) ease-in-out infinite var(--delay, 0s);
    opacity: 0;
}
@keyframes starTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50%       { opacity: var(--op, 0.8); transform: scale(1); }
}


.hero-tag {
    display: inline-block;
    background: rgba(55,202,55,0.15);
    color: var(--tn-green);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(55,202,55,0.3);
    margin-bottom: 1.5rem;
}
.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-headline span { color: var(--tn-green); }
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}
.hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--tn-green);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 2rem;
    color: #fff;
}
.hero-card .feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(55,202,55,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--tn-green);
    margin-bottom: 0.75rem;
}

/* ---- SECTION STYLES ---- */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--tn-green);
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--tn-dark);
    line-height: 1.2;
}
.section-divider {
    width: 50px;
    height: 4px;
    background: var(--tn-green);
    border-radius: 2px;
    margin: 1rem 0 1.5rem;
}

/* ---- SERVICES CARDS ---- */
.service-card {
    background: #fff;
    border: 1px solid #e8ecef;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--tn-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--tn-green);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(55,202,55,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--tn-green);
    margin-bottom: 1.25rem;
}
.service-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--tn-dark);
}
.service-card p {
    font-size: 0.9rem;
    color: var(--tn-gray);
    line-height: 1.6;
}

/* ---- WHY CHOOSE US ---- */
.why-section { background: var(--tn-light); }
.why-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.why-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--tn-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

/* ---- INDUSTRIES ---- */
.industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tn-dark);
    margin: 0.3rem;
    transition: all 0.2s;
}
.industry-pill:hover {
    border-color: var(--tn-green);
    color: var(--tn-green);
    box-shadow: 0 4px 12px rgba(55,202,55,0.15);
}

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, var(--tn-navy) 0%, #1a2d4a 100%);
}

/* ---- CONTACT FORM ---- */
.form-control:focus, .form-select:focus {
    border-color: var(--tn-green);
    box-shadow: 0 0 0 0.2rem rgba(55,202,55,0.25);
}

/* ---- FOOTER ---- */
.footer { background: #111 !important; }
.footer a { transition: color 0.2s; }
.footer a:hover { color: var(--tn-green) !important; }

/* ---- UTILITY ---- */
.btn-success {
    background-color: var(--tn-green) !important;
    border-color: var(--tn-green) !important;
}
.btn-outline-success {
    color: var(--tn-green) !important;
    border-color: var(--tn-green) !important;
}
.btn-outline-success:hover {
    background-color: var(--tn-green) !important;
    color: #fff !important;
}
