/* ========================================
   HERO SECTION
======================================== */
.hero {
    background: transparent;
    padding: 28px 0;
}

.hero-inner {
    background: linear-gradient(105deg, #7b3a1e 0%, #4a1f5c 45%, #1a1a50 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 170, 49, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(2, 170, 49, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner .hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 52px 40px 52px 48px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: #02aa31;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(2, 170, 49, 0.8);
}

.hero h1 {
    font-size: 46px;
    font-weight: 500;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: var(--accent);
}

.hero-desc {
    color: rgba(255, 255, 255, 1);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero-search {
    background: #1a2250;
    border-radius: 14px;
    display: flex;
    align-items: center;
    max-width: 580px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative; /* For autocomplete dropdown */
}

.search-autocomplete-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #1a2250;
    border: 1px solid #2d3748;
    border-radius: 12px;
    z-index: 2000;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    max-height: 300px;
    overflow-y: auto;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #cbd5e0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #242c5c;
    color: var(--primary);
}

.autocomplete-item i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 16px;
}

.hero-search-city {
    border-right: 1px solid #2d3748;
    flex-shrink: 0;
}

.hero-search-city select {
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: inherit;
    padding: 12px 12px 12px 16px;
    background: transparent;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f5a623'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    padding-right: 24px;
    border-radius: 10px 0 0 10px;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    font-family: inherit;
    padding: 12px 16px;
    background: transparent;
}

.hero-search-input::placeholder {
    color: #a0aec0;
}

.autocomplete-item span[style*="color: #64748b"] {
    color: #a0aec0 !important;
    font-style: italic;
}

.hero-search-btn {
    background: var(--accent);
    color: #1a2250;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
    flex-shrink: 0;
    border-radius: 10px;
}

.hero-search-btn:hover {
    background: var(--accent-dark);
    transform: translateX(2px);
}

.hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    margin: 32px 32px 32px 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    align-self: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.hero-card h3 i {
    color: var(--primary);
    font-size: 24px;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #2d3748;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: #fff;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #1a2250;
}

.form-group select {
    height: 48px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f5a623'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: #242c5c;
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.2);
}

.form-group select option {
    background: #1a2250;
    color: #fff;
}

.form-group input::placeholder {
    color: #a0aec0;
}

.btn-book-now {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: #1a2250;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.3);
}

.btn-book-now:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245, 166, 35, 0.4);
}

.btn-book-now:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero-inner .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-content {
        padding: 40px 28px 24px;
    }

    .hero-card {
        margin: 0 20px 32px;
        padding: 24px 20px;
        border-radius: 16px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 0;
    }

    .hero .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .hero-inner {
        border-radius: 0;
    }

    .hero-content {
        padding: 32px 20px 20px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero-search {
        flex-wrap: wrap;
    }

    .hero-search-city {
        border-right: none;
        border-bottom: 1.5px solid #e5e7eb;
        width: 100%;
    }

    .hero-search-btn {
        width: 100%;
        padding: 13px;
        text-align: center;
    }
}

/* ========================================
   TOP SERVICES
======================================== */
.top-services {
    background: #fff;
    padding: 48px 0 52px;
    border-bottom: 1px solid var(--gray-200);
}

.top-services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
}

.top-services-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.services-grid-circle {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.service-chip {
    background: #fdfdfd;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.service-chip:hover {
    cursor: pointer;
    border: 1px solid var(--primary);
}

.service-chip .chip-icon {
    width: 64px;
    height: 64px;
    background: transparent !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.service-chip .chip-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-chip span {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .services-grid-circle {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid-circle {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid-circle {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-chip {
        padding: 16px 8px;
    }
}

/* ========================================
   RECOMMENDED SERVICES
======================================== */
.recommended {
    background: var(--gray-100);
    padding: 70px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

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

.service-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-body {
    padding: 16px;
}

.service-card-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.service-card-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.service-price span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--gray-600);
}

.service-rating i {
    color: #f59e0b;
    font-size: 12px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   RECOMMENDED SERVICES
======================================== */
.recommended-services {
    background: var(--gray-100);
    padding: 60px 0 70px;
}

.recommended-header {
    text-align: center;
    margin-bottom: 40px;
}

.recommended-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.recommended-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.rec-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    background-color: #2a2a3e;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.rec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.rec-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.45) 55%,
            rgba(0, 0, 0, 0.72) 100%);
    border-radius: inherit;
}

.rec-card-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    padding: 0 16px 12px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.rec-card-btn {
    position: relative;
    z-index: 1;
    display: block;
    background: #111;
    color: #fff;
    text-align: center;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    letter-spacing: 0.2px;
}

.rec-card-btn:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 1100px) {
    .recommended-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .recommended-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .rec-card {
        height: 160px;
    }

    .rec-card-title {
        font-size: 12px;
        padding: 0 10px 8px;
    }

    .rec-card-btn {
        padding: 9px 10px;
        font-size: 12px;
    }
}

/* ========================================
   HOW IT WORKS
======================================== */
/* ========================================
   HOW IT WORKS
======================================== */
.how-it-works {
    background: #f5f5f5;
    padding: 64px 0;
}

.hiw-header {
    text-align: center;
    margin-bottom: 48px;
}

.hiw-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.hiw-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    width: 140px;
}

.hiw-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
    flex-shrink: 0;
}

