/* ==========================================
   HERO
========================================== */

.hero-section {
    /* padding-block: 5% 10%; */
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)),
        url("../../img/hero.png") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, .75) 0%,
        rgba(0, 0, 0, .55) 45%,
        rgba(0, 0, 0, .25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: var(--white);
    opacity: 0;
    transform: translateY(40px);
    transition: .9s ease;
}

.hero-content.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: .75rem 1.4rem;
    margin-bottom: 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    font-weight: 600;
}

.hero-title {
    margin-bottom: 1.8rem;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 800;
}

.hero-description {
    max-width: 700px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, .9);
    font-size: 1.2rem;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-btn {
    padding: .9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-trust-item {
    min-width: 170px;
}

.hero-trust-item h3 {
    margin-bottom: .3rem;
    color: var(--primary-light);
    font-size: 2rem;
}

.hero-trust-item span {
    color: var(--white);
}

.hero-stat-number{
    margin-bottom: .3rem;
    color: var(--primary-light);
    font-size: 2rem;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 35px;
    color: var(--white);
    font-size: 28px;
    transform: translateX(-50%);
    animation: heroBounce 2s infinite;
}

@keyframes heroBounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 12px);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        /* padding-block-end: 15%; */
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-trust-item:last-child{
        margin-bottom: 70px;
    }
}

@media (max-height: 1000px) {
    .hero-section {
        padding-block: 5% 10%;
    }
}

/* ==========================================
   TRUST
========================================== */

.trust-section {
    position: relative;
    margin-top: 10%;
    padding-bottom: 100px;
    z-index: 5;
}

.trust-card {
    height: 100%;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-8px);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: rgba(198, 40, 40, .08);
    color: var(--primary-color);
    font-size: 1.75rem;
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: var(--primary-color);
    color: var(--white);
}

.trust-card h3 {
    margin-bottom: .75rem;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.trust-card p {
    margin: 0;
    color: #6c757d;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .trust-section {
        margin-top: 0;
        padding: 80px 0;
    }
}

/* ==========================================
   ABOUT
========================================== */

.about-section {
    background: var(--background-color);
}

.about-image {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    transition: var(--transition);
}

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

.about-feature {
    height: 100%;
}

.about-feature h3 {
    margin-bottom: .75rem;
    color: var(--text-color);
    font-weight: 700;
    font-size: 20px;
}

.about-feature p {
    margin-bottom: 0;
    color: #6c757d;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .about-section {
        text-align: center;
    }

    .about-image {
        margin-bottom: 2rem;
    }
}

/* ==========================================
   SERVICES
========================================== */

.services-section {
    background: var(--white);
}

.service-card {
    text-align: center;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.35rem;
    font-weight: 700;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #6c757d;
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ==========================================
   WHY US
========================================== */

.why-us-section {
    background: var(--background-color);
}

.why-us-image {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.why-us-image img {
    transition: var(--transition);
}

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

.why-us-list {
    margin-top: 2rem;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.why-us-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(198, 40, 40, .08);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.why-us-item h5 {
    margin-bottom: .5rem;
    color: var(--text-color);
    font-weight: 700;
}

.why-us-item p {
    margin: 0;
    color: #6c757d;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    .why-us-section {
        text-align: center;
    }

    .why-us-item {
        text-align: left;
    }

    .why-us-image {
        margin-bottom: 2rem;
    }
}

/* ==========================================
   GALLERY
========================================== */

.gallery-section {
    background: var(--white);
}

.gallery-card {
    overflow: hidden;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    overflow: hidden;
}

.gallery-image img {
    height: 280px;
    width: 100%;
    transition: var(--transition);
}

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

.gallery-content {
    padding: 1.5rem;
    min-height: 15vh;
}

.gallery-category {
    display: inline-block;
    margin-bottom: .75rem;
    padding: .35rem .9rem;
    border-radius: 50px;
    background: rgba(198, 40, 40, .08);
    color: var(--primary-color);
    font-size: .8rem;
    font-weight: 600;
}

.gallery-content h5 {
    margin: 0;
    color: var(--text-color);
    font-weight: 700;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials-section {
    background: var(--background-color);
}

.testimonial-card {
    height: 100%;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    margin-bottom: 1rem;
    color: #f4b400;
}

.testimonial-message {
    margin-bottom: 1.5rem;
    color: #6c757d;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-name {
    margin-bottom: .25rem;
    color: var(--text-color);
    font-weight: 700;
}

.testimonial-meta {
    color: #6c757d;
    font-size: .9rem;
}

/* ==========================================
   FAQ
========================================== */

.faq-section {
    background: var(--white);
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 1rem !important;
    overflow: hidden;
}

.accordion-button {
    padding: 1.25rem 1.5rem;
    background: var(--white);
    color: var(--text-color);
    font-weight: 600;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(198, 40, 40, .08);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    color: #6c757d;
    line-height: 1.8;
}

/* ==========================================
   CTA
========================================== */

.cta-section {
    padding: 100px 0;
    background: var(--background-color);
}

.cta-wrapper {
    padding: 70px;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-title {
    margin: 1rem 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.cta-description {
    margin: 0;
    color: rgba(255,255,255,.9);
    line-height: 1.8;
}

.cta-wrapper .section-subtitle {
    background: rgba(255,255,255,.15);
    color: var(--white);
}

.cta-wrapper .btn-light {
    font-weight: 600;
    color: var(--primary-color);
}

.cta-wrapper .btn-outline-light {
    font-weight: 600;
}

@media (max-width: 991.98px) {

    .cta-wrapper {
        padding: 50px 30px;
        text-align: center;
    }

    .cta-wrapper .btn {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ==========================================
   MAP
========================================== */

.map-section {
    height: 500px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}