/* QuraKare Landing Page Styles */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Colors from Figma */
    --qk-primary-blue: #004C99;
    --qk-accent-orange: #FFA01A;
    --qk-text-dark: #32374A;
    --qk-text-black: #333333;
    --qk-text-extradark: #001C39;
    --qk-blue-dark: #005CA9;
    --qk-blue-medium: #116BD4;
    --qk-white: #FFFFFF;
    --qk-bg-light: rgba(213, 225, 243, 0.3);

    /* Typography */
    --qk-font-primary: 'Open Sans', sans-serif;
    --qk-font-heading: 'Asap', sans-serif;
    --qk-font-body: 'Roboto', sans-serif;
    --qk-font-title: 'Titillium Web', sans-serif;

    /* Spacing */
    --qk-spacing-xs: 8px;
    --qk-spacing-sm: 16px;
    --qk-spacing-md: 24px;
    --qk-spacing-lg: 40px;
    --qk-spacing-xl: 80px;

    /* Shadows */
    --qk-shadow-card: 0px 2px 25px rgba(0, 0, 0, 0.45);
    --qk-shadow-light: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--qk-font-primary);
    color: var(--qk-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== HERO SECTION ==================== */
.qurakaare-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 500px;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-logo {
    position: absolute;
    top: 40px;
    left: 90px;
    z-index: 3;
}

.hero-logo a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero-logo a:hover {
    opacity: 0.8;
}

.hero-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../img/landing-natale/hero-background.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 73, 149, 0.75) 0%, rgba(0, 73, 149, 0.15) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--qk-white);
    max-width: 1398px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.hero-title {
    font-family: var(--qk-font-primary);
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    margin: 0;
    padding: 0;
    letter-spacing: -0.5px;
}

.hero-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}

.hero-cta {
    margin: 0;
}

.btn-qurakaare-cta {
    display: inline-block;
    background-color: var(--qk-accent-orange);
    color: var(--qk-primary-blue);
    font-family: var(--qk-font-primary);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-qurakaare-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 160, 26, 0.4);
    color: var(--qk-primary-blue);
}

/* ==================== INTRO SECTION ==================== */
.qurakaare-intro {
    background-color: var(--qk-white);
    padding: 40px 0 30px;
}

.qurakaare-intro .container {
    max-width: 1310px;
    padding-top: 0;
    padding-bottom: 0;
}

.qurakaare-intro .row {
    gap: 30px;
}

.intro-text {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    max-width: 700px;
}

.intro-headings {
    margin-bottom: 8px;
}

.intro-main-title {
    font-family: var(--qk-font-primary);
    font-weight: 700;
    font-size: 53px;
    line-height: 50px;
    color: var(--qk-primary-blue);
    margin-bottom: 8px;
}

.intro-subtitle {
    font-family: var(--qk-font-primary);
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: var(--qk-text-dark);
    margin: 0;
}

.intro-description p {
    font-family: var(--qk-font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--qk-text-dark);
}

.intro-image {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-top: 20px;
}

.intro-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.qurakaare-how-it-works {
    background-color: var(--qk-white);
    padding: 40px 90px 70px;
}

.qurakaare-how-it-works .container {
    max-width: 1200px;
}

.qurakaare-how-it-works .row {
    row-gap: 40px;
    column-gap: 60px;
    align-items: flex-start;
}

