/* Base */
body {
    background: #000;
    font-family: 'Segoe UI', sans-serif;
}

.section-title {
    font-weight: 700;
}

.text-yellow {
    color: #ffc107;
}

.btn-yellow {
    background: #ffc107;
    color: #000;
    font-weight: 600;
    border: none;
}

.btn-yellow:hover {
    background: #c0ea00;
    color: #000;
}

.btn-dark {
    background: #000;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.btn-dark:hover {
    background: #111;
    color: #ffc107;
}

/* Hero */
.hero {
    position: relative;
    height: 75vh;
    min-height: 75vh;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column;
    padding-top: 0 !important;
    background: none !important;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

.hero-content {
    max-width: 750px;
    margin: auto;
}

/* Advantages / Services / FAQ */
.advantages,
.services-offered,
.faq {
    background: #000;
}

.adv-card,
.service-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.adv-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    border-color: #ffc107;
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
}

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
}

.service-card .btn-warning {
    transition: all 0.3s ease;
}

.service-card:hover .btn-warning {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}
.accordion-button {
    border: none;
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    border-top: 1px solid #333;
}

/* CTA */
.cta-yellow {
    background: #ffc107;
}