/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f4f4f4;
}
::-webkit-scrollbar-thumb {
    background: #FFB800;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 184, 0, 0.9);
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #F4F4F4;
    background-color: #000000;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

:root {
    --site-accent: #FFB800;
    --site-text: #1F1F1F;
    --site-muted: #4d4d4d;
    --site-border: #e6e6e6;
}

/* Global heading font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', Arial, sans-serif;
    letter-spacing: 0.5px;
}

header {
    background-color: #FFFFFF;
    color: var(--site-text);
    padding: 14px 22px;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

/* Glassmorphism nav on scroll */
header.scrolled {
    background-color: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 184, 0, 0.15);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background-color: #FFFFFF;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 84px;
    height: 84px;
    border-radius: 14px;
    border: 2px solid rgba(255, 184, 0, 0.6);
    background-color: rgba(255, 184, 0, 0.16);
    padding: 6px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(255, 184, 0, 0.16);
}

.brand-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

nav h1 {
    flex: 1;
    text-align: center;
    font-size: clamp(1rem, 1.75vw, 1.35rem);
    color: var(--site-text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 6px rgba(255, 184, 0, 0.14);
}

.nav-security-image {
    width: 140px;
    height: 104px;
    border-radius: 14px;
    border: none;
    background-color: #000000;
    padding: 4px;
    object-fit: contain;
    object-position: center;
    box-shadow: none;
    filter: none;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--site-accent);
    border-radius: 10px;
    background-color: transparent;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background-color: var(--site-accent);
}

.nav-toggle span + span {
    margin-top: 6px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links li {
    margin-left: 0;
}

.nav-links a {
    color: var(--site-text);
    text-decoration: none;
    font-family: 'Rajdhani', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.86rem;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(31, 31, 31, 0.06);
    background: rgba(255, 184, 0, 0.08);
    transition: color 0.24s ease, border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.nav-links a:hover {
    color: var(--site-accent);
    border-color: rgba(255, 184, 0, 0.55);
    box-shadow: 0 12px 24px rgba(255, 184, 0, 0.12);
    transform: translateY(-1px);
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 84vh;
    min-height: 520px;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 184, 0, 0.05), rgba(255, 184, 0, 0.95));
    transform-origin: left center;
    animation: slide-loading 5s linear infinite;
    z-index: 4;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.06);
    filter: blur(10px);
    transition: opacity 0.9s ease, transform 1.2s ease, filter 1.2s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

@keyframes slide-loading {
    0% {
        transform: scaleX(0);
        opacity: 0.35;
    }
    12% {
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #F7E7CE;
}

/* Activities */
.activities {
    padding: 50px 20px;
    background-color: #FFFFFF;
    color: var(--site-text);
    position: relative;
    z-index: 1;
}

.activities .solution {
    margin-bottom: 24px;
}

.activities .solution h3 {
    color: var(--site-text);
}

.container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.left, .right {
    flex: 1;
    padding: 20px;
}

.left h2 {
    margin-bottom: 20px;
}

.left ul {
    list-style: disc;
    padding-left: 20px;
}

.right video {
    width: 100%;
    height: auto;
}

/* Our Capabilities Section */
.capabilities-section {
    padding: 70px 20px;
    background: #0d0d0d;
    background-image: radial-gradient(rgba(255, 184, 0, 0.07) 1px, transparent 1px);
    background-size: 26px 26px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.capabilities-section .section-title {
    color: #FFB800;
    margin-bottom: 14px;
}

.capabilities-intro {
    max-width: 780px;
    margin: 0 auto 48px;
    color: #c0c0c0;
    line-height: 1.8;
    font-size: 1rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 184, 0, 0.22);
    border-top: 3px solid #FFB800;
    border-radius: 16px;
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.capability-card:hover {
    background: rgba(255, 184, 0, 0.09);
    border-color: #FFB800;
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}

.capability-icon {
    font-size: 2.6rem;
    line-height: 1;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.35));
}

.capability-card h3 {
    color: #FFB800;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin: 0;
}