.how-it-works-box {
    text-align: center;
    padding: 0;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.icon-wrapper {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
}

.how-it-works-icon {
    max-width: 100px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.how-it-works-icon.doctor-icon {
    transform: none;
}

.how-it-works-text {
    font-family: var(--qk-font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--qk-text-dark);
    margin: 0;
}

/* ==================== CARDS SECTION ==================== */
.qurakaare-cards {
    background-color: var(--qk-bg-light);
    padding: 70px 197px 50px;
    position: relative;
}

.qurakaare-cards .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.qurakaare-cards .section-title {
    font-family: var(--qk-font-heading);
    font-weight: 700;
    font-size: 40px;
    line-height: 68px;
    color: var(--qk-primary-blue);
    margin-bottom: 20px;
}

.qurakaare-cards .section-subtitle {
    font-family: var(--qk-font-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--qk-text-dark);
}

.cards-container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* Hide carousel controls on desktop */
.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
    display: none;
}

.qurakaare-card {
    background-color: var(--qk-white);
    border-radius: 0;
    box-shadow: var(--qk-shadow-card);
    padding: 32px;
    margin-bottom: 30px;
    min-height: 549px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.qurakaare-card.card-featured {
    backdrop-filter: blur(12.5px);
    -webkit-backdrop-filter: blur(12.5px);
}

.card-header-section {
    text-align: center;
    margin-bottom: 24px;
    height: 92px;
}

.card-title {
    font-family: var(--qk-font-title);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: var(--qk-text-extradark);
    letter-spacing: 0.45px;
    margin-bottom: 12px;
}

.card-description {
    font-family: var(--qk-font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--qk-text-black);
    height: 42px;
}

.card-body-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--qk-blue-dark);
    border-radius: 8px;
    min-height: 50px;
    height: 50px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-number {
    font-family: var(--qk-font-title);
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
    color: var(--qk-blue-dark);
    letter-spacing: 0.45px;
}

.feature-number-orange {
    color: var(--qk-accent-orange);
}

.card-feature p {
    font-family: var(--qk-font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--qk-text-black);
    margin: 0;
}

.card-feature strong {
    font-weight: 700;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.card-detail-item.expandable {
    flex-direction: column;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.checkbox-icon {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    min-width: 20px;
    min-height: 20px;
}

.checkbox-icon::after {
    content: '✓';
    color: var(--qk-white);
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.checkbox-orange {
    background-color: #EF7D00;
    border: 1px solid #EF7D00;
}

.checkbox-blue {
    background-color: var(--qk-blue-medium);
    border: 1px solid var(--qk-blue-medium);
}

.detail-header p,
.card-detail-item p {
    font-family: var(--qk-font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--qk-text-black);
    letter-spacing: 0.45px;
    margin: 0;
    flex: 1;
}

.chevron-up {
    width: 16px;
    height: 16px;
    background: url('../img/landing-natale/icon-chevron-up.svg') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.chevron-up::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
}

.expandable.expanded .chevron-up {
    transform: rotate(0deg);
}

.detail-list {
    display: none;
    list-style: disc;
    padding-left: 30px;
    margin: 0;
}

.expandable.expanded .detail-list {
    display: block;
}

.detail-list li {
    font-family: var(--qk-font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: var(--qk-text-black);
    letter-spacing: 0.45px;
    margin-bottom: 4px;
}

.card-footnote {
    font-family: var(--qk-font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: var(--qk-text-black);
    letter-spacing: 0.45px;
    margin: 0;
}

/* ==================== CTA SECTION ==================== */
.qurakaare-cta {
    background-color: var(--qk-primary-blue);
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-family: var(--qk-font-heading);
    font-weight: 700;
    font-size: 40px;
    line-height: 68px;
    color: var(--qk-white);
    margin-bottom: 30px;
}

.btn-qurakaare-secondary {
    display: inline-block;
    background-color: var(--qk-accent-orange);
    color: var(--qk-primary-blue);
    font-family: var(--qk-font-primary);
    font-weight: 700;
    font-size: 18px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-qurakaare-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 160, 26, 0.4);
    color: var(--qk-primary-blue);
}

/* ==================== BENEFITS SECTION ==================== */
.qurakaare-benefits {
    background-color: var(--qk-white);
    padding: 80px 0 150px;
}

.qurakaare-benefits .container {
    max-width: 1310px;
}

.qurakaare-benefits .row {
    align-items: stretch !important;
}

.benefits-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.benefits-image img {
    width: 100%;
    max-width: 550px;
    height: 600px;
    object-fit: cover;
    object-position: center center;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 600px;
    height: 100%;
    overflow: hidden;
}

.benefits-title {
    font-family: var(--qk-font-heading);
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: var(--qk-primary-blue);
    margin-bottom: 60px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    margin-top: 5.5px;
}

.benefit-text h3 {
    font-family: var(--qk-font-primary);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--qk-text-dark);
    margin-bottom: 8px;
}

.benefit-text p {
    font-family: var(--qk-font-primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--qk-text-dark);
    margin: 0;
}

/* ==================== DISTRIBUTORS SECTION ==================== */
.qurakaare-distributors {
    background-color: var(--qk-bg-light);
    padding: 100px 0;
}

.qurakaare-distributors .container {
    max-width: 1310px;
    padding-left: 0;
    padding-right: 0;
}

.distributors-title {
    font-family: var(--qk-font-heading);
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: var(--qk-primary-blue);
    margin-bottom: 40px;
    text-align: left;
}

.qurakaare-distributors .row {
    display: flex;
    gap: 95.7px;
    margin-top: 0;
}

.qurakaare-distributors .col-md-6,
.qurakaare-distributors .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
}

.qurakaare-distributors .col-md-6:first-child,
.qurakaare-distributors .col-lg-6:first-child {
    padding-top: 0;
    width: calc(50% - 47.85px);
}

.qurakaare-distributors .col-md-6:last-child,
.qurakaare-distributors .col-lg-6:last-child {
    padding-top: 0;
    margin-top: 0;
    width: calc(50% - 47.85px);
}

.distributor-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.distributor-item:last-child {
    margin-bottom: 0;
}

.distributor-header {
    display: flex;
    align-items: center;
    gap: 0;
}

.distributor-item:first-child .distributor-header {
    padding-bottom: 8px;
}

.distributor-item:not(:first-child) .distributor-header {
    padding-bottom: 8px;
}

.distributor-icon {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    margin-right: 14px;
}

.distributor-text h3 {
    font-family: var(--qk-font-primary);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--qk-text-dark);
    margin-bottom: 0;
}

.distributor-text p {
    font-family: var(--qk-font-primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--qk-text-dark);
    margin: 0;
    padding-left: 0;
}

/* ==================== ACTIVATION SECTION ==================== */
.qurakaare-activation {
    background-color: var(--qk-white);
    padding: 60px 0 0;
}

.qurakaare-activation .section-header {
    text-align: center;
    margin-bottom: 16px;
}

.qurakaare-activation .section-title {
    font-family: var(--qk-font-heading);
    font-weight: 700;
    font-size: 40px;
    line-height: 68px;
    color: var(--qk-primary-blue);
    margin-bottom: 20px;
}

.qurakaare-activation .section-subtitle {
    font-family: var(--qk-font-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--qk-text-dark);
}

.activation-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 140px;
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 47px;
    height: 275px;
}

.activation-option {
    text-align: center;
    flex: 1;
    max-width: 462px;
}

.activation-option-title {
    font-family: var(--qk-font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--qk-text-dark);
    margin-bottom: 15px;
    margin-top: 20px;
}

.activation-option-text {
    font-family: var(--qk-font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--qk-text-dark);
    margin-bottom: 0;
}

.activation-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.divider-text {
    background-color: #D5E1F3;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32.9px;
    line-height: 52.5px;
    color: var(--qk-primary-blue);
}

/* ==================== DEMO FORM SECTION ==================== */
.qurakaare-demo-form {
    background-color: var(--qk-primary-blue);
    padding: 60px 0;
    color: var(--qk-white);
}

.qurakaare-demo-form .container {
    max-width: 1310px;
    padding-left: 15px;
    padding-right: 15px;
}

.qurakaare-demo-form .row {
    align-items: flex-start;
}

.qurakaare-demo-form .col-lg-5 {
    display: flex;
    align-items: flex-start;
    padding-right: 40px;
}

.qurakaare-demo-form .col-lg-7 {
    padding-left: 120px;
}

.demo-form-title {
    font-family: var(--qk-font-primary);
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    color: var(--qk-white);
    margin-bottom: 0;
}

.demo-form-title span {
    color: #ffa01a;
}

.demo-form {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    color: var(--qk-white);
    font-family: var(--qk-font-primary);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--qk-white);
    color: var(--qk-white);
    padding: 6px 0;
    font-family: var(--qk-font-primary);
    font-size: 16px;
    outline: none;
}

