/* ============================================
   TOTAL PROTECTION LTD — Premium Luxury Styles
   ============================================ */

:root {
    --primary: #ffffff;
    --primary-dark: #f8f9fb;
    --primary-light: #f1f3f7;
    --navy: #0f2a47;
    --navy-light: #1a3a5c;
    --accent: #e43903;
    --accent-hover: #c22f02;
    --accent-glow: rgba(228, 57, 3, 0.25);
    --accent-navy-glow: rgba(15, 42, 71, 0.15);
    --glass-bg: rgba(15, 42, 71, 0.03);
    --glass-border: rgba(15, 42, 71, 0.08);
    --glass-bg-hover: rgba(15, 42, 71, 0.06);
    --text-primary: #0f2a47;
    --text-secondary: #3d5a7a;
    --text-muted: #7a93ad;
    --gradient: linear-gradient(135deg, #f8b320, #e43903);
    --gradient-heading: linear-gradient(135deg, #f8b320, #e43903);
    --gradient-subtle: linear-gradient(135deg, rgba(248,179,32,0.10), rgba(228,57,3,0.06));
    --shadow-sm: 0 2px 8px rgba(15, 42, 71, 0.06);
    --shadow-md: 0 8px 32px rgba(15, 42, 71, 0.08);
    --shadow-lg: 0 16px 64px rgba(15, 42, 71, 0.1);
    --shadow-glow: 0 0 40px rgba(228, 57, 3, 0.12);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::selection {
    background: rgba(228, 57, 3, 0.2);
    color: #0f2a47;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f3f7; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent), #0f2a47);
    border-radius: 4px;
}

/* ---- Floating Particles ---- */
.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* preloader removed */

/* ---- Glass Cards ---- */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 42, 71, 0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(15, 42, 71, 0.04);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(228, 57, 3, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(15, 42, 71, 0.08), 0 0 0 1px rgba(228, 57, 3, 0.06);
}

.glass-card-lg {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(15, 42, 71, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(15, 42, 71, 0.05);
}

.glass-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(228, 57, 3, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 57, 3, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ---- Gradient Text ---- */
.gradient-text {
    background: linear-gradient(135deg, #f8b320, #e43903);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #e43903;
}

/* ---- Animated Icons ---- */
.animate-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.animate-icon i {
    transition: var(--transition);
}

.animate-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-subtle);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.glass-card:hover .animate-icon i,
.service-card:hover .animate-icon i,
.why-card:hover .animate-icon i,
.area-card:hover .animate-icon i,
.contact-card:hover .animate-icon i {
    transform: scale(1.15);
}

.glass-card:hover .animate-icon::before,
.service-card:hover .animate-icon::before,
.why-card:hover .animate-icon::before {
    opacity: 1;
    transform: scale(1.4);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-glass {
    background: rgba(15, 42, 71, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 42, 71, 0.12);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(15, 42, 71, 0.1);
    border-color: rgba(15, 42, 71, 0.2);
    transform: translateY(-2px);
}

.cta-container .btn-glass {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.cta-container .btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 42, 71, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}


.nav-logo {
    display: flex;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
}

.nav-logo-img {
    height: 92px;
    width: auto;
    transition: var(--transition);
}

.logo-text-total {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.logo-text-sub {
    fill: rgba(255, 255, 255, 0.6);
    transition: fill 0.3s ease;
}

.navbar.scrolled .nav-logo-img {
    height: 74px;
}

.navbar.scrolled .logo-text-total {
    fill: #0F2A47;
}

.navbar.scrolled .logo-text-sub {
    fill: #5A6B7E;
}

.footer-logo-img {
    height: 132px;
    width: auto;
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-logo {
    display: none;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.82);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 0;
    min-width: 0;
    justify-content: flex-end;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #e43903;
}

.nav-phone i { font-size: 0.85rem; }
.nav-phone span { display: none; }

@media (min-width: 1200px) {
    .nav-phone span { display: inline; }
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-icon {
    font-size: 1.1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: #ffffff;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.navbar.scrolled .nav-toggle-icon {
    background: var(--gradient);
    color: #ffffff;
}

.nav-toggle.active .nav-toggle-icon {
    background: var(--navy);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(15, 42, 71, 0.3);
}

/* ---- Emergency Banner ---- */
.emergency-banner {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 999;
    background: var(--gradient);
    padding: 6px 0;
    transform: translateY(-100%);
    transition: var(--transition);
}

.emergency-banner.visible {
    transform: translateY(0);
}

.emergency-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
}

.emergency-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: emergencyBlink 1.5s ease-in-out infinite;
}

@keyframes emergencyBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.emergency-container a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    background: rgba(0,0,0,0.15);
    border-radius: 100px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.78rem;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('images/security-guard.jpg') center center / cover no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        135deg,
        rgba(228, 57, 3, 0.32) 0%,
        rgba(228, 57, 3, 0.24) 50%,
        rgba(248, 179, 32, 0.20) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.badge-icon {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 0.7rem;
    color: #ffffff;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #f8b320, #e43903);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #e43903;
}

.hero-subtitle {
    max-width: 680px;
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.hero-btn-glass {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.hero-btn-glass:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* hero stats moved to stats-bar */

/* stat cards removed — using stats-bar */

/* scroll indicator removed */

/* ---- Section Common ---- */
.section-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag { margin-bottom: 20px; }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-top: 16px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.8;
}

/* ---- Stats Bar ---- */
.stats-bar {
    position: relative;
    z-index: 2;
    margin-top: -48px;
    padding: 0 32px;
}

.stats-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #e43903, #c22f02);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow:
        0 20px 60px rgba(228, 57, 3, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-bar-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 40%);
    pointer-events: none;
}

.stats-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.stats-bar-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-bar-content {
    display: flex;
    flex-direction: column;
}

.stats-bar-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stats-bar-number span {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
}

.stats-bar-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
    white-space: nowrap;
}

.stats-bar-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .stats-bar-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 32px;
        gap: 20px;
    }
    .stats-bar-divider { display: none; }
    .stats-bar-item {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .stats-bar { padding: 0 16px; margin-top: -36px; }
    .stats-bar-inner { padding: 28px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 16px; }
    .stats-bar-divider { display: none; }
    .stats-bar-item { flex: none; flex-direction: column; text-align: center; gap: 8px; }
    .stats-bar-number { font-size: 1.6rem; }
    .stats-bar-label { font-size: 0.75rem; }
    .stats-bar-icon { width: 42px; height: 42px; font-size: 0.95rem; margin: 0 auto; }
}

/* ---- About Section ---- */
.about {
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: #f8f9fb;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    align-items: start;
}

.about-main {
    padding: 0;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-main:hover .about-image img {
    transform: scale(1.03);
}

.about-main h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding: 32px 36px 0;
}

.about-main p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
    padding: 0 36px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
    padding: 28px 36px 36px;
    border-top: 1px solid rgba(15, 42, 71, 0.06);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.highlight-icon {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: 10px;
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.about-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    padding: 28px;
}

.about-card-icon {
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.about-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-card-image {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
    transition: transform 0.6s ease;
}

.about-card-image:hover img {
    transform: scale(1.05);
}

/* ---- Services Section ---- */
.services {
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: default;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(15, 42, 71, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15, 42, 71, 0.12);
}

.service-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: #f4f6fa;
    border-bottom: 1px solid rgba(15, 42, 71, 0.06);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    display: block;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card > h3,
.service-card > p,
.service-card > .service-features,
.service-card > .service-link {
    padding-left: 28px;
    padding-right: 28px;
}

.service-card > h3 {
    margin-top: 20px;
}

.service-card > .service-link {
    padding-bottom: 28px;
    margin-top: auto;
}

.service-card-glow {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-icon {
    width: 56px; height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card > p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.service-features li i {
    font-size: 0.65rem;
    color: var(--accent);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}

.service-link:hover { gap: 12px; }
.service-link i { font-size: 0.75rem; transition: var(--transition); }

/* ---- CTA Banner ---- */
.cta-banner {
    position: relative;
    z-index: 1;
    padding: 0;
    margin-top: -60px;
}

.cta-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 48px 56px;
    background: #0f2a47;
    border: none;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('images/fire-alarm.jpg') center center / cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(228, 57, 3, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 64px; height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: 0 0 0 12px transparent; }
}

.cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.cta-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

/* ---- Why Choose Us ---- */
.why-us {
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: #f8f9fb;
}

.why-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    margin-bottom: 40px;
}

.why-showcase-image {
    position: relative;
    overflow: hidden;
}

.why-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    min-height: 320px;
}

.why-showcase:hover .why-showcase-image img {
    transform: scale(1.05);
}

.why-showcase-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.why-showcase-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--navy);
}

.why-showcase-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
}

.why-number {
    position: absolute;
    top: 16px; right: 20px;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    line-height: 1;
}

.why-icon {
    width: 50px; height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: var(--radius-sm);
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient);
    color: #ffffff;
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- Coverage Section ---- */
.coverage {
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: #ffffff;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.coverage-map {
    padding: 0;
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.map-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.map-embed {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.map-bg-image {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    object-fit: cover;
    filter: saturate(0.4) brightness(1.02);
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.map-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.map-pin i {
    font-size: 1.5rem;
    color: var(--accent);
    filter: drop-shadow(0 2px 8px var(--accent-glow));
}

.map-pin-center {
    top: 45%;
    left: 55%;
    transform: translate(-50%, -50%);
}

.map-pin-center i {
    font-size: 2rem;
    animation: pinBounce 2s ease-in-out infinite;
}

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

.pin-pulse {
    position: absolute;
    top: 50%; left: 50%;
    width: 40px; height: 40px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--accent-glow);
    animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.pin-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-pin-center .pin-label {
    color: var(--accent);
    font-size: 0.82rem;
}

.map-pin-sub i {
    font-size: 1rem;
    color: var(--accent-blue);
}

.map-radius {
    position: absolute;
    top: 45%; left: 55%;
    transform: translate(-50%, -50%);
}

.radius-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(228, 57, 3, 0.1);
}

.radius-ring-1 { width: 160px; height: 160px; }
.radius-ring-2 { width: 280px; height: 280px; border-color: rgba(228, 57, 3, 0.06); }
.radius-ring-3 { width: 400px; height: 400px; border-color: rgba(228, 57, 3, 0.04); }

.coverage-areas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.area-card {
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.area-icon {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: 10px;
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.area-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.area-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.area-card-highlight {
    border-color: rgba(228, 57, 3, 0.2);
    background: rgba(228, 57, 3, 0.04);
}

/* ---- Contact Section ---- */
.contact {
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: #f8f9fb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: start;
}

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

.contact-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-card-icon {
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
}

.contact-card a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-address {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.92rem !important;
}

.contact-form-wrapper {
    padding: 48px;
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-form-wrapper > p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 42, 71, 0.12);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(228, 57, 3, 0.12);
    background: #ffffff;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(15,42,71,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--primary);
    color: var(--text-primary);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- Footer ---- */
.footer {
    position: relative;
    z-index: 1;
    border-top: none;
    padding: 64px 0 0;
    background: #0f2a47;
    color: #ffffff;
}

.footer,
.footer .footer-brand > p,
.footer .footer-links a,
.footer .footer-contact li,
.footer .footer-contact a,
.footer .footer-bottom {
    color: rgba(255, 255, 255, 0.7);
}

.footer .footer-links h4,
.footer .footer-contact h4 {
    color: #ffffff;
}

.footer .footer-links a:hover,
.footer .footer-contact a:hover {
    color: var(--accent);
}

/* footer logo uses img now */

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-bottom a {
    color: var(--accent);
}

.footer-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--accent);
    font-weight: 600;
}

.footer-bottom a:hover { text-decoration: underline; }

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-phone span { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; right: 0;
        width: 300px; height: 100vh;
        background: linear-gradient(180deg, #0f2a47 0%, #1a3f6b 100%);
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        z-index: 1000;
        padding: 70px 0 40px;
        box-shadow: -8px 0 40px rgba(15, 42, 71, 0.3);
        animation: slideInRight 0.3s ease-out;
    }

    @keyframes slideInRight {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }

    .mobile-menu-logo {
        display: block;
        padding: 0 32px 24px;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-menu-logo svg {
        height: 72px;
        width: auto;
    }

    .nav-links.active .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 16px 32px;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 0.02em;
        position: relative;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    .nav-links.active .nav-link:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
        border-left-color: rgba(228, 57, 3, 0.3);
    }

    .nav-links.active .nav-link.active {
        color: var(--accent);
        border-left-color: var(--accent);
        background: rgba(228, 57, 3, 0.08);
    }

    .hero { padding: 120px 0 80px; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-content { grid-template-columns: 1fr; }
    .coverage-map { min-height: 380px; }
    .map-embed { min-height: 380px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-showcase { grid-template-columns: 1fr; }
    .why-showcase-image img { min-height: 260px; }
    .why-showcase-content { padding: 36px 32px; }
    .cta-container { flex-direction: column; text-align: center; padding: 40px 32px; margin-left: 16px; margin-right: 16px; }
    .cta-content { flex-direction: column; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { justify-content: center; }
}

@media (max-width: 768px) {
    .hero { padding: 130px 0 60px; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .section-header { margin-bottom: 48px; }
    .about, .services, .why-us, .coverage, .contact { padding: 80px 0; }
    .about-main h3 { padding: 24px 24px 0; }
    .about-main p { padding: 0 24px; }
    .about-highlights { padding: 24px; }
    .contact-form-wrapper { padding: 32px; }
    .coverage-map { padding: 0; min-height: 340px; }
    .map-embed { min-height: 340px; }
}

@media (max-width: 768px) {
    .nav-cta { display: none; }
    .nav-phone { display: none; }
    .nav-logo-img { height: 78px; }
    .navbar.scrolled .nav-logo-img { height: 64px; }
}

@media (max-width: 480px) {
    .nav-container { padding: 0 16px; gap: 16px; }
    .section-container { padding: 0 16px; }
    .btn { padding: 12px 24px; font-size: 0.88rem; }
    .btn-lg { padding: 14px 28px; }
    .hero-title { font-size: 2.2rem; }
    .nav-logo-img { height: 62px; }
    .navbar.scrolled .nav-logo-img { height: 54px; }
    .nav-phone { padding: 6px; }
    .nav-phone i { font-size: 0.8rem; }
    .cta-container { margin-left: 8px; margin-right: 8px; padding: 32px 20px; }
    .nav-actions { gap: 8px; }
}

/* ============================================================
   LOGO LEGIBILITY  —  black glow plate behind the logo mark
   Kept at the end of the file so it wins over the breakpoints
   above. Nothing here touches size or layout.
   ============================================================ */

/* The plate hugs the image: inline-flex means its box is exactly
   the logo box, so the % sizing on ::before scales at every
   breakpoint without hard-coding a single pixel value. */
.logo-plate {
    position: relative;
    display: inline-flex;
    align-items: center;
    isolation: isolate;
}

.logo-plate::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 132%;
    height: 150%;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.52) 34%,
        rgba(0, 0, 0, 0.30) 58%,
        rgba(0, 0, 0, 0.10) 76%,
        rgba(0, 0, 0, 0) 88%
    );
    filter: blur(8px);
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.35s ease;
}

.logo-plate img {
    position: relative;
    z-index: 1;
    /* Stacked shadows read as one soft halo that follows the
       shield silhouette rather than a rectangle. */
    filter:
        drop-shadow(0 0 3px rgba(0, 0, 0, 0.95))
        drop-shadow(0 0 10px rgba(0, 0, 0, 0.85))
        drop-shadow(0 0 26px rgba(0, 0, 0, 0.7))
        drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6));
}

/* Once the navbar gains its own dark panel the plate is no longer
   doing any work — fade it out so the header stays clean. */
.navbar.scrolled .logo-plate::before {
    opacity: 0.35;
}

/* Softer treatment in the footer: that background is already dark,
   so the halo only needs to lift the metal off it. */
.footer-logo .logo-plate::before {
    width: 120%;
    height: 132%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.38) 45%,
        rgba(0, 0, 0, 0) 82%
    );
}