.capability-card p {
    color: #b8b8b8;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* Why Choose */
.why-choose {
    padding: 60px 20px;
    text-align: center;
    background-color: #FFFFFF;
    background-image: radial-gradient(rgba(255, 184, 0, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    color: var(--site-text);
    position: relative;
    z-index: 1;
}

.why-choose h2 {
    margin-bottom: 20px;
    color: var(--site-text);
    font-size: 1.8em;
}

.why-choose p {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: var(--site-muted);
}

.why-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid rgba(31, 31, 31, 0.08);
    border-radius: 10px;
    padding: 30px 40px;
    min-width: 180px;
}

.stat-value {
    font-size: 2.5em;
    font-weight: bold;
    font-family: 'Rajdhani', Arial, sans-serif;
    color: var(--site-accent);
    margin-bottom: 10px;
    text-shadow: 0 0 18px rgba(255, 184, 0, 0.22);
}

.stat-label {
    font-size: 0.95em;
    color: var(--site-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video + Hero Section */
.video-hero-section {
    display: flex;
    background-color: #FFFFFF;
    color: var(--site-text);
    padding: 50px 20px;
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.video-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
}

.video-column h2 {
    font-size: 1.5em;
    color: var(--site-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-column video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-column .hero-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero-column h2 {
    font-size: 1.8em;
    color: #FFB800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-column .hero-sub {
    font-size: 1.1em;
    font-style: italic;
    color: var(--site-muted);
    margin-bottom: 20px;
}

.hero-column p {
    line-height: 1.8;
    color: var(--site-muted);
    margin-bottom: 15px;
}

.hero-column .hero-cta {
    margin-top: 25px;
}

/* Hero Tagline */
.hero-tagline {
    background-color: #FFFFFF;
    color: var(--site-text);
    text-align: center;
    padding: 60px 20px;
    border-bottom: 2px solid var(--site-accent);
    position: relative;
    z-index: 1;
}

.hero-tagline-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-tagline h2 {
    font-size: 2em;
    color: var(--site-accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-sub {
    font-size: 1.15em;
    font-style: italic;
    color: var(--site-muted);
    margin-bottom: 20px;
}

.hero-tagline p {
    line-height: 1.8;
    color: var(--site-muted);
    margin-bottom: 15px;
}

.hero-cta {
    margin-top: 25px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FFB800 0%, #FFB800 100%);
    color: #1F1F1F;
    font-weight: bold;
    font-family: 'Rajdhani', Arial, sans-serif;
    font-size: 1em;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.22);
    transform: skewX(-20deg);
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0% { left: -75%; }
    60%, 100% { left: 135%; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.45); }
    50% { box-shadow: 0 0 0 12px rgba(255, 184, 0, 0); }
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFB800 0%, #FFB800 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.35);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--site-accent);
    font-weight: bold;
    font-family: 'Rajdhani', Arial, sans-serif;
    padding: 14px 32px;
    border-radius: 6px;
    border: 2px solid var(--site-accent);
    text-decoration: none;
    font-size: 1em;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--site-accent);
    color: #1F1F1F;
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.35);
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    color: var(--site-text);
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    font-family: 'Rajdhani', Arial, sans-serif;
    color: var(--site-accent);
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFB800, transparent);
    border-radius: 999px;
    margin: 10px auto 0;
}

.services-grid {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.services-home-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 26px;
    align-items: start;
}

.services-home-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.service-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(31, 31, 31, 0.08);
    border-top: 2px solid var(--site-accent);
    border-radius: 12px;
    padding: 22px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/HARMONY LOGO 2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 184, 0, 0.15), 0 4px 16px rgba(0,0,0,0.12);
}

.service-card.is-active {
    border-color: #8f7825;
    box-shadow: 0 12px 32px rgba(255, 184, 0, 0.18), 0 4px 16px rgba(0,0,0,0.55);
}

.service-card:hover::before {
    opacity: 0.2;
}

.service-icon,
.service-card h3,
.service-card ul,
.service-note {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 2.2em;
    margin-bottom: 12px;
}

.service-card h3 {
    color: var(--site-accent);
    margin-bottom: 8px;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card h3::after {
    content: 'View';
    color: var(--site-accent);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 184, 0, 0.35);
    border-radius: 999px;
    padding: 4px 9px;
}

.service-card h3:focus-visible {
    outline: 2px solid var(--site-accent);
    outline-offset: 3px;
}

.service-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--site-text);
    line-height: 1.8;
}