.hiw-node-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
}

.hiw-node-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: -6px;
}

.hiw-line {
    flex: 1;
    height: 2px;
    background: #d0d0d0;
    margin-top: 36px;
    border-radius: 2px;
}

@media (max-width: 600px) {
    .hiw-track {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }

    .hiw-node {
        width: auto;
        flex: 1;
        gap: 8px;
    }

    .hiw-circle {
        width: 44px;
        height: 44px;
        font-size: 16px;
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
    }

    .hiw-node-title {
        font-size: 11px;
    }

    .hiw-node-desc {
        font-size: 10px;
        display: none; /* Hide description on mobile to save space if needed, or keep it very small */
    }

    .hiw-line {
        margin-top: 22px;
        height: 1px;
    }
}

/* ========================================
   PROFESSIONALS SLIDER
======================================== */
.professionals-slider {
    background: #fff;
    padding: 70px 0 60px;
}

.professionals-slider.pros-alt {
    background: #f5f5f5;
}

.pros-header {
    position: relative;
    text-align: center;
    margin-bottom: 36px;
}

.pros-header-center {
    width: 100%;
    text-align: center;
}

.pros-header-center .section-title {
    margin-bottom: 0;
}

.pros-header-center .section-subtitle {
    margin-bottom: 0;
}

.pros-header .pros-view-all {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 600px) {
    .pros-header .pros-view-all {
        position: static;
        transform: none;
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}

.pros-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--primary);
    transition: opacity 0.2s;
}

.pros-view-all:hover {
    opacity: 0.75;
}

/* swiper container */
.pros-swiper {
    padding: 8px 4px 16px;
    position: relative;
}

/* card */
.pro-card {
    background: #fff;
    border: 1.5px solid #ececec;
    border-radius: 16px;
    padding: 28px 20px 22px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.pro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(245, 166, 35, 0.14);
    border-color: #f0e4c8;
}

/* avatar */
.pro-avatar-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.pro-avatar-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0e4c8;
    display: block;
}

.pro-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--secondary);
}

/* info */
.pro-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.pro-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.pro-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-dark);
    background: rgba(245, 166, 35, 0.12);
    padding: 3px 10px;
    border-radius: 100px;
}

.pro-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px;
}

