/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
    padding: 120px 0 40px 0;
    background-color: var(--background-color);
    position: relative;
}

.why-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 96%), transparent);
    pointer-events: none;
}

.why-us .sidebar-content {
    position: sticky;
    top: 100px;
}

.why-us .sidebar-content .badge-wrapper {
    margin-bottom: 16px;
}

.why-us .sidebar-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 30%));
    color: var(--contrast-color);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-us .sidebar-content .section-badge i {
    font-size: 14px;
}

.why-us .sidebar-content h2 {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--heading-color);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .why-us .sidebar-content h2 {
        font-size: 20px;
    }
}

.why-us .sidebar-content .description {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 32px;
}

.why-us .sidebar-content .stat-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.why-us .sidebar-content .stat-cards .stat-card {
    background: var(--surface-color);
    padding: 20px 24px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.why-us .sidebar-content .stat-cards .stat-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.why-us .sidebar-content .stat-cards .stat-card .stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    min-width: 90px;
}

.why-us .sidebar-content .stat-cards .stat-card .stat-text {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
}

.why-us .sidebar-content .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-us .sidebar-content .action-buttons .btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.why-us .sidebar-content .action-buttons .btn-main:hover {
    background: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.why-us .sidebar-content .action-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.why-us .sidebar-content .action-buttons .btn-outline:hover {
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (min-width: 576px) {
    .why-us .sidebar-content .action-buttons {
        flex-direction: row;
    }
}

.why-us .features-grid {
    /* display: grid; */
    /* grid-template-columns: repeat(2, 1fr); */
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .why-us .features-grid {
        grid-template-columns: 1fr;
    }
}

.why-us .features-grid .feature-box {
    background: var(--surface-color);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-us .features-grid .feature-box:first-child {
    grid-column: span 2;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .why-us .features-grid .feature-box:first-child {
        grid-column: span 1;
        flex-direction: column;
    }
}

.why-us .features-grid .feature-box:first-child .feature-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.why-us .features-grid .feature-box:first-child .feature-icon i {
    font-size: 40px;
}

.why-us .features-grid .feature-box:nth-child(2) {
    grid-column: span 2;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .why-us .features-grid .feature-box:nth-child(2) {
        grid-column: span 1;
        flex-direction: column;
    }
}

.why-us .features-grid .feature-box:nth-child(2) .feature-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.why-us .features-grid .feature-box:nth-child(2) .feature-icon i {
    font-size: 40px;
}





.why-us .features-grid .feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.why-us .features-grid .feature-box.highlight {
    background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 94%), color-mix(in srgb, var(--accent-color), transparent 98%));
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.why-us .features-grid .feature-box.highlight .feature-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    padding: 6px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
}


.why-us .features-grid .feature-box .feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.why-us .features-grid .feature-box .feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 16px;
}

.why-us .features-grid .feature-box .feature-content h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.why-us .features-grid .feature-box .feature-content ul {
    list-style-type: disc;
}

.why-us .features-grid .feature-box .feature-content ul li {
    /* margin-top: 1rem; */
    font-size: 14px;
    line-height: 1.3;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    /* margin-bottom: 16px; */
}

.why-us .process-timeline {
    background: var(--surface-color);
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.why-us .process-timeline .timeline-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 24px;
}

.why-us .process-timeline .timeline-title i {
    color: var(--accent-color);
    font-size: 20px;
}

.why-us .process-timeline .timeline-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 768px) {
    .why-us .process-timeline .timeline-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.why-us .process-timeline .timeline-steps .timeline-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-us .process-timeline .timeline-steps .timeline-step .step-marker {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.why-us .process-timeline .timeline-steps .timeline-step .step-info strong {
    display: block;
    font-size: 14px;
    color: var(--heading-color);
}

.why-us .process-timeline .timeline-steps .timeline-step .step-info span {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.why-us .process-timeline .timeline-steps .timeline-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
    min-width: 20px;
    max-width: 60px;
}

@media (max-width: 768px) {
    .why-us .process-timeline .timeline-steps .timeline-connector {
        display: none;
    }
}

.process-timeline ul {
    list-style-type: disc;
}

.process-timeline ul li {
    margin-top: 1rem;
    font-size: 14px;
    line-height: .5;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 16px;
}

.why-us .capabilities-section .capabilities-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.why-us .capabilities-section .capabilities-grid .capability-card {
    background: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
}

.why-us .capabilities-section .capabilities-grid .capability-card:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    background: var(--surface-color);
}

.why-us .capabilities-section .capabilities-grid .capability-card .capability-icon {
    width: 48px;
    height: 48px;
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.why-us .capabilities-section .capabilities-grid .capability-card .capability-icon i {
    font-size: 22px;
    color: var(--accent-color);
}

.why-us .capabilities-section .capabilities-grid .capability-card h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.why-us .capabilities-section .capabilities-grid .capability-card p {
    font-size: 13px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin: 0;
}

@media (max-width: 991px) {
    .why-us .sidebar-content {
        position: static;
        margin-bottom: 48px;
    }
}







.booking-section {
  margin-bottom: 60px;
}

.booking-section .booking-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
 .booking-section .booking-card {
    padding: 25px;
  }
}

 .booking-section .booking-card h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--heading-color);
  text-align: center;
}

 .booking-section .booking-card .form-group {
  margin-bottom: 25px;
}

 .booking-section .booking-card .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--heading-color);
}

 .booking-section .booking-card .form-group .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

 .booking-section .booking-card .form-group .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
}

 .booking-section .booking-card .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

 .booking-section .booking-card .btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

 .booking-section .booking-card .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-2px);
}

.capability-card ul {
    list-style-type: disc;
}

.capability-card ul li {
    /* margin-top: 1rem; */
    font-size: 14px;
    line-height: 1.3;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    /* margin-bottom: 16px; */
}
.sidebar-content ul {
    list-style-type: disc;
}

.sidebar-content ul li {
    /* margin-top: 1rem; */
    font-size: 14px;
    line-height: 1.3;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    /* margin-bottom: 16px; */
}
.section-title{
    padding-bottom: 20px;
}