/* ============================================
   PAGE HERO (Inner Pages)
============================================ */
.page-hero {
    position: relative;
    padding: 140px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 43, 60, 0.85) 0%, rgba(70, 130, 180, 0.6) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-badge i {
    margin-right: 8px;
    color: var(--primary-light);
}

.page-hero h1 {
    font-size: 60px;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.page-hero h1 span {
    color: var(--primary-light);
    font-style: italic;
}

.page-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    justify-content: center;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-item a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "›";
}

/* ============================================
   SERVICES OVERVIEW
============================================ */
.services-overview {
    padding: 100px 0;
    background: var(--white);
}

.lead-text {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 2px dashed var(--border);
}

.ov-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ov-stat i {
    font-size: 32px;
    color: var(--primary);
    background: var(--light-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ov-stat h4 {
    font-size: 28px;
    color: var(--dark);
    margin: 0;
    line-height: 1;
    font-weight: 800;
}

.ov-stat span {
    font-size: 13px;
    color: var(--text);
}

.overview-image-wrapper {
    position: relative;
    padding: 30px 0 0 30px;
}

.overview-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.overview-img-small {
    position: absolute;
    bottom: -50px;
    left: -30px;
    width: 50%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    z-index: 3;
}

.experience-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.exp-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 11px;
    text-align: center;
    line-height: 1.3;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   SERVICE DETAIL SECTIONS
============================================ */
.service-detail-section {
    padding: 100px 0;
    position: relative;
}

.service-detail-section:nth-child(even) {
    background: var(--light-bg);
}

.service-detail-section .section-badge {
    margin-bottom: 15px;
}

.service-detail-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-features-list {
    margin: 30px 0;
}

.sf-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.sf-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.sf-item i {
    font-size: 24px;
    color: var(--primary);
    background: rgba(70, 130, 180, 0.1);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sf-item h5 {
    font-size: 17px;
    margin-bottom: 5px;
    color: var(--dark);
}

.sf-item p {
    font-size: 14px;
    color: var(--text);
    margin: 0;
    line-height: 1.5;
}

.service-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ============================================
   SERVICE IMAGE GRID
============================================ */
.service-image-grid {
    position: relative;
    padding: 20px;
    min-height: 500px;
}

.grid-img-1 {
    width: 75%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: 2;
}

.grid-img-2 {
    width: 45%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    position: absolute;
    bottom: 60px;
    right: 20px;
    z-index: 3;
    border: 6px solid var(--white);
}

.grid-img-3 {
    width: 40%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    border: 6px solid var(--white);
}

.grid-stat-card {
    position: absolute;
    bottom: 0;
    left: 30px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4;
    border-left: 5px solid var(--primary);
}

.grid-stat-card i {
    font-size: 32px;
    color: var(--primary);
}

.grid-stat-card h3 {
    font-size: 28px;
    margin: 0;
    color: var(--dark);
    line-height: 1;
}

.grid-stat-card p {
    font-size: 12px;
    color: var(--text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   POPULAR ROUTES GRID
============================================ */
.popular-routes {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px dashed var(--border);
}

.popular-routes h3 {
    font-size: 28px;
    color: var(--dark);
    font-weight: 700;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.route-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.route-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.route-flag {
    font-size: 40px;
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.route-info {
    flex: 1;
}

.route-from-to {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.route-from-to i {
    color: var(--primary);
    font-size: 12px;
    margin: 0 5px;
}

.route-city {
    font-size: 13px;
    color: var(--text);
}

.route-price {
    text-align: right;
}

.route-price small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
}

.route-price strong {
    display: block;
    font-size: 16px;
    color: var(--primary);
    font-weight: 800;
}

/* ============================================
   DESTINATIONS GRID
============================================ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.destination-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover img {
    transform: scale(1.15);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    transition: var(--transition);
}

.destination-overlay h5 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 5px;
}

.destination-overlay span {
    font-size: 13px;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.destination-overlay span i {
    margin-right: 5px;
}

.destination-overlay a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.destination-card:hover .destination-overlay a {
    opacity: 1;
    transform: translateY(0);
}

.destination-overlay a i {
    margin-left: 5px;
    transition: var(--transition);
}

.destination-overlay a:hover i {
    transform: translateX(5px);
}

/* ============================================
   UMRAH PACKAGE CARDS
============================================ */
.umrah-section .section-badge.umrah-badge {
    background: rgba(46, 204, 113, 0.1);
    color: var(--success);
}

.umrah-packages {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px dashed var(--border);
}

.umrah-package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
}

.umrah-package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.umrah-package-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.umrah-package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.up-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.up-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.up-header h4 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 8px;
}

.up-tag {
    display: inline-block;
    background: rgba(70, 130, 180, 0.1);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-card .up-tag {
    background: rgba(255, 193, 7, 0.1);
    color: #f39c12;
}

.up-price {
    text-align: center;
    margin-bottom: 25px;
}

.up-price small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.up-price h2 {
    font-size: 38px;
    color: var(--primary);
    font-weight: 800;
    margin: 5px 0;
    line-height: 1;
}

.up-price span {
    font-size: 13px;
    color: var(--text);
}

.up-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    flex: 1;
}

.up-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.up-features li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.up-features li i.fa-check {
    background: rgba(46, 204, 113, 0.1);
    color: var(--success);
}

.up-features li.disabled {
    color: var(--muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.up-features li.disabled i {
    background: rgba(132, 146, 166, 0.1);
    color: var(--muted);
}

.custom-package-text {
    color: var(--text);
    font-size: 15px;
    background: var(--light-bg);
    padding: 15px 25px;
    border-radius: var(--radius);
    display: inline-block;
    border: 2px dashed var(--primary);
}

.custom-package-text i {
    color: var(--primary);
    margin-right: 8px;
}

.custom-package-text a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
}

/* ============================================
   ADDITIONAL SERVICES
============================================ */
.additional-services {
    padding: 100px 0;
    background: var(--light-bg);
}

.extra-service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.extra-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.es-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.1), rgba(70, 130, 180, 0.05));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.extra-service-card:hover .es-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(360deg);
}

.extra-service-card h5 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark);
}

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

.extra-service-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.extra-service-card a i {
    transition: var(--transition);
}

.extra-service-card a:hover {
    color: var(--primary-dark);
}

.extra-service-card a:hover i {
    transform: translateX(5px);
}

/* ============================================
   HOW IT WORKS
============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--border);
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
    border: 4px solid var(--white);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 20px auto;
    transition: var(--transition);
}

.step-item:hover .step-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(360deg);
}

.step-item h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-item p {
    font-size: 13px;
    color: var(--text);
    margin: 0;
}

.step-connector {
    flex: 0 0 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), transparent);
    position: relative;
}

.step-connector::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 16px;
}

/* ============================================
   CTA BANNER
============================================ */
.cta-banner {
    padding: 80px 0;
    background: var(--light-bg);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 50px;
    border-radius: var(--radius-lg);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.cta-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}



.cta-card h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
    position: relative;
}