.pro-meta span {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.pro-meta i {
    font-size: 10px;
    color: var(--primary);
}

/* dual action buttons on pro cards */
.pro-card-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

.pro-btn-book {
    flex: 1;
    padding: 11px 0;
    background: var(--secondary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(26, 34, 80, 0.15);
}

.pro-btn-book:hover {
    background: var(--primary);
    color: var(--secondary);
}

.pro-btn-profile {
    flex: 1;
    padding: 11px 0;
    background: var(--primary);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pro-btn-profile:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* nav buttons */
.pros-swiper-wrap {
    position: relative;
}

.pros-swiper-wrap .pros-next,
.pros-swiper-wrap .pros-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    background: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.pros-swiper-wrap .pros-next {
    right: -22px;
}

.pros-swiper-wrap .pros-prev {
    left: -22px;
}

.pros-swiper-wrap .pros-next::after,
.pros-swiper-wrap .pros-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.pros-swiper-wrap .pros-next:hover,
.pros-swiper-wrap .pros-prev:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 1100px) {
    .pros-swiper-wrap .pros-next,
    .pros-swiper-wrap .pros-prev {
        display: none;
    }
}

@media (max-width: 600px) {
    .pros-swiper-wrap .pros-next,
    .pros-swiper-wrap .pros-prev {
        display: flex !important;
        width: 34px;
        height: 34px;
        top: 40%;
    }

    .pros-swiper-wrap .pros-next {
        right: 4px;
    }

    .pros-swiper-wrap .pros-prev {
        left: 4px;
    }

    .pros-swiper-wrap .pros-next::after,
    .pros-swiper-wrap .pros-prev::after {
        font-size: 13px;
    }
}


/* ========================================
   CUSTOMER EXPERIENCES
======================================== */
.experiences {
    background: var(--secondary);
    padding: 70px 0;
}

.experiences .section-title {
    color: #fff;
}

.experiences .section-subtitle {
    color: #8a93b8;
}

.testimonials-wrapper {
    position: relative;
    padding: 0 0px;
    /* Base padding */
}

.testimonials-swiper {
    padding: 20px 0 30px;
    position: relative;
    overflow: hidden;
    /* Back to hidden so slides are clipped */
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.video-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid #ececec;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-meta {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.video-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(245, 166, 35, 0.12);
    padding: 2px 8px;
    border-radius: 100px;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
}

.testimonials-wrapper .swiper-button-next,
.testimonials-wrapper .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    background: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.testimonials-wrapper .swiper-button-next {
    right: -22px;
}

.testimonials-wrapper .swiper-button-prev {
    left: -22px;
}

.testimonials-wrapper .swiper-button-next:after,
.testimonials-wrapper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.testimonials-wrapper .swiper-button-next:hover,
.testimonials-wrapper .swiper-button-prev:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 1100px) {

    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        display: none;
    }
}





/* ========================================
   WHY CHOOSE US
======================================== */
.why-choose {
    background: var(--gray-100);
    padding: 70px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.why-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary);
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.why-image-badge .badge-num {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.why-image-badge .badge-label {
    font-size: 12px;
    opacity: 0.9;
}

.why-content .section-title {
    text-align: left;
}

.why-content .section-subtitle {
    text-align: left;
    margin-bottom: 32px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}

.why-feature:hover {
    box-shadow: var(--shadow-md);
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.why-feature-body h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.why-feature-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}



/* ========================================
   CUSTOM SELECT BOXES
======================================== */
.cs-trigger {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #2d3748;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #a0aec0;
    background: #1a2250;
    cursor: pointer;
    position: relative;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
}

.cs-trigger::after {
    content: '▾';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
    font-size: 18px;
}

.cs-trigger.selected {
    color: #fff;
}

.cs-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #1a2250;
    border: 1.5px solid #2d3748;
    border-radius: 12px;
    z-index: 9999;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.cs-dropdown.open {
    display: block;
}

.cs-search {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-bottom: 1.5px solid #2d3748;
    font-size: 13px;
    color: #fff;
    outline: none;
    background: #242c5c;
}

.cs-search::placeholder {
    color: #a0aec0;
}

.cs-list {
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    padding: 6px 0;
}

.cs-list li {
    padding: 10px 16px;
    font-size: 13px;
    color: #cbd5e0;
    cursor: pointer;
    transition: background 0.2s;
}

.cs-list li:hover {
    background: #242c5c;
    color: var(--primary);
}

.cs-empty {
    color: #a0aec0 !important;
    cursor: default !important;
    font-style: italic;
    padding: 10px 16px;
}

/* ========================================
   RESPONSIVE SECTION SPACING
======================================== */
@media (max-width: 768px) {
    .top-services         { padding: 36px 0; }
    .recommended          { padding: 36px 0; }
    .recommended-services { padding: 36px 0; }
    .how-it-works         { padding: 36px 0; }
    .professionals-slider { padding: 36px 0; }
    .experiences          { padding: 36px 0; }
    .why-choose           { padding: 36px 0; }
    .trusted              { padding: 28px 0; }

    .top-services-header,
    .recommended-header,
    .pros-header,
    .hiw-header           { margin-bottom: 24px; }

    .section-title        { font-size: 20px; }
    .section-subtitle     { font-size: 13px; }
}

@media (max-width: 480px) {
    .top-services         { padding: 28px 0; }
    .recommended          { padding: 28px 0; }
    .recommended-services { padding: 28px 0; }
    .how-it-works         { padding: 28px 0; }
    .professionals-slider { padding: 28px 0; }
    .experiences          { padding: 28px 0; }
    .why-choose           { padding: 28px 0; }
    .trusted              { padding: 20px 0; }

    .top-services-header,
    .recommended-header,
    .pros-header,
    .hiw-header           { margin-bottom: 18px; }

    .section-title        { font-size: 18px; }
}