/*
Theme Name: HHS Security Theme
Description: Professional security services theme for Hamburg
Author: Your Name
Version: 1.0
*/

/* ===== Reset and Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Inter', 'Roboto', 'Segoe UI', 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.7;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
    font-size: 16px;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header Section ===== */
.header {
    background: rgba(12, 12, 12, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: none;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .header__nav {
    padding: 10px 0;
}

.header.scrolled .header__logo img {
    height: 50px;
}

.header__top-bar {
    background: #d4af37;
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
}

.header__top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__contact-info span {
    margin-right: 20px;
    font-size: 14px;
}

.header__contact-info i {
    color: #ffffff;
    margin-right: 8px;
}

.header__social a {
    color: #ffffff;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.header__social a:hover {
    color: #dbdbdb;
}

.header__nav {
    padding: 15px 0;
    background: transparent;
    transition: padding 0.3s ease;
}

.header__nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    height: auto;
    max-height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: all 0.3s ease;

}

.header__menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.header__menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header__menu a:hover {
    color: #d4af37;
}

.header__menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #d4af37;
    transition: all 0.3s;
}

.header__menu a:hover::after {
    width: 100%;
    left: 0;
}

.header__mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #ffffff;
}

/* ===== Main Content ===== */
.site-content {
    padding-top: var(--header-height, 120px);
}

section {
    scroll-margin-top: var(--header-height, 80px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    padding: 120px 0 100px;
    margin-top: 0;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(135deg, rgba(12, 12, 12, 0.4), rgba(26, 26, 26, 0.5)),
        url('attached_assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero__top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 120px;
}

.hero__content {
    flex: 1;
    min-width: 280px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 0 15px;
}

.hero__title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: -1px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.hero__cta-btn {
    background: #d4af37;
    color: #ffffff;
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 600;
    border: 1px solid #000000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 10px;
}

.hero__cta-btn:hover {
    background: #f8f9fa;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.hero__stats {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero__stats-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 500;
}

.hero__certification {
    display: flex;
    justify-content: center;
}

.hero__certification img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== Features Section ===== */
.features {
    background: #f8f9fa;
    padding: 80px 0;
}

.features .features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.features .feature-box {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.features .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.features .feature-box h3 {
    color: #0c0c0c;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.features .feature-box p {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.features .feature-box__icon {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.features .feature-box__icon i {
    font-size: 2.2rem;
    color: #ffffff;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.about__single-image {
    width: 100%;
}

.about__single-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__text h2 {
    font-size: 2.1rem;
    margin-bottom: 30px;
    color: #333333;
    font-weight: 700;
    line-height: 1.2;
}

.about__text p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    font-weight: 400;
}

.about__stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.about__stat {
    text-align: center;
}

.about__stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.about__stat .stat-label {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
    margin-top: 10px;
}

/* ===== Certifications Section ===== */
.certifications {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1c1c1c);
}

.certifications__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.certifications__text {
    padding-right: 20px;
}

.certifications__label {
    font-size: 16px;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.certifications__text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #f7f7f7;
    line-height: 1.2;
}

.certifications__text p {
    font-size: 18px;
    line-height: 1.8;
    color: #fafafa;
    margin-bottom: 35px;
}

.certifications__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.certifications__list li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    color: #d4af37;
    line-height: 1.6;
    font-weight: 500;
}

.certifications__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: 700;
    font-size: 14px;
}

.certifications__media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.certifications__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.certifications__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certifications__image:first-child {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

.certifications__image:nth-child(2) {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.certifications__image:nth-child(3) {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}

.certifications__stat {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    background: #d4af37;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    color: #ffffff;
}

.certifications__stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.certifications__stat-label {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.services::before {
    display: none;
    /* Remove background image for minimalist clarity */
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 24px;
}

.services__header {
    text-align: center;
    margin-bottom: 70px;
}

.services__header h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.services__header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666666;
    line-height: 1.7;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    background: #d4af37;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card__icon i {
    color: #fff;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.services__cta {
    text-align: center;
}

.services__cta-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 14px 36px;
    font-size: 15px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 4px 20px rgba(173, 151, 79, 0.2);
}

.services__cta-btn:hover {
    background: #bfa565;
}


/* ===== How It Works Section ===== */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d0d0d, #1c1c1c);
}

