/* Hero Section Base Styles */
.hero-section {
    background: var(--rp-headlines);
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rp-headlines);
    background-image: url('../images/bg-texture-hero.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-end;
    margin-bottom: 80px;
}

/* Left Content */
.hero-text {
    color: #ffffff;
    position: relative;
}

.hero-decorations {
    position: relative;
    width: 100%;
    height: 80px;
    margin-bottom: 30px;
}

.asterisk-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    animation: float 3s ease-in-out infinite;
}

.asterisk-icon img {
    width: 100%;
    height: 100%;
}

.arrow-top {
    position: absolute;
    top: 30px;
    right: 160px;
    width: 150px;
    height: 100%;
    animation: float 3s ease-in-out infinite 0.5s;
}

.arrow-top img {
    width: 100%;
    height: 100%;
}

.hero-title {
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 32px;
    max-width: 580px;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button {
    background: #ff4444;
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.cta-button:hover {
    background: #ff5555;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.hero-badges {
    display: flex;
    align-items: center;
}

.hero-badges img {
    height: 50px;
    width: auto;
}

.arrow-bottom {
    position: absolute;
    bottom: -100px;
    left: 25%;
    width: 140px;
    height: auto;
    animation: float 3s ease-in-out infinite 1s;
}

.arrow-bottom img {
    width: 100%;
    height: 100%;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

/* Right Image Section */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow-x: visible;
    overflow-y: clip; 
}

.hero-bg {
    position: absolute;
    top: inherit;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 600px;
    z-index: 0;
    will-change: transform;
}

.hero-person-image {
    position: relative;
    width: 100%;
    max-width: 466px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.founder-label {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    z-index: 2;
    white-space: nowrap;
}

/* Client Logos Marquee */
.hero-clients-wrapper {
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.hero-clients-wrapper-mobile {
    display: none;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 40px;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    min-width: 100%;
    animation: scroll 20s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.marquee-item img {
    height: 75px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.marquee-item img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.1);
}

/* Pause animation on hover */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Marquee animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* End */

/* FAQ Section */
.faq-section {
    position: relative;
    overflow: hidden;
    background: var(--rp-pale-pink);
}

.faq-container {
    margin: 0 auto;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
}

.faq-title-container {
    position: relative;
    margin-bottom: 50px;
}

.faq-title {
    font-size: var(--heading-lg-size);
    font-weight: 700;
    color: var(--rp-charcoal);
    z-index: 1;
    position: relative;
    margin: 0;
}

.faq-icon {
    position: absolute;
    top: -40px;
    right: 280px;
    z-index: 0;
}

.faq-icon img {
    width: 150px;
    height: 150px;
}

/* FAQ Grid Layout */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Bootstrap Accordion Customization */
.faq-column .accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item.faq-item {
    background: var(--rp-white);
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    margin-bottom: 0;
}

.accordion-item.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.accordion-item.faq-item:first-of-type {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.accordion-item.faq-item:last-of-type {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Accordion Header */
.accordion-header {
    margin-bottom: 0;
}

/* Accordion Button */
.accordion-button {
    padding: 20px 24px;
    background: var(--rp-white);
    border: none;
    font-size: var(--paragraph-md-size);
    font-weight: 500;
    color: var(--rp-charcoal);
    line-height: 1.4;
    text-align: left;
    box-shadow: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background-color: var(--rp-white);
    color: var(--rp-charcoal);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

/* Custom Plus Icon */
.accordion-button::after {
    content: '+';
    background-image: none;
    width: auto;
    height: auto;
    font-size: 28px;
    font-weight: 300;
    color: var(--rp-bright-red);
    transform: none;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
    background-image: none;
}

/* Accordion Body */
.accordion-body {
    padding: 0 24px 20px;
    font-size: 15px;
    text-align: left;
    line-height: 1.6;
    color: #555555;
}

.accordion-collapse {
    border: none;
}

/* CTA Button */
.faq-cta {
    margin-top: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn-red {
    background-color: #E94B3C;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-red:hover {
    background-color: #d43d2e;
    transform: translateY(-2px);
    color: white;
}

/* Decorative Arrow */
.faq-arrow-icon {
    position: absolute;
    bottom: -60px;
}

.faq-arrow-icon img {
    width: 200px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 20px;
    }
    
    .hero-title {
        /* font-size: 56px; */
    }
    
    .hero-image-wrapper {
        max-width: 450px;
    }
    
    .marquee-content {
        gap: 35px;
    }
    .marquee {
        gap: 35px;
    }
    .marquee-item img {
        height: 60px;
        max-width: 130px;
    }

    /* FAQ Section Styles */

    .faq-grid {
        gap: 15px;
    }
    
    .faq-column {
        gap: 15px;
    }
    
    .faq-column .accordion {
        gap: 15px;
    }

    .faq-icon {
        right: 200px;
    }

}

@media (max-width: 992px) {
    .hero-section {
        padding: 80px 20px 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-decorations {
        width: 100%;
        max-width: 500px;
    }
    
    .hero-title {
        /* font-size: 48px; */
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
        align-items: stretch;
        width: 100%;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .arrow-bottom {
        display: none;
    }
    
    .marquee-content {
        gap: 30px;
        animation: scroll 18s linear infinite;
    }
    .marquee {
        gap: 30px;
    }
    .marquee-item img {
        height: 50px;
        max-width: 110px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 62px 0px 0;
        min-height: auto;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    
    .hero-decorations {
        height: 60px;
        margin-bottom: 20px;
    }
    
    .asterisk-icon {
        width: 200px;
        height: 200px;
        left: -40px;
    }
    
    .arrow-top {
        width: 100px;
        height: 100px;
        right: 60px;
        top: 0;
    }

    .hero-text {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: var(--heading-mobile-lg-size);
        line-height: var(--heading-mobile-lg-line);
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: var(--paragraph-md-size);
        line-height: var(--paragraph-md-line);
        margin-bottom: 18px;
    }

    .hero-bg {
        top: inherit;
        bottom: 0;
    }
    .hero-cta {
        gap: 30px;
        flex-direction: column-reverse;
        margin-bottom: 62px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 13px;
        max-width: 100% !important;
    }
    
    .hero-badges img {
        height: 56px;
    }

    .hero-image {
        width: 100%;
    }
    
    .hero-image-wrapper {
        max-width: 450px;
    }
    
.hero-person-image {
    max-width: 350px;
}
    
    .founder-label {
        font-size: 12px;
        padding: 6px 16px;
        bottom: 20px;
    }
    
    .hero-clients-wrapper {
        display: none;
    }

    .hero-clients-wrapper-mobile {
        display: flex;
    }
    .marquee-content {
        gap: 25px;
        animation: scroll 15s linear infinite;
    }
    .marquee {
        gap: 25px;
    }
    .marquee-item img {
        height: 38px;
        max-width: 90px;
    }

    /* FAQ Section Styles */

    .faq-container {
        padding: 60px 20px 60px;
    }
    
    .faq-title {
        font-size: var(--heading-mobile-lg-size);
        line-height: var(--heading-mobile-lg-line);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .accordion-button {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .accordion-button::after {
        font-size: 22px;
    }
    
    .accordion-body {
        font-size: 14px;
        padding: 0 20px 18px;
    }
    
    .faq-icon {
        top: -30px;
        right: 18%;
    }
    
    .faq-icon img {
        width: 100px;
        height: 100px;
    }
    
    .faq-arrow-icon {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .faq-arrow-icon img {
        width: 180px;
    }
}



/* Why Choose Section */
.why-choose-section {
    position: relative;
    overflow: hidden;
    background: #2b2b2b;
    color: white;
}

.why-choose-container {
    margin: 0 auto;
    padding: 80px 20px;
    max-width: 1400px;
}

.why-choose-content-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

/* Left Column - Image */
.why-choose-image-column {
    position: relative;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.circle-bg {
    position: absolute;
    width: 290px;
    height: 290px;
    background: var(--rp-pale-cyan);
    border-radius: 50%;
    top: 100px;
    transform: translateY(-50%);
    z-index: 0;
}

.team-image {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 20px;
    z-index: 1;
    display: block;
}

.asterisk-decoration {
    position: absolute;
    bottom: -30px;
    right: 40px;
    z-index: 2;
}

.asterisk-decoration img {
    width: 120px;
    height: 120px;
}

/* Right Column - Content */
.why-choose-text-column {
    position: relative;
}

.section-header {
    position: relative;
    margin-bottom: 40px;
    padding-top: 5px 0;
}

.circle-icon-top {
    position: absolute;
    top: -50px;
    right: 220px;
}

.circle-icon-top img {
    width: 142px;
    height: auto;
}

/* .section-title {
    font-size: var(--heading-lg-size);
    font-weight: 700;
    color: var(--rp-white);
    margin: 0;
    line-height: 1.2;
    text-align: center;
} */

/* Accordion Customization */
.why-choose-accordion {
    margin-bottom: 40px;
}

.why-choose-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.why-choose-accordion .accordion-item:last-child {
    border-bottom: none;
}

.why-choose-accordion .accordion-header {
    margin-bottom: 0;
}

.why-choose-accordion .accordion-button {
    background: transparent;
    color: white;
    border: none;
    padding: 20px;
    font-size: var(--heading-sm-size);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.why-choose-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: white;
    box-shadow: none;
}

.why-choose-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.why-choose-accordion .accordion-button:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Custom Chevron Icon */
.why-choose-accordion .accordion-button::after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23E94B3C' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1rem;
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.why-choose-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

/* Accordion Body */
.why-choose-accordion .accordion-body {
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.why-choose-accordion .accordion-collapse {
    border: none;
}

/* CTA Button */
.why-choose-cta {
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.btn-red {
    background-color: #E94B3C;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.btn-red:hover {
    background-color: #d43d2e;
    transform: translateY(-2px);
    color: white;
}

/* Decorative Plus Icon */
.plus-icon-bottom {
    position: absolute;
    bottom: -20px;
    left: 0;
    opacity: 0.3;
}

.plus-icon-bottom img {
    width: 60px;
    height: 60px;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .why-choose-content-wrapper {
        gap: 40px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .why-choose-accordion .accordion-button {
        font-size: 20px;
    }
    


}

@media screen and (max-width: 992px) {
    .why-choose-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-choose-image-column {
        text-align: center;
        order: 4;
    }
    
    .image-wrapper {
        display: inline-block;
        max-width: 500px;
    }
    
    .circle-bg {
        left: 10%;
        transform: translate(-50%, -50%);
    }
    
    .team-image {
        max-width: 450px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .why-choose-accordion .accordion-button {
        font-size: 18px;
        padding: 20px 0;
    }
    
}

@media screen and (max-width: 768px) {
    .why-choose-container {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: var(--heading-mobile-lg-size);
    }
    
    .circle-bg {
        width: 250px;
        height: 250px;
    }
    
    .team-image {
        max-width: 380px;
    }
    
    .asterisk-decoration {
        bottom: -20px;
        right: 40px;
    }
    
    .asterisk-decoration img {
        width: 120px;
        height: auto;
    }
    
    .why-choose-accordion .accordion-button {
        padding: 18px 0;
    }
    
    
    .circle-icon-top img {
        width: 120px;
        height: auto;
    }
}

@media screen and (max-width: 576px) {
    
    .section-title {
        font-size: 28px;
    }
    
    .circle-bg {
        width: 220px;
        height: 220px;
    }
    
    .team-image {
        max-width: 100%;
    }
    
    .asterisk-decoration {
        bottom: -15px;
        right: -15px;
    }
    
    .asterisk-decoration img {
        width: 80px;
        height: auto;
    }
    
    .why-choose-accordion .accordion-button {
        padding: 15px 0;
        gap: 12px;
    }
    
    .btn-red {
        padding: 14px 32px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .plus-icon-bottom img {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 400px) {
    .section-title {
        font-size: 24px;
    }
    
}

.why-choose-section .section-title {
	color: var(--rp-white);
    text-align: center;
}

.why-choose-section .section-header {
	justify-content: center
}