.form-group input::placeholder {
    color: transparent;
}

.form-group input:focus {
    border-bottom-color: var(--qk-accent-orange);
}

.form-check {
    margin: 25px 0 20px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    background-color: var(--qk-white);
    border: none;
}

.form-check-label {
    font-family: var(--qk-font-heading);
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: var(--qk-white);
    margin-left: 10px;
}

.form-check-label a {
    color: var(--qk-white);
    text-decoration: underline;
    font-weight: 700;
}

.btn-qurakaare-submit {
    background-color: var(--qk-accent-orange);
    color: var(--qk-primary-blue);
    font-family: var(--qk-font-primary);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-qurakaare-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 160, 26, 0.4);
}

/* ==================== LINKEDIN SECTION ==================== */
.qurakaare-linkedin {
    background-color: var(--qk-white);
    padding: 80px 0;
    text-align: center;
}

.qurakaare-linkedin .container {
    max-width: 1310px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.linkedin-text {
    font-family: var(--qk-font-heading);
    font-weight: 700;
    font-size: 40px;
    line-height: 68px;
    color: #004995;
    margin: 0;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #004995;
    color: var(--qk-white);
    font-family: var(--qk-font-primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    justify-content: center;
}

.btn-linkedin:hover {
    background-color: #003670;
    color: var(--qk-white);
    transform: translateY(-2px);
}

.btn-linkedin img {
    width: 20px;
    height: 20px;
}

/* ==================== DISCLAIMER SECTION ==================== */
.qurakaare-disclaimer {
    background-color: #004C99;
    padding: 35px 80px;
}

.qurakaare-disclaimer .container {
    max-width: 1400px;
    padding: 0;
}

.disclaimer-text {
    font-family: var(--qk-font-primary);
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: var(--qk-white);
    text-align: left;
    margin: 0;
}

/* ==================== FOOTER ==================== */
.qurakaare-footer {
    background-color: #042A64;
    color: var(--qk-white);
    padding: 60px 80px 40px;
}

.qurakaare-footer .container {
    max-width: 1400px;
    padding: 0;
    position: relative;
}

.qurakaare-footer .row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

.footer-company {
    flex: 1;
    max-width: 500px;
}

.footer-info {
    margin-top: 0;
}

.footer-info p {
    font-family: var(--qk-font-primary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.footer-links {
    flex: 1;
    max-width: 600px;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 160px;
}

.footer-links .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 80px;
}

.footer-links .col-6 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.footer-links a {
    color: var(--qk-white);
    font-family: var(--qk-font-primary);
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-linkedin-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--qk-white);
    font-family: var(--qk-font-primary);
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-linkedin-link:hover {
    transform: scale(1.05);
}

.footer-linkedin-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.footer-linkedin-link:hover .footer-linkedin-icon {
    transform: scale(1.1);
}

.footer-copyright {
    font-family: var(--qk-font-primary);
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

/* ==================== RESPONSIVE ==================== */

/* Desktop only - Move entire intro section up */
@media (min-width: 992px) {
    .qurakaare-intro {
        margin-top: -100px;
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .qurakaare-intro .row {
        align-items: center;
    }

    .intro-text {
        margin-top: -60px;
    }
}

@media (max-width: 1399px) {

    .qurakaare-distributors {
        padding: 100px 100px;
    }

    .qurakaare-distributors .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .qurakaare-cards {
        padding: 70px 100px 50px;
    }

    .qurakaare-how-it-works {
        padding: 40px 50px 70px;
    }
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 54px;
        line-height: 58px;
    }

    .intro-main-title {
        font-size: 44px;
        line-height: 48px;
    }

    .demo-form-title {
        font-size: 56px;
        line-height: 64px;
    }

    .qurakaare-cards {
        padding: 70px 50px 50px;
    }

    .cards-container {
        padding: 0 20px;
    }

    .qurakaare-how-it-works {
        padding: 40px 30px 70px;
    }

    .how-it-works-box {
        width: 100%;
        max-width: 540px;
    }

    .qurakaare-demo-form .col-lg-5,
    .qurakaare-demo-form .col-lg-7 {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-company,
    .footer-links {
        width: 100%;
    }

    .footer-links {
        position: static;
        margin-top: 40px;
    }

    .footer-links .row {
        flex-wrap: nowrap;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .qurakaare-intro {
        margin-top: 0;
        padding-top: 60px;
    }

    .qurakaare-hero {
        aspect-ratio: 16 / 9;
        min-height: 400px;
        max-height: 80vh;
        padding: 60px 20px 40px;
    }

    .hero-logo {
        top: 20px;
        left: 20px;
    }

    .hero-logo img {
        height: 40px;
    }

    .hero-content {
        gap: 60px;
    }

    .hero-title {
        font-size: 46px;
        line-height: 50px;
    }

    .qurakaare-intro .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .qurakaare-intro .row {
        flex-direction: column;
        gap: 40px;
    }

    .intro-text {
        padding-top: 40px;
        padding-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        max-width: 100%;
    }

    .intro-main-title {
        font-size: 36px;
        line-height: 40px;
    }

    .intro-subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .intro-image {
        padding-top: 0;
        justify-content: center;
    }

    .intro-image img {
        max-width: 400px;
    }

    .qurakaare-how-it-works {
        padding: 40px 20px 70px;
    }

    .qurakaare-how-it-works .row {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .how-it-works-box {
        width: 100%;
        max-width: 100%;
    }

    .qurakaare-cards {
        padding: 70px 20px 50px;
    }

    .cards-container {
        padding: 0;
    }

    .benefits-image {
        margin-bottom: 40px;
        text-align: center;
        min-height: auto;
    }

    .benefits-image img {
        height: auto !important;
    }

    .benefits-content {
        max-height: none;
    }

    .benefits-title {
        margin-bottom: 40px;
    }

    .qurakaare-distributors {
        padding: 60px 20px;
    }

    .qurakaare-distributors .container {
        padding-left: 0;
        padding-right: 0;
    }

    .qurakaare-distributors .row {
        flex-direction: column;
        gap: 30px;
    }

    .qurakaare-distributors .col-md-6:first-child,
    .qurakaare-distributors .col-lg-6:first-child,
    .qurakaare-distributors .col-md-6:last-child,
    .qurakaare-distributors .col-lg-6:last-child {
        width: 100%;
        padding-top: 0;
    }

    .distributors-title {
        margin-bottom: 40px;
    }

    .activation-options {
        flex-direction: column;
        height: auto;
        gap: 40px;
        padding: 0 20px;
    }

    .activation-option-title {
        margin-top: 5px;
    }

    .demo-form-title {
        font-size: 44px;
        line-height: 52px;
        margin-bottom: 40px;
    }

    .qurakaare-demo-form .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-group {
        margin-bottom: 40px;
    }

    .linkedin-text {
        font-size: 32px;
        line-height: 48px;
        padding: 0 20px;
        width: calc(100% - 40px);
    }

    .qurakaare-linkedin .container,
    .qurakaare-footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-info {
        padding-top: 0;
    }

    .footer-links {
        position: static;
        padding-top: 20px;
        gap: 20px 16px;
        max-width: 100%;
    }

    .footer-links .row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-links .col-6 {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .qurakaare-card.card-featured {
        transform: translateY(0);
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .qurakaare-intro {
        padding-top: 40px;
    }

    .qurakaare-hero {
        aspect-ratio: 16 / 9;
        min-height: 350px;
        max-height: 70vh;
        padding: 40px 15px 30px;
    }

    .hero-content {
        padding: 0 10px;
        gap: 40px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 32px;
    }

    .hero-cta {
        margin-top: 0;
    }

    .btn-qurakaare-cta {
        font-size: 16px;
        padding: 10px 24px;
    }

    .qurakaare-intro .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .intro-text {
        padding-top: 30px;
        margin-top: 0;
    }

    .intro-main-title {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 12px;
    }

    .intro-subtitle {
        font-size: 18px;
        line-height: 24px;
    }

    .intro-description p {
        font-size: 16px;
        line-height: 24px;
    }

    .intro-image img {
        max-width: 300px;
    }

    .qurakaare-how-it-works {
        padding: 30px 15px 50px;
    }

    .how-it-works-icon {
        width: 80px;
        height: 80px;
    }

    .how-it-works-text {
        font-size: 16px;
        line-height: 24px;
    }

    .qurakaare-cards {
        padding: 50px 0 40px;
    }

    .qurakaare-cards .section-header {
        padding: 0 15px;
    }

    .cards-container {
        overflow: hidden;
        padding: 0 15px 20px;
        margin: 0;
        position: relative;
    }

    .cards-container .row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start !important;
        transition: transform 0.3s ease-in-out;
        gap: 20px;
        padding: 0;
    }

    .cards-container .col-lg-4 {
        flex: 0 0 calc(100vw - 30px);
        width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        min-width: calc(100vw - 30px);
    }

    .section-title,
    .cta-title,
    .benefits-title,
    .distributors-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .qurakaare-card {
        min-height: auto;
        padding: 24px;
        gap: 24px;
        margin-bottom: 0;
    }

    .card-header-section {
        height: auto;
        margin-bottom: 16px;
    }

    /* Carousel Controls */
    .carousel-control-prev,
    .carousel-control-next {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background-color: rgba(0, 76, 153, 0.8);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        transition: background-color 0.3s ease;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background-color: var(--qk-primary-blue);
    }

    .carousel-control-prev:disabled,
    .carousel-control-next:disabled {
        background-color: rgba(0, 76, 153, 0.3);
        cursor: not-allowed;
        opacity: 0.5;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% 100%;
    }

    .carousel-control-prev-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    }

    .carousel-control-next-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    /* Carousel Indicators */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 30px;
        padding: 0;
        list-style: none;
    }

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid var(--qk-primary-blue);
        background-color: transparent;
        cursor: pointer;
        padding: 0;
        transition: all 0.3s ease;
    }

    .carousel-indicators button.active {
        background-color: var(--qk-primary-blue);
        transform: scale(1.2);
    }

    .carousel-indicators button:hover {
        background-color: var(--qk-blue-medium);
        border-color: var(--qk-blue-medium);
    }

    .card-title {
        font-size: 28px;
    }

    .card-description {
        height: auto;
        font-size: 13px;
    }

    .card-feature {
        min-height: auto;
        height: auto;
        padding: 8px 10px;
    }

    .feature-number {
        font-size: 22px;
    }

    .card-feature p {
        font-size: 13px;
    }

    .qurakaare-cta {
        padding: 30px 15px 60px;
    }

    .qurakaare-benefits {
        padding: 60px 15px;
    }

    .benefits-image img {
        max-width: 100%;
    }

    .benefit-item {
        gap: 20px;
    }

    .benefit-text h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .benefit-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .qurakaare-distributors {
        padding: 60px 15px;
    }

    .distributor-text h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .distributor-text p {
        font-size: 16px;
        line-height: 24px;
        padding-left: 35px;
    }

    .qurakaare-activation {
        padding: 10px 0 0;
    }

    .activation-option-title {
        font-size: 20px;
        line-height: 28px;
        margin-top: 5px;
    }

    .activation-option-text {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .qurakaare-demo-form {
        padding: 60px 0;
    }

    .qurakaare-demo-form .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .demo-form-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .form-check {
        margin: 60px 0 20px;
    }

    .qurakaare-linkedin {
        height: auto;
        padding: 60px 15px;
    }

    .linkedin-text {
        position: static;
        transform: none;
        font-size: 28px;
        line-height: 40px;
        padding: 0;
        width: 100%;
        margin-bottom: 30px;
    }

    .btn-linkedin {
        position: static;
        transform: none;
        font-size: 20px;
        width: 100%;
        max-width: 250px;
    }

    .qurakaare-disclaimer {
        padding: 25px 15px;
    }

    .disclaimer-text {
        font-size: 11px;
        line-height: 18px;
    }

    .qurakaare-footer {
        padding: 40px 0 20px;
    }

    .footer-links {
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
        line-height: 32px;
    }

    .intro-main-title {
        font-size: 28px;
        line-height: 32px;
    }

    .intro-image img {
        max-width: 250px;
    }

    .how-it-works-icon {
        width: 70px;
        height: 70px;
    }

    .section-title,
    .cta-title,
    .benefits-title,
    .distributors-title {
        font-size: 28px;
        line-height: 36px;
    }

    .cards-container .col-lg-4 {
        flex: 0 0 calc(100vw - 30px);
        width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
    }

    .card-title {
        font-size: 24px;
    }

    .demo-form-title {
        font-size: 32px;
        line-height: 40px;
    }

    .linkedin-text {
        font-size: 24px;
        line-height: 32px;
    }

    .btn-linkedin {
        font-size: 18px;
        padding: 18px 32px;
        width: 100%;
        max-width: 220px;
    }
}