.service-note {
    font-size: 0.9em;
    font-style: italic;
    color: var(--site-muted);
    margin-top: 8px;
}

.services-home-list .service-card ul,
.services-home-list .service-card .service-note {
    display: none;
}

.home-service-detail-panel {
    position: sticky;
    top: 92px;
    min-height: 340px;
    background: #FFFFFF;
    border: 1px solid rgba(31, 31, 31, 0.08);
    border-top: 2px solid var(--site-accent);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.home-service-detail-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/HARMONY LOGO 2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.home-service-detail-panel > * {
    position: relative;
    z-index: 1;
}

.home-service-detail-panel.is-empty {
    display: grid;
    place-items: center;
}

.detail-placeholder {
    color: var(--site-muted);
    text-align: center;
    line-height: 1.7;
    max-width: 260px;
}

.detail-content {
    animation: detail-fade-in 0.26s ease;
}

@keyframes detail-fade-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.detail-symbol {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFB800;
    border: 1px solid rgba(31, 31, 31, 0.12);
    color: #1F1F1F;
    font-size: 1.4rem;
}

.home-service-detail-panel h3 {
    color: #FFB800;
    font-size: 1.3rem;
    line-height: 1.3;
}

.home-service-detail-panel ul {
    color: var(--site-text);
    list-style: disc;
    padding-left: 20px;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Why Choose Checklist */
.why-checklist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin: 30px auto 20px;
    max-width: 700px;
}

.why-checklist span {
    color: #FFB800;
    font-weight: bold;
    font-size: 0.95em;
}

.why-footer-note {
    max-width: 700px;
    margin: 20px auto 0;
    font-style: italic;
    color: #666666;
    font-size: 0.95em;
}

/* Privacy Section */
.privacy-section {
    background-color: #FFFFFF;
    color: var(--site-text);
    padding: 60px 20px;
    border-top: 2px solid var(--site-accent);
    border-bottom: 2px solid var(--site-accent);
    position: relative;
    z-index: 1;
}

.privacy-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.privacy-inner h2 {
    font-size: 1.8em;
    color: var(--site-accent);
    margin-bottom: 20px;
}

.privacy-inner p {
    line-height: 1.8;
    color: var(--site-muted);
    margin-bottom: 14px;
}

.privacy-inner ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    color: var(--site-accent);
    font-weight: bold;
    line-height: 2;
}

.privacy-tagline {
    font-size: 1.2em;
    color: var(--site-text) !important;
    font-weight: bold;
}

/* CTA Banner */
.cta-banner {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 184, 0, 0.13), transparent 65%),
        #FFFFFF;
    color: var(--site-text);
    padding: 70px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 184, 0, 0.2);
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-fire {
    font-size: 1.6em;
    font-weight: bold;
    font-family: 'Rajdhani', Arial, sans-serif;
    background: linear-gradient(135deg, #FFB800 0%, #FFB800 50%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.cta-banner p {
    line-height: 1.8;
    color: var(--site-muted);
    margin-bottom: 16px;
}

.cta-trio {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 25px 0;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--site-text);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0 20px;
}

.cta-close {
    color: var(--site-muted) !important;
    font-size: 1em;
}

/* Footer */
footer {
    background:
        radial-gradient(circle at top center, rgba(255, 184, 0, 0.12), transparent 55%),
        #FFFFFF;
    border-top: 1px solid rgba(255, 184, 0, 0.35);
    color: var(--site-text);
    text-align: center;
    padding: 28px 20px 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 184, 0, 0.55);
    background-color: #1A1A1A;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-email-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-links a:hover,
.footer-email-link:hover {
    transform: translateY(-2px);
    border-color: #FFB800;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35), 0 0 14px rgba(255, 184, 0, 0.2);
}

