/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #191970; /* Midnight Blue */
    background-color: #F7E7CE;
}

/* Header */
header {
    background-color: #000305; /* Midnight Blue */
    color: #ECEFF1; /* Light Blue-Grey */
    padding: 10px 20px;
    position: relative;
    z-index: 100;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #000305;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 60px;
    height: 60px;
}

h1 {
    flex: 1;
    text-align: center;
    font-size: 1.2em;
    color: #ECEFF1;
    margin: 0;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid #FFD700;
    border-radius: 10px;
    background-color: transparent;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background-color: #FFD700;
}

.nav-toggle span + span {
    margin-top: 6px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #ECEFF1;
    text-decoration: none;
}

.nav-links a:hover {
    color: #FFD700;
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #F7E7CE;
}

/* Activities */
.activities {
    padding: 50px 20px;
    background-color: #000305;
    color: #ECEFF1;
    position: relative;
    z-index: 1;
}

.activities .solution {
    margin-bottom: 24px;
}

.activities .solution h3 {
    color: #ECEFF1;
}

.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;
}

/* Why Choose */
.why-choose {
    padding: 60px 20px;
    text-align: center;
    background-color: #000000;
    color: #ECEFF1;
    position: relative;
    z-index: 1;
}

.why-choose h2 {
    margin-bottom: 20px;
    color: #ECEFF1;
    font-size: 1.8em;
}

.why-choose p {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #cccccc;
}

.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: #111111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px 40px;
    min-width: 180px;
}

.stat-value {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95em;
    color: #ECEFF1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video + Hero Section */
.video-hero-section {
    display: flex;
    background-color: #0a0a0a;
    color: #ECEFF1;
    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;
}

.video-column h2 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-column video {
    width: 100%;
    height: auto;
    min-height: 450px;
    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: #FFD700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-column .hero-sub {
    font-size: 1.1em;
    font-style: italic;
    color: #cccccc;
    margin-bottom: 20px;
}

.hero-column p {
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 15px;
}

.hero-column .hero-cta {
    margin-top: 25px;
}

/* Hero Tagline */
.hero-tagline {
    background-color: #0a0a0a;
    color: #ECEFF1;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 2px solid #FFD700;
    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: #FFD700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-sub {
    font-size: 1.15em;
    font-style: italic;
    color: #cccccc;
    margin-bottom: 20px;
}

.hero-tagline p {
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 15px;
}

.hero-cta {
    margin-top: 25px;
}

.btn-primary {
    display: inline-block;
    background-color: #FFD700;
    color: #000;
    font-weight: bold;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6c200;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    font-weight: bold;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid #FFD700;
    text-decoration: none;
    font-size: 1em;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #000;
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background-color: #111111;
    color: #ECEFF1;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/HARMONY LOGO 1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #FFD700;
}

.service-card:hover::before {
    opacity: 0.15;
}

.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: #FFD700;
    margin-bottom: 15px;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card h3::after {
    content: '+';
    color: #FFD700;
    font-size: 1.2rem;
    line-height: 1;
}

.service-card h3:focus-visible {
    outline: 2px solid #FFD700;
    outline-offset: 3px;
}

.service-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 0;
    color: #cccccc;
    line-height: 1.8;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-bottom 0.35s ease;
}

.service-note {
    font-size: 0.9em;
    font-style: italic;
    color: #aaaaaa;
    border-top: 0 solid #333;
    padding-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding-top 0.35s ease, border-top-width 0.35s ease;
}

.service-card.is-open ul {
    max-height: 260px;
    opacity: 1;
    margin-bottom: 15px;
}

.service-card.is-open .service-note {
    max-height: 160px;
    opacity: 1;
    border-top-width: 1px;
    padding-top: 12px;
}

.service-card.is-open h3::after {
    content: '-';
}

/* 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: #FFD700;
    font-weight: bold;
    font-size: 0.95em;
}

.why-footer-note {
    max-width: 700px;
    margin: 20px auto 0;
    font-style: italic;
    color: #aaaaaa;
    font-size: 0.95em;
}

/* Privacy Section */
.privacy-section {
    background-color: #0d0d0d;
    color: #ECEFF1;
    padding: 60px 20px;
    border-top: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
    position: relative;
    z-index: 1;
}

.privacy-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.privacy-inner h2 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.privacy-inner p {
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 14px;
}

.privacy-inner ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    color: #FFD700;
    font-weight: bold;
    line-height: 2;
}

.privacy-tagline {
    font-size: 1.2em;
    color: #ECEFF1 !important;
    font-weight: bold;
}

/* CTA Banner */
.cta-banner {
    background-color: #000000;
    color: #ECEFF1;
    padding: 70px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-fire {
    font-size: 1.6em;
    font-weight: bold;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-banner p {
    line-height: 1.8;
    color: #cccccc;
    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: #ECEFF1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0 20px;
}

.cta-close {
    color: #aaaaaa !important;
    font-size: 1em;
}

/* Footer */
footer {
    background:
        radial-gradient(circle at top center, rgba(255, 215, 0, 0.12), transparent 55%),
        linear-gradient(180deg, #0b0b0b, #121313);
    border-top: 1px solid rgba(255, 215, 0, 0.35);
    color: #ECEFF1; /* Light Blue-Grey */
    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 #2f2f2f;
    background-color: #0f1010;
    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: #FFD700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35), 0 0 14px rgba(255, 215, 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: #ECEFF1;
    border-radius: 50%;
    border: 1px solid #2f2f2f;
    background-color: #0f1010;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-links img {
    width: 20px;
    height: 20px;
}

.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 #2f2f2f;
    background-color: #0e0f0f;
    color: #ECEFF1;
    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: #FFD700;
    transform: translateY(-2px);
    border-color: #FFD700;
    background-color: #151515;
}

.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: 600px) {
    .footer-contacts {
        flex-direction: column;
        gap: 10px;
    }

    .footer-contact-link {
        width: min(92vw, 360px);
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
    }

    h1 {
        order: 3;
        flex: 0 0 100%;
        text-align: left;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        order: 4;
        width: 100%;
        margin-top: 12px;
        padding: 14px;
        border: 1px solid #2f2f2f;
        border-radius: 14px;
        background-color: #090909;
        flex-direction: column;
        gap: 10px;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
    }

    nav.nav-open .nav-links {
        display: flex;
    }

    .nav-links li {
        margin-left: 0;
    }

    .nav-links a {
        display: block;
        padding: 12px 14px;
        border-radius: 10px;
        background-color: #141414;
    }

    .container {
        flex-direction: column;
    }
    .slider {
        height: 400px;
    }
    .video-hero-section {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 5px 10px;
    }
    h1 {
        font-size: 1em;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .activities, .why-choose {
        padding: 30px 10px;
    }
    .slider {
        height: 300px;
    }
    .left h2 {
        font-size: 1.5em;
    }
    .why-choose h2 {
        font-size: 1.5em;
    }
    .right video {
        height: 250px;
    }
}
