/* Mobile-first base styles */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
}
.mute-text {
 color: #A6A6A6;
}

/* Heading Animation */
.animate-heading {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.navbar {
    background-color: transparent !important;
    transition: background-color 0.3s ease;
    padding-top: 20px;
    padding-bottom: 20px;
}

.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.navbar-brand {
    font-size: 1.5rem;
    color: #333;
    flex: 0 0 auto;
}

.navbar-collapse {
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.navbar-nav li.nav-item {
    padding: 0 1rem;
}
.navbar-nav.mx-auto {
    flex-grow: 1;
    justify-content: center;
}

.navbar .btn-custom {
    flex: 0 0 auto;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: #555;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(135deg, #FFE2E2 0%, #FFFFFF 100%);
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    color: #191A15;
}

.hero-section .col-lg-6:first-child {
    padding-right: 23.5px;
}

.hero-section .col-lg-6:last-child {
    padding-left: 23.5px;
    text-align: right;
}

.hero-section .col-lg-6:last-child img {
    max-width: 480px;
    width: 100%;
}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.1rem;
}

.hero-section .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    background-color: #fff;
    padding: 100px 0 0;
}

.stat-box {
    padding: 2.8rem 1rem;
    background-color: #F9F8FE;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #191A15;
}

.stat-label {
    font-size: 1.12rem;
    color: #D9262B;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    background-color: #fff;
    padding: 100px 0 80px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    color: #191A15;
}
.services-section p {
    color: #A6A6A6;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon img {
    object-fit: contain;
    margin-bottom: 20px;
}
.service-card p {
    font-size: 18px;
    margin: 20px 0 30px;
}
.service-card .btn {
    padding: 0.75rem 2rem;
    font-weight: 400;
    border-radius: 50px;
    font-size: 18px;
    transition: transform 0.3s ease;
}
.service-card .btn:hover {
    transform: translateY(-2px);
}

/* Secondary Hero Section */
.secondary-hero-section {
    background-image: linear-gradient(180deg, #FFE2E2 0%, #FFFFFF 100%);
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 8rem 0 0;
    color: #191A15;
}

.secondary-hero-section .col-lg-6:first-child {
    padding-right: 23.5px;
}

.secondary-hero-section .col-lg-6:last-child {
    padding-left: 23.5px;
    text-align: right;
}

.secondary-hero-section .col-lg-6:last-child img {
    max-width: 480px;
    width: 100%;
}

/* Talents Pricing Section */
.talents-pricing-section {
    background-color: #fff;
    padding: 100px 0;
}

.talent-card {
    border-radius: 20px;
    padding: 40px 20px 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-inner {
    background-color: #F9FAFB;
    border-radius: 10px;
    padding: 20px 30px;
}

.talent-card.featured {
    background-color: #D9262B;
    color: white;
}

.talent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.talent-title {
    font-size: 1.9rem;
    font-weight: 500;
    color: #191A15;
}

.talent-card.featured .talent-title {
    color: white;
}

.talent-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: #191A15;
}

.talent-card.featured .talent-price {
    color: white;
}
.talent-card.featured .price-inner {
    background-color: #fff;
}

.talent-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.talent-list li {
    margin-bottom: 1rem;
    color: #191A15;
    font-size: 1.12rem;
}

.talent-list li i {
    color: #D9262B;
    margin-right: 10px;
    font-size: 23px;
}

.talent-list .more-text {
    font-style: italic;
}

.price-btn-custom {
    background: #fff;
    box-shadow: 0 4px 9px rgba(0,0,0,0.05);
    color: #D9262B;
    font-size: 18px;
    font-weight: 500;
    border-radius: 20px;
    padding: 17px 30px;
    max-width: 240px;
    width: 100%;
}

.talent-card.featured .btn-custom:hover {
    background-color: #f8f9fa;
}
.talent-card.featured .price-btn-custom {
    background: #D9262B;
    color: #fff;
}

/* FAQ Section */
#faq {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 9px 4px rgba(0, 0, 0, 0.11);
}

