/* ========================================
   SERVICES PAGE STYLES
   Airport Cars - Services Page
   ======================================== */

/* ========================================
   PAGE BANNER
   ======================================== */
.page-banner {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.7)), url('../images/our_service.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(8, 7, 6, 0.5) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-banner-breadcrumb a {
    color: #deaf25;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner-breadcrumb a:hover {
    color: #f0c840;
}

.page-banner-breadcrumb i {
    font-size: 12px;
}

.page-banner h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 15px 0;
    animation: fadeInUp 0.8s ease;
}

.page-banner-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 80px 0;
    background: #0a0909;
}

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

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(222, 175, 37, 0.1);
    border: 1px solid rgba(222, 175, 37, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    color: #deaf25;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-main-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #deaf25, transparent);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.services-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Service Card */
.service-card {
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.98), rgba(12, 12, 12, 0.98));
    border: 2px solid rgba(222, 175, 37, 0.12);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(222, 175, 37, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card:hover {
    border-color: rgba(222, 175, 37, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(222, 175, 37, 0.2);
}

/* Featured Service Card */
.service-card.featured {
    border-color: rgba(222, 175, 37, 0.3);
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.08), rgba(12, 12, 12, 0.98));
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #deaf25, #f0c840);
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(222, 175, 37, 0.4);
}

/* Service Icon */
.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.2), rgba(222, 175, 37, 0.1));
    border: 2px solid rgba(222, 175, 37, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-size: 36px;
    color: #deaf25;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #deaf25, #f0c840);
    border-color: #deaf25;
    transform: rotate(360deg);
}

.service-card:hover .service-icon i {
    color: #000;
}

.service-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(222, 175, 37, 0.1);
    line-height: 1;
}

/* Service Content */
.service-content {
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #deaf25;
}

.service-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(222, 175, 37, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: #deaf25;
    font-size: 16px;
}

/* Service Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.1), rgba(222, 175, 37, 0.05));
    border: 2px solid rgba(222, 175, 37, 0.3);
    color: #deaf25;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover {
    background: linear-gradient(135deg, #deaf25, #f0c840);
    border-color: #deaf25;
    color: #000;
    transform: translateX(5px);
    text-decoration: none;
}

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

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.03), rgba(8, 7, 6, 0.95));
}

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

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(222, 175, 37, 0.1);
    border: 1px solid rgba(222, 175, 37, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    color: #deaf25;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #deaf25, transparent);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.why-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    background: rgba(22, 22, 22, 0.6);
    border: 2px solid rgba(222, 175, 37, 0.1);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.why-item:hover {
    border-color: rgba(222, 175, 37, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(222, 175, 37, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.2), rgba(222, 175, 37, 0.1));
    border: 2px solid rgba(222, 175, 37, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.why-icon i {
    font-size: 36px;
    color: #deaf25;
    transition: all 0.4s ease;
}

.why-item:hover .why-icon {
    background: linear-gradient(135deg, #deaf25, #f0c840);
    border-color: #deaf25;
    transform: scale(1.1);
}

.why-item:hover .why-icon i {
    color: #000;
}

.why-item h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.1), rgba(8, 7, 6, 0.95));
    border-top: 2px solid rgba(222, 175, 37, 0.2);
    border-bottom: 2px solid rgba(222, 175, 37, 0.2);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #deaf25, #f0c840);
    color: #000;
    border: 2px solid #deaf25;
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #f0c840, #deaf25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(222, 175, 37, 0.4);
    text-decoration: none;
    color: #000;
}

.cta-btn.secondary {
    background: rgba(222, 175, 37, 0.1);
    color: #deaf25;
    border: 2px solid rgba(222, 175, 37, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(222, 175, 37, 0.2);
    border-color: #deaf25;
    transform: translateY(-3px);
    text-decoration: none;
    color: #deaf25;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet - 1024px */
@media screen and (max-width: 1024px) {
    .page-banner {
        height: 350px;
    }

    .page-banner h1 {
        font-size: 40px;
    }

    .services-section,
    .why-choose-section,
    .cta-section {
        padding: 60px 0;
    }

    .services-main-title,
    .why-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }
}

/* Tablet Portrait - 768px */
@media screen and (max-width: 768px) {
    .page-banner {
        height: 300px;
        margin-top: 60px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .page-banner-subtitle {
        font-size: 15px;
    }

    .services-section,
    .why-choose-section,
    .cta-section {
        padding: 50px 0;
    }

    .services-main-title,
    .why-title,
    .cta-text h2 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-title {
        font-size: 22px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile - 425px */
@media screen and (max-width: 425px) {
    .page-banner {
        height: 260px;
    }

    .page-banner h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .page-banner-subtitle {
        font-size: 13px;
    }

    .page-banner-breadcrumb {
        font-size: 11px;
        gap: 8px;
    }

    .services-section,
    .why-choose-section,
    .cta-section {
        padding: 40px 0;
    }

    .services-section-header,
    .why-choose-header {
        margin-bottom: 35px;
    }

    .services-badge,
    .why-badge {
        padding: 6px 15px;
        font-size: 11px;
    }

    .services-main-title,
    .why-title,
    .cta-text h2 {
        font-size: 22px;
    }

    .services-title-underline,
    .why-title-underline {
        width: 60px;
        height: 2px;
    }

    .services-subtitle,
    .why-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-number {
        font-size: 36px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 14px;
    }

    .service-features li {
        font-size: 13px;
    }

    .service-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-item {
        padding: 25px 20px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon i {
        font-size: 28px;
    }

    .why-item h3 {
        font-size: 18px;
    }

    .why-item p {
        font-size: 13px;
    }

    .cta-text h2 {
        font-size: 20px;
    }

    .cta-text p {
        font-size: 14px;
    }

    .cta-btn {
        padding: 14px 24px;
        font-size: 13px;
    }
}

/* Mobile Small - 320px */
@media screen and (max-width: 320px) {
    .page-banner h1 {
        font-size: 24px;
    }

    .services-main-title,
    .why-title,
    .cta-text h2 {
        font-size: 20px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 24px;
    }

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

    .why-icon {
        width: 50px;
        height: 50px;
    }

    .why-icon i {
        font-size: 24px;
    }
}

