/* Services Page Styles */

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    background-image: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--light);
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.hero-breadcrumb a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: var(--primary);
}

.hero-breadcrumb i {
    margin: 0 10px;
    font-size: 12px;
    color: var(--primary);
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    background-color: var(--dark);
    color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--light);
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light);
}

.section-header p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    color: #aaa;
}

.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 0.08;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light);
}

.service-card p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #ff9100;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Service Detail Sections */
.service-detail-section {
    padding: 100px 0;
    background-color: #121212;
    color: var(--light);
}

.service-detail-section.alt-bg {
    background-color: #0c0c0c;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.service-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--light);
}

.service-content > p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
}

/* Service Features */
.service-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-icon i {
    font-size: 20px;
    color: var(--primary);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--light);
}

.feature-text p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

/* Service Highlights */
.service-features.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

/* Tour Destinations Tabs */
.tour-destinations {
    display: flex;
    margin-bottom: 25px;
    gap: 15px;
}

.destination-tab {
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.03);
    color: #aaa;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.destination-tab i {
    margin-right: 8px;
    font-size: 14px;
}

.destination-tab:hover {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary);
}

.destination-tab.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.destination-content {
    display: none;
    margin-bottom: 30px;
}

.destination-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.destination-content p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.tour-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-highlights li {
    color: #ddd;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tour-highlights li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 12px;
}

.highlight-item {
    text-align: left;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background-color: rgba(255, 107, 0, 0.05);
    transform: translateY(-5px);
}

.highlight-icon {
    margin-bottom: 15px;
}

.highlight-icon i {
    font-size: 28px;
    color: var(--primary);
}

.highlight-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--light);
}

.highlight-item p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

/* Service Images */
.service-image {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.03);
}

/* Tour Gallery */
.tour-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.main {
    margin-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.exp-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.stats-box {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.stat-text {
    display: block;
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
    margin-top: 3px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #0a0a0a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
}

.benefit-card:hover::after {
    height: 6px;
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 36px;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--light);
}

.benefit-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: #121212;
    color: var(--light);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--light);
}

.cta-content p {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-btn i {
    margin-right: 10px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Media Queries */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 44px;
    }
    
    .section-header h2,
    .service-content h2 {
        font-size: 36px;
    }
    
    .service-detail {
        gap: 40px;
    }
    
    .experience-badge {
        left: -20px;
        padding: 15px;
    }
    
    .stats-box {
        right: -20px;
    }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991.98px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .section-header h2,
    .service-content h2,
    .cta-content h2 {
        font-size: 32px;
    }
    
    .service-detail {
        flex-direction: column;
        gap: 50px;
    }
    
    .service-detail.reverse {
        flex-direction: column;
    }
    
    .service-features.highlights {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .tour-destinations {
        flex-wrap: wrap;
    }
    
    .experience-badge {
        bottom: 20px;
        left: 20px;
    }
    
    .stats-box {
        bottom: 20px;
        right: 20px;
    }
    
    .benefit-card:hover {
        transform: translateY(-5px);
    }
}

/* Small Devices (Landscape Phones, less than 768px) */
@media (max-width: 767.98px) {
    .hero-section {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2,
    .service-content h2,
    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .services-overview,
    .service-detail-section,
    .why-choose-us,
    .cta-section {
        padding: 70px 0;
    }
    
    .service-card {
        min-width: 250px;
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-content > p,
    .cta-content p {
        font-size: 15px;
    }
    
    .service-badge {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .service-features.highlights {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .feature-item {
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .feature-icon i {
        font-size: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-icon i {
        font-size: 32px;
    }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-section {
        height: 300px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        margin-top: 100px;
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section-header h2,
    .service-content h2,
    .cta-content h2 {
        font-size: 24px;
    }
    
    .service-card {
        min-width: 100%;
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-content h2 {
        margin-bottom: 15px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .highlight-item {
        padding: 20px;
    }
    
    .highlight-item h4 {
        font-size: 16px;
    }
    
    .destination-tab {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .tour-highlights li {
        font-size: 13px;
    }
    
    .experience-badge {
        padding: 12px;
        left: 15px;
        bottom: 15px;
    }
    
    .exp-number {
        font-size: 28px;
    }
    
    .exp-text {
        font-size: 12px;
    }
    
    .stats-box {
        padding: 15px;
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-text {
        font-size: 11px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}