.accordion-button {
    font-weight: 600;
    color: #191A15;
    font-size: 1.12rem;
    border: none;
    padding: 25px;
}
.accordion-item:first-of-type .accordion-button {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    border: none;
    color: #191A15;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #e0e0e0;
}

/* CTA Section */
.cta-section {
    background-color: #fff;
    padding: 100px 0;
}

.cta-section h2 {
    color: #191A15;
    font-size: 3.5rem;
}

.cta-section .btn {
    padding: 1rem 3rem;
    font-size: 1.25rem;
    border-radius: 50px;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #161C28;
    padding: 80px 0;
}

.contact-form-section h2 {
    color: #fff;
    font-size: 2.5rem;
}

.contact-form-card {
    background-color: #222938;
    border-radius: 20px;
    padding: 3rem 2.5rem;
}

.contact-form-card h3 {
    font-size: 2rem;
    font-weight: 600;
}
.contact-form-card form {
    max-width: 75%;
    width: 100%;
    margin: 0 auto;
}

.contact-form-card .form-control {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
    background-color: #fff;
    color: #191A15;
    font-size: 1rem;
    margin-bottom: 30px;
}

.contact-form-card .form-control::placeholder {
    color: #A6A6A6;
}

.contact-form-card .form-control:focus {
    box-shadow: none;
    border: 2px solid #D9262B;
}

.contact-form-card .btn {
    border-radius: 10px;
    font-size: 1rem;
    padding: 1rem;
    font-weight: 500;
}

/* Footer */
footer {
    margin-top: auto;
    background-color: #161C28;
}
.footer-divider {
    border-top: 1px solid rgba(166, 166, 166, 0.5);
}

.social-links a {
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: block;
    margin-bottom: 1rem;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Custom Button */
.btn-custom {
    background-color: #D9262B;
    border-color: #D9262B;
    color: white;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
    background-color: #b51f23;
    border-color: #b51f23;
    color: white;
}

.btn-outline-custom {
    background-color: transparent;
    border-color: #D9262B;
    color: #D9262B;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus,
.btn-outline-custom:active {
    background-color: #D9262B;
    border-color: #D9262B;
    color: white;
}

/* Tablet styles (768px and up) */
@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section .lead {
        font-size: 1.25rem;
    }

    .hero-section {
        min-height: 600px;
    }
}

/* Desktop styles (992px and up) */
@media (min-width: 992px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }

    .hero-section {
        min-height: 700px;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1.5rem;
    }
    .mxw-90 {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        display: block;
        background: #fff;
        padding: 10px;
    }
    .hero-section .btn {
        padding: 10px 15px;
        font-size: 1rem;        
    }
    .hero-section .col-lg-6:first-child {
        padding-right: calc(var(--bs-gutter-x) * .5);
    }
    .hero-section .col-lg-6:last-child {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    .hero-section .col-lg-6:last-child img {
        max-width: 100%;
    }
    .talent-title {
        font-size: 1.3rem;
    }
    .talent-price {
        font-size: 1.7rem;
    }
    .talent-list li {
        font-size: 1rem;
    }
    .price-inner {
        padding: 20px;
    }
    .talent-card {
        padding: 40px 15px 40px;
    }
    .price-btn-custom, .service-card .btn, .cta-section .btn {
        font-size: 15px;
    }
    .cta-section h2, .contact-form-section h2, .contact-form-card h3 {
        font-size: calc(1.425rem + 2.1vw);
    }
    .cta-section, .talents-pricing-section, #faq, .secondary-hero-section, .services-section {
        padding: 50px 0;
    }
    .lead {
        font-size: 1rem;
    }
    .contact-form-card {
        padding: 3rem 1rem;
    }
    .contact-form-card form {
        max-width: 100%;;
    }
}