.footer-email-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    line-height: 1;
    color: #F4F4F4;
    border-radius: 50%;
    border: 1px solid rgba(255, 184, 0, 0.55);
    background-color: #1A1A1A;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-domain {
    margin: 10px 0 6px;
    font-size: 0.9rem;
}

.footer-domain a {
    color: #FFB800;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Rajdhani', Arial, sans-serif;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 184, 0, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-domain a:hover {
    color: var(--site-accent);
    border-color: rgba(255, 184, 0, 0.6);
}

.footer-consult-note {
    margin: 10px 0 12px;
    color: #F6F6F6;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-bottom: 12px;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(31, 31, 31, 0.12);
    background-color: #FFFFFF;
    color: var(--site-text);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.footer-contact-link:hover {
    color: #1F1F1F;
    transform: translateY(-2px);
    border-color: var(--site-accent);
    background-color: var(--site-accent);
}

.footer-phone-icon {
    font-size: 1rem;
    line-height: 1;
}

footer > p:last-of-type {
    margin-top: 10px;
    color: #b7bdc2;
    font-size: 0.92rem;
}

@media (max-width: 1024px) {
    nav {
        flex-wrap: wrap;
        gap: 8px;
    }

    .brand-heading {
        flex: 1;
        min-width: 0;
        justify-content: center;
    }

    nav h1 {
        text-align: center;
        font-size: clamp(0.78rem, 2.4vw, 1.08rem);
    }

    .logo img {
        width: 64px;
        height: 64px;
    }

    .nav-security-image {
        width: 98px;
        height: 72px;
    }

    .nav-toggle {
        display: block;
        flex-shrink: 0;
        border-color: rgba(255, 184, 0, 0.9);
        background-color: #000000;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
    }

    .nav-toggle span {
        background-color: #FFFFFF;
    }

    .nav-links {
        display: none;
        order: 4;
        width: 100%;
        margin-top: 12px;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 14px;
        background-color: #000000;
        flex-direction: column;
        gap: 10px;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
    }

    nav.nav-open .nav-links {
        display: flex;
    }

    nav.nav-open .nav-toggle {
        background-color: #FFB800;
        border-color: #FFB800;
    }

    nav.nav-open .nav-toggle span {
        background-color: #000000;
    }

    .nav-links li {
        margin-left: 0;
    }

    .nav-links a {
        display: block;
        padding: 12px 14px;
        border-radius: 10px;
        color: #FFFFFF;
        border: 1px solid rgba(255, 184, 0, 0.6);
        background: rgba(255, 184, 0, 0.12);
        font-size: 0.92rem;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        color: #000000;
        background: #FFB800;
        border-color: #FFB800;
        box-shadow: 0 10px 22px rgba(255, 184, 0, 0.35);
        outline: none;
    }
}

@media (max-width: 600px) {
    .footer-contacts {
        flex-direction: column;
        gap: 10px;
    }

    .footer-contact-link {
        width: min(92vw, 360px);
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .slider {
        height: 360px;
        min-height: 360px;
    }
    .video-hero-section {
        flex-direction: column;
        gap: 30px;
    }

    .services-home-shell {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .services-home-list {
        grid-template-columns: 1fr;
    }

    .home-service-detail-panel {
        position: static;
        top: auto;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header {
        padding: 6px 8px;
    }

    nav h1 {
        font-size: clamp(0.6rem, 3.2vw, 0.82rem);
        letter-spacing: 0.3px;
    }

    .logo img {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        padding: 4px;
    }

    .nav-security-image {
        width: 64px;
        height: 46px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .activities, .why-choose {
        padding: 30px 10px;
    }
    .slider {
        height: 280px;
        min-height: 280px;
    }
    .left h2 {
        font-size: 1.5em;
    }
    .why-choose h2 {
        font-size: 1.5em;
    }
    .right video {
        height: 250px;
    }
}

/* ============================================================
   SLIDER OVERLAY — hero text on top of the image slider
   ============================================================ */
.slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    padding: 60px 48px;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        transparent 100%);
    pointer-events: none;
}

.slider-overlay-inner {
    pointer-events: auto;
    max-width: 720px;
}

.slider-badge {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.18), rgba(255, 184, 0, 0.07));
    border: 1px solid rgba(255, 184, 0, 0.55);
    color: #ffe17a;
    font-family: 'Rajdhani', Arial, sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    line-height: 1.35;
    padding: 9px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
    max-width: min(92vw, 700px);
    white-space: normal;
    overflow-wrap: anywhere;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset,
                0 8px 28px rgba(0, 0, 0, 0.28),
                0 0 22px rgba(255, 184, 0, 0.22);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.slider-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-130%);
    background: linear-gradient(120deg,
        transparent 20%,
        rgba(255, 255, 255, 0.35) 48%,
        transparent 80%);
    animation: badge-sheen 4.8s ease-in-out infinite;
}