.how-it-works__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.how-it-works__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.how-it-works__steps h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #d4af37;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step__number {
    background: #d4af37;
    color: #0c0c0c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step__content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #d4af37;
}

.step__content p {
    color: #eeeeee;
    line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta {
    padding: 80px 0;
    background: #fffafa;
    text-align: center;
}

.cta__content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.cta__content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #2e2e2e;
}

.cta__btn {
    background: #ffffff;
    color: #d4af37;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #d4af37;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta__btn:hover {
    background: #f8f9fa;
    color: #9e801f;
    transform: translateY(-2px);
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1c1c1c);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.contact__header {
    text-align: center;
    margin-bottom: 60px;
}

.contact__header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d4af37;
    position: relative;
    display: inline-block;
}

.contact__header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
}

.contact__header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact__locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.location {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #e6c200);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.location:hover::before {
    transform: translateX(0);
}

.location:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.location h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #d4af37;
    font-weight: 600;
}

.location p {
    margin-bottom: 12px;
    color: #eeeeee;
    line-height: 1.6;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.location i {
    color: #d4af37;
    margin-right: 12px;
    width: 16px;
    font-size: 14px;
}


/* ===== Map Section ===== */
.map {
    height: 400px;
}

.map__embed {
    width: 100%;
    height: 100%;
}

.map__embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Footer ===== */
.footer {
    background: #000000;
    color: #999999;
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer__column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.footer__column ul {
    list-style: none;
}

.footer__column ul li {
    margin-bottom: 10px;
}

.footer__column ul li a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__column ul li a:hover {
    color: #ffffff;
}

.footer__logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer__column p {
    color: #999999;
    line-height: 1.6;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
    color: #999999;
}

/* ===== Responsive Design ===== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero__title {
        font-size: 3rem;
    }

    .about__content,
    .certifications__content,
    .how-it-works__content,
    .contact__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .header__menu {
        display: none;
        position: fixed;
        top: 120px;
        left: 0;
        right: 0;
        background: rgba(12, 12, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .header__menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .header__menu li {
        margin: 0;
        text-align: center;
    }

    .header__menu a {
        display: block;
        padding: 15px 30px;
        color: #ffffff;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        transition: all 0.3s ease;
    }

    .header__menu a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: #d4af37;
    }

    .header__mobile-toggle {
        display: block;
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .header__mobile-toggle:hover {
        color: #d4af37;
    }

    .hero {
        margin-top: 0;
        padding: 80px 0 40px;
        min-height: 90vh;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
        gap: 30px;
    }

    .hero__top-row {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    .hero__content {
        text-align: center;
        padding: 0;
        gap: 20px;
        width: 100%;
    }

    .hero__title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero__subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 auto 20px;
        max-width: 320px;
    }

    .hero__cta-btn {
        align-self: center;
        width: auto;
        min-width: 200px;
        padding: 14px 32px;
        font-size: 16px;
    }

    .hero__stats {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero__stats-box {
        padding: 20px;
        border-radius: 12px;
    }

    .stat-item {
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .features .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features .feature-box {
        padding: 30px 20px;
    }

    .features .feature-box__icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
    }

    .features .feature-box__icon i {
        font-size: 1.8rem;
    }

    .features .feature-box h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .features .feature-box p {
        font-size: 15px;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .about__single-image img {
        height: 250px;
    }

    .certifications__logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__stats {
        justify-content: center;
        gap: 20px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 70px 0 35px;
    }

    .hero .container {
        padding: 0 10px;
        gap: 25px;
    }

    .hero__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        max-width: 280px;
        line-height: 1.5;
    }

    .hero__cta-btn {
        padding: 12px 28px;
        font-size: 15px;
        min-width: 180px;
    }

    .hero__stats-box {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .features .feature-box {
        padding: 25px 15px;
    }

    .features .feature-box__icon {
        width: 60px;
        height: 60px;
    }

    .features .feature-box h3 {
        font-size: 18px;
    }

    .header__contact-info span {
        margin-right: 10px;
        font-size: 12px;
    }

    .header__top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact__locations {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 15px;
    }

    .location {
        padding: 20px;
    }

    .location h3 {
        font-size: 1.2rem;
    }

    .location p {
        font-size: 0.9rem;
    }

    .about__stats {
        flex-direction: column;
        gap: 15px;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step__number {
        margin: 0 auto 15px;
    }

    .legal-content {
        padding: 60px 0;
    }

    .legal-text {
        padding: 0 20px;
    }

    .legal-text h2 {
        font-size: 24px;
    }

    .legal-text h3 {
        font-size: 20px;
    }

    .legal-text h4 {
        font-size: 16px;
    }

    .legal-text p {
        font-size: 15px;
    }
}

/* ===== Services Button ===== */
.services__button {
    text-align: center;
    margin-top: 40px;
}

.services__btn {
    display: inline-block;
    background: #d4af37;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.services__btn:hover {
    background: transparent;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

/* ===== Page Header Section ===== */
.page-header {
    background: #171717;
    color: #ffffff;
    padding: 250px 0 80px;
    text-align: center;
    margin-top: -80px;
}

.page-header__content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-header__content p {
    font-size: 20px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Services Detail Section ===== */
.services-detail {
    padding: 80px 0;
    background: #ffffff;
}

.service-detail {
    margin-bottom: 80px;
    padding: 60px 0;
}

.service-detail:nth-child(even) {
    background: #f8f9fa;
}

.service-detail__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail--reverse .service-detail__content {
    grid-template-columns: 1fr 1fr;
}

.service-detail__icon {
    width: 80px;
    height: 80px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-detail__icon i {
    font-size: 36px;
    color: #ffffff;
}

.service-detail__text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c0c0c;
    margin-bottom: 15px;
}

.service-detail__subtitle {
    font-size: 20px;
    color: #666666;
    margin-bottom: 30px;
    font-weight: 500;
}

.service-detail__description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333333;
}

.service-features li i {
    color: #d4af37;
    margin-right: 12px;
    font-size: 16px;
}

.service-detail__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-detail__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===== Active Navigation State ===== */
.header__menu a.active {
    color: #d4af37;
    position: relative;
}

.header__menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d4af37;
}

/* ===== Legal Content Section ===== */
.legal-content {
    padding: 80px 0;
    background: #ffffff;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: #0c0c0c;
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.legal-text h3 {
    color: #0c0c0c;
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text h4 {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-text p {
    color: #555555;
    font-size: 16px;
    margin-bottom: 16px;
}

.legal-text p strong {
    color: #0c0c0c;
    font-weight: 600;
}

.legal-text a {
    color: #d4af37;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-text a:hover {
    border-bottom-color: #d4af37;
}

/* ===== Responsive Design for Services Detail ===== */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
        margin-top: 60px;
    }

    .page-header__content h1 {
        font-size: 32px;
    }

    .page-header__content p {
        font-size: 16px;
    }

    .services-detail {
        padding: 60px 0;
    }

    .service-detail {
        margin-bottom: 60px;
        padding: 40px 0;
    }

    .service-detail__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail--reverse .service-detail__content {
        grid-template-columns: 1fr;
    }

    .service-detail__text h2 {
        font-size: 28px;
    }

    .service-detail__subtitle {
        font-size: 18px;
    }

    .service-detail__image {
        order: -1;
    }

    .service-detail--reverse .service-detail__image {
        order: -1;
    }

    .service-detail__icon {
        width: 60px;
        height: 60px;
    }

    .service-detail__icon i {
        font-size: 28px;
    }
}