.cta-card h2 i {
    color: var(--primary-light);
    margin-right: 12px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 16px;
    position: relative;
}

.cta-card .btn {
    position: relative;
    z-index: 2;
    margin-top: 10px;
}

.cta-card .btn-light {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 12px 28px;
}

.cta-card .btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-card .btn-dark {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    padding: 12px 28px;
}

.cta-card .btn-dark:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}

/* ============================================
   SERVICES PAGE RESPONSIVE
============================================ */
@media (max-width: 1199px) {
    .page-hero h1 { font-size: 48px; }
    .service-detail-section h2 { font-size: 36px; }
    .service-image-grid { min-height: 450px; }
    .grid-img-1 { height: 280px; }
    .umrah-package-card.featured { transform: none; }
    .umrah-package-card.featured:hover { transform: translateY(-10px); }
}

@media (max-width: 991px) {
    .page-hero { padding: 100px 0 80px; }
    .page-hero h1 { font-size: 40px; }
    .services-overview, .service-detail-section, .additional-services, .how-it-works { padding: 70px 0; }
    .overview-stats { grid-template-columns: 1fr; }
    .experience-badge { width: 100px; height: 100px; }
    .exp-number { font-size: 28px; }
    .exp-text { font-size: 10px; }
    .service-image-grid { margin-bottom: 40px; min-height: 400px; }
    .step-connector { display: none; }
    .steps-wrapper { flex-direction: column; }
    .cta-card { text-align: center; padding: 35px 25px; }
    .cta-card .col-lg-4 { margin-top: 20px; }
}

@media (max-width: 767px) {
    .page-hero { padding: 80px 0 60px; background-attachment: scroll; }
    .page-hero h1 { font-size: 32px; }
    .page-hero p { font-size: 15px; }
    .section-header h2, .service-detail-section h2 { font-size: 28px; }
    .lead-text { font-size: 14px; }
    .overview-image-wrapper { padding: 0; }
    .overview-img-small { width: 60%; left: 0; bottom: -30px; }
    .service-image-grid { min-height: 350px; padding: 10px; }
    .grid-img-1 { width: 85%; height: 220px; top: 20px; left: 10px; }
    .grid-img-2 { width: 50%; height: 140px; bottom: 40px; }
    .grid-img-3 { width: 45%; height: 120px; }
    .grid-stat-card { padding: 12px 15px; }
    .grid-stat-card h3 { font-size: 22px; }
    .grid-stat-card i { font-size: 24px; }
    .sf-item { padding: 15px; }
    .sf-item i { width: 45px; height: 45px; font-size: 20px; }
    .sf-item h5 { font-size: 15px; }
    .popular-routes { margin-top: 50px; padding-top: 40px; }
    .service-cta { flex-direction: column; }
    .service-cta .btn { width: 100%; justify-content: center; }
    .umrah-packages { margin-top: 50px; padding-top: 40px; }
    .umrah-package-card { padding: 25px 20px; }
    .up-price h2 { font-size: 32px; }
    .cta-card h2 { font-size: 24px; }
    .cta-card .btn { width: 100%; margin: 5px 0; }
}

@media (max-width: 575px) {
    .page-hero h1 { font-size: 26px; }
    .route-card { padding: 15px; }
    .route-flag { width: 50px; height: 50px; font-size: 30px; }
    .destinations-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .destination-card { height: 200px; }
    .destination-overlay { padding: 15px; }
    .destination-overlay h5 { font-size: 16px; }
    .custom-package-text { font-size: 13px; padding: 12px 18px; }
}