@keyframes badge-sheen {
    0%, 72% { transform: translateX(-130%); }
    100% { transform: translateX(130%); }
}

.slider-headline {
    font-family: 'Rajdhani', Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-height: 1.15em;
}

/* Typewriter blinking cursor */
.typewriter::after {
    content: '|';
    color: #FFB800;
    animation: blink-cursor 0.7s step-end infinite;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.slider-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.05em;
    color: rgba(236, 239, 241, 0.82);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

/* Scroll-down chevron */
.scroll-indicator {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    color: rgba(255, 184, 0, 0.7);
    font-size: 2.2rem;
    line-height: 1;
    animation: bounce-down 1.8s ease-in-out infinite;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

@keyframes bounce-down {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

@media (max-width: 768px) {
    .slider-overlay {
        padding: 20px 16px;
        align-items: flex-end;
    }

    .slider-overlay-inner {
        max-width: 100%;
        max-height: 52%;
        overflow-y: auto;
        padding-right: 4px;
    }

    .slider-headline {
        font-size: clamp(1.4rem, 6vw, 2.2rem);
        margin-bottom: 10px;
    }
    .slider-badge {
        font-size: 0.68rem;
        letter-spacing: 1px;
        line-height: 1.3;
        padding: 7px 12px;
        max-width: 100%;
        margin-bottom: 12px;
    }
    .slider-sub {
        font-size: 0.82em;
        line-height: 1.5;
        margin-bottom: 18px;
        display: block;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .slider-overlay {
        padding: 14px 12px;
        align-items: flex-end;
    }
    .slider-headline {
        font-size: clamp(1.15rem, 6.5vw, 1.8rem);
        margin-bottom: 8px;
    }
    .slider-badge {
        font-size: 0.6rem;
        letter-spacing: 0.8px;
        padding: 6px 10px;
        margin-bottom: 8px;
    }
    .slider-sub {
        display: block;
        font-size: 0.74em;
        line-height: 1.45;
        margin-bottom: 12px;
    }

    .slider-overlay-inner {
        max-height: 56%;
    }

    .slider-overlay .btn-primary {
        font-size: 0.82em;
        padding: 10px 18px;
    }
}

/* ============================================================
   SCROLL REVEAL — fade-up on scroll
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger children inside a reveal container */
[data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal-stagger].is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
[data-reveal-stagger].is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }

/* ============================================================
   NAV LINK HOVER ACCENT
   ============================================================ */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    inset: auto -20% -45% -20%;
    height: 90%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 184, 0, 0.26), transparent 72%);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
}

.nav-links a:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   STAT CARD HOVER LIFT
   ============================================================ */
.stat {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(255, 184, 0, 0.15);
}

/* ============================================================
   PRIVACY SECTION — subtle gold glow accent
   ============================================================ */
.privacy-section {
    background: #FFFFFF;
}

/* ============================================================
   VIDEO-HERO section heading gold gradient
   ============================================================ */