.footer-logo .logo-plate img {
    filter:
        drop-shadow(0 0 4px rgba(0, 0, 0, 0.8))
        drop-shadow(0 0 18px rgba(0, 0, 0, 0.55));
}

/* Dark scrim under the transparent navbar so the whole header —
   logo, links and phone number — sits on something, not on the
   bright top edge of the hero photo. */
.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(
        to bottom,
        rgba(4, 12, 22, 0.72) 0%,
        rgba(4, 12, 22, 0.46) 40%,
        rgba(4, 12, 22, 0.18) 70%,
        rgba(4, 12, 22, 0) 100%
    );
    transition: opacity 0.35s ease;
}

.navbar.scrolled::before {
    opacity: 0;
}

/* The mobile drawer already has a solid panel behind it. */
.mobile-menu-logo .logo-plate::before {
    opacity: 0.5;
}

/* The wrapper now owns the footer logo's bottom margin, otherwise it
   counts inside the plate box and drags the halo off-centre. */
.footer-logo .logo-plate { margin-bottom: 20px; }
.footer-logo .logo-plate .footer-logo-img { margin-bottom: 0; }

/* ============================================================
   CONTACT FORM — status line, spam trap, and the icon keyframes
   that script.js used to inject as an inline <style> block.
   Moving them here means the Content-Security-Policy has one
   less thing to allow.
   ============================================================ */

@keyframes iconPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/*
 * The honeypot must be invisible to people but still fillable by a bot, so it
 * is moved off-screen rather than display:none — some bots skip hidden inputs.
 * aria-hidden + tabindex="-1" keep it away from screen readers and the tab order.
 */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.92rem;
    line-height: 1.5;
    border: 1px solid transparent;
}

.form-status.sending {
    background: rgba(15, 42, 71, 0.06);
    border-color: rgba(15, 42, 71, 0.14);
    color: #43566b;
}

.form-status.ok {
    background: rgba(34, 197, 94, 0.10);
    border-color: rgba(34, 197, 94, 0.35);
    color: #15803d;
}

.form-status.bad {
    background: rgba(228, 57, 3, 0.09);
    border-color: rgba(228, 57, 3, 0.32);
    color: #b33500;
}

/* An author-set display would otherwise beat the hidden attribute and the
   status line would show up empty on first paint. */
[hidden] { display: none !important; }