.video-column h2,
.hero-column h2 {
    background: linear-gradient(135deg, #FFB800 0%, #FFB800 50%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   WHY-CHOOSE heading gold gradient
   ============================================================ */
.why-choose h2 {
    background: linear-gradient(135deg, #FFB800 0%, #FFB800 50%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
body.is-transitioning {
    overflow: hidden;
}

body.is-transitioning > :not(.page-transition):not(header):not(footer) {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.97);
    pointer-events: none;
    transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
                filter 680ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-transition {
    --transition-duration: 680ms;
    --transition-ease: cubic-bezier(0.22, 1, 0.36, 1);
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 184, 0, 0.16), transparent 48%),
        radial-gradient(circle at 80% 78%, rgba(255, 184, 0, 0.11), transparent 44%),
        linear-gradient(165deg, rgba(0, 0, 0, 0.98) 0%, rgba(8, 8, 8, 0.98) 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    transform: scale(1.015);
    transition:
        opacity var(--transition-duration) var(--transition-ease),
        transform var(--transition-duration) var(--transition-ease),
        backdrop-filter var(--transition-duration) var(--transition-ease),
        visibility 0s linear var(--transition-duration);
}

.page-transition.is-active {
    opacity: 1;
    visibility: visible;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transform: scale(1);
    transition:
        opacity var(--transition-duration) var(--transition-ease),
        transform var(--transition-duration) var(--transition-ease),
        backdrop-filter var(--transition-duration) var(--transition-ease);
}

.page-transition::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 184, 0, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.35;
}

.page-transition-mark {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transform: translateY(14px) scale(0.93);
    opacity: 0;
    filter: blur(10px);
    transition:
        transform var(--transition-duration) var(--transition-ease),
        opacity var(--transition-duration) var(--transition-ease),
        filter var(--transition-duration) var(--transition-ease);
}

.page-transition.is-active .page-transition-mark {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
}

.page-transition-mark img {
    width: clamp(78px, 10vw, 120px);
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 184, 0, 0.5);
    background: rgba(255, 184, 0, 0.05);
    padding: 8px;
    box-shadow: 0 0 24px rgba(255, 184, 0, 0.2), 0 12px 30px rgba(0, 0, 0, 0.5);
    animation: transition-logo-pulse 1.35s ease-in-out infinite;
}

.page-transition-mark span {
    color: #f3f4f6;
    font-family: 'Rajdhani', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: clamp(0.85rem, 2vw, 1.05rem);
}

@keyframes transition-logo-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 20px rgba(255, 184, 0, 0.15), 0 10px 26px rgba(0, 0, 0, 0.45);
    }
    50% {
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 0 28px rgba(255, 184, 0, 0.32), 0 14px 30px rgba(0, 0, 0, 0.52);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.is-transitioning > :not(.page-transition):not(header):not(footer),
    .page-transition,
    .page-transition.is-active,
    .page-transition-mark {
        transition-duration: 1ms !important;
        animation: none !important;
    }
}

/* Global light-black theme overrides */
:root {
    --site-text: #F4F4F4;
    --site-muted: #CFCFCF;
    --site-border: #3A3A3A;
}

header,
nav,
.activities,
.why-choose,
.video-hero-section,
.services-section,
.privacy-section,
.cta-banner,
footer,
.service-card,
.stat,
.privacy-inner,
.cta-inner,
.home-service-detail-panel {
    background-color: #000000 !important;
    color: #F4F4F4;
}

.activities p,
.activities li,
.why-choose p,
.hero-column p,
.services-section p,
.privacy-section p,
.privacy-section li,
.cta-banner p,
.detail-placeholder,
.service-note,
footer p,
footer span,
footer a {
    color: #E9E9E9;
}

.nav-links a {
    color: #F4F4F4;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 184, 0, 0.15);
}

.service-card,
.stat,
.privacy-inner,
.home-service-detail-panel {
    border-color: rgba(255, 255, 255, 0.16);
}

/* Ensure text is readable on white/light buttons */
.footer-contact-link,
.footer-contact-link span,
.btn-secondary {
    color: #111111 !important;
    font-weight: 700;
}

.footer-contact-link {
    background-color: #FFFFFF;
}

/* Keep the security badge clean */
.nav-security-image {
    border: none !important;
    background-color: #000000 !important;
    box-shadow: none !important;
}

