categoryFilter /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0px !important;
    padding: !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
   
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 180px;
    min-width: 90px;
    max-width: 220px;
    height: 70px;
    padding: 0.2rem 0;
    background: none;
}

.site-logo {
    display: block;
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
    transition: filter 0.2s;
}

    .site-logo:hover {
        filter: drop-shadow(0 4px 16px rgba(56,189,248,0.18));
    }

@media (max-width: 900px) {
    .nav-logo {
        width: 120px;
        min-width: 60px;
        height: 44px;
    }

    .site-logo {
        max-height: 50px;
    }
}

@media (max-width: 600px) {
    .nav-logo {
        width: 70px;
        min-width: 36px;
        height: 22px;
    }

    .site-logo {
        max-height: 70px;
    }
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

    .nav-link:hover,
    .nav-link.active {
        color: #38bdf8;
        ;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #38bdf8;
        transition: width 0.3s ease;
    }

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header */
.page-header {
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Company Story */
.company-story {
    padding: 5rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6c757d;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #38bdf8, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mv-icon i {
    font-size: 3rem;
    color: white;
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.mv-card p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
}

/* Values */
.values {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.value-card i {
    font-size: 3rem;
    color: #38bdf8;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Team */
.team {
    padding: 5rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.position {
    display: block;
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-info p {
    color: #6c757d;
    line-height: 1.6;
}

/* Certificates */
.certificates {
    padding: 5rem 0;
    background: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.cert-item i {
    font-size: 3rem;
    color: #38bdf8;
    margin-bottom: 1.5rem;
}

.cert-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cert-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    padding: 5rem 0;
    background: #f8f9fa;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #38bdf8, #f39c12);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
    padding-left: 2rem;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #38bdf8;
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #38bdf8;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
}
.hero-main-vip {
    width: 100vw;
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-main-vip-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #101522 60%, #232a3b 100%);
    z-index: 1;
}
.hero-main-vip-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 2rem 2rem 2rem;
}
.hero-main-vip-content {
    max-width: 540px;
    color: #fff;
    animation: fadeInUp 1s cubic-bezier(.4,0,.2,1);
}
.hero-main-vip-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1.3rem;
    letter-spacing: 1.5px;
    text-shadow: 0 4px 32px rgba(0,0,0,0.18);
}
.hero-main-vip-desc {
    font-size: 1.15rem;
    font-weight: 250;
    margin-bottom: 2.2rem;
    line-height: 1.7;
    color: #e0e3ef;
    text-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.hero-main-vip-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 28px;
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(231,76,60,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
    letter-spacing: 0.5px;
}
.hero-main-vip-btn:hover {
    background: #fff;
    color: #38bdf8;
    box-shadow: 0 8px 32px rgba(231,76,60,0.18);
    transform: translateY(-2px) scale(1.04);
}
.hero-main-vip-img {
 
    margin-bottom: 50px;
    max-width: 700px;
    width: 700PX;
    min-width: 220px;
    height: auto;
    filter: blur(0.5px) brightness(0.95) drop-shadow(0 8px 32px rgba(0,0,0,0.18));
    opacity: 0.92;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    align-self: flex-end;
    animation: fadeInRight 1.2s cubic-bezier(.4,0,.2,1);
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 900px) {
    .social-links{
        justify-content: center
    }
    .hero-main-vip-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        padding: 2rem 1rem 1rem 1rem;
    }
    .hero-main-vip-img {
        margin: auto;
        width: 70vw;
        max-width: 320px;
        margin-top: 1.5rem;
    }
    .hero-main-vip-content {
        text-align: center;
    }
}
@media (max-width: 600px) {
    .hero-main-vip-title {
        margin-top: 70px;
        font-size: 2rem;
    }
    .hero-main-vip-inner {
        padding: 1.2rem 0.2rem 0.5rem 0.2rem;
    }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: none; }
}


/* Service Selection Styles */
.service-selection {
    margin-bottom: 2rem;
}

.service-options {
    display: flex;
    flex-direction: row;
    gap: 0.7rem;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.service-option {
    flex: 1 1 0;
    min-width: 0;
    background: #f8f9fa;
    border: 1.5px solid #e9ecef;
    border-radius: 10px;
    padding: 0.7rem 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    min-height: 110px;
    max-width: 140px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.service-option:hover,
.service-option.active {
    border-color: #38bdf8;
    background: #fff6f4;
    box-shadow: 0 4px 16px rgba(231,76,60,0.07);
}

.service-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon i {
    font-size: 1.1rem;
    color: #fff;
}

.service-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.service-details p {
    font-size: 0.78rem;
    opacity: 0.7;
    margin-bottom: 0.1rem;
}

.service-details ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-details li {
    font-size: 0.7rem;
    margin-bottom: 0.1rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.selection-indicator {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 18px;
    height: 18px;
    border: 1.5px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 0.8rem;
}

.service-option.active .selection-indicator {
    border-color: #38bdf8;
    background: #38bdf8;
}

.service-option.active .selection-indicator i {
    color: #fff;
}

@media (max-width: 768px) {
    .service-options {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    .service-option {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        align-items: flex-start;
    }
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.step-indicator {
    display: flex;
    gap: 0.5rem;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: #38bdf8;
    transform: scale(1.2);
}

.step-buttons {
    display: flex;
    gap: 1rem;
}

.step-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #38bdf8;
    background: transparent;
    color: #38bdf8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.step-btn:hover {
    background: #38bdf8;
    color: white;
}

.step-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.step-btn:disabled:hover {
    background: transparent;
    color: #38bdf8;
}

/* Responsive Design for Hero Section */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-reservation-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-option {
        padding: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-reservation-form {
        padding: 1rem;
    }
    
    .form-header h3 {
        font-size: 1.4rem;
    }
    
    .hero-form .form-group input,
    .hero-form .form-group select,
    .hero-form .form-group textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .hero-submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-option {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 0.5rem;
    }
}

/* 3D Car Animation */
.hero-car {
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    border-radius: 20px;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    border-radius: 2px;
}

/* Services Detail */
.services-detail {
    padding: 5rem 0;
    background: white;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse .service-content {
    direction: ltr;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #38bdf8, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-large i {
    font-size: 3rem;
    color: white;
}

.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6c757d;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.service-features i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.service-pricing {
    margin-bottom: 2rem;
}

.service-pricing h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 500;
    color: #2c3e50;
}

.price-value {
    font-weight: 700;
    color: #38bdf8;
    font-size: 1.2rem;
}

.service-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Additional Services */
.additional-services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.additional-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.additional-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.additional-card i {
    font-size: 3rem;
    color: #38bdf8;
    margin-bottom: 1.5rem;
}

.additional-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #38bdf8, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: black;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid #38bdf8;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #38bdf8;
    color: white;
    transform: translateY(-2px);
}

/* About Overview */
.about-overview {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
  text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
  text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6c757d;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-bottom: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-features i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gallery Preview */
.gallery-preview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.gallery-content {
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container video {
    width: 100%;
    height: auto;
}

.gallery-cta {
    text-align: center;
}

/* FAQ Preview */
.faq-preview {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #38bdf8;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #6c757d;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
}

/* Mini Reservation */
.mini-reservation {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.mini-reservation .section-title {
    color: white;
}

.reservation-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}
 


        .form-group input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
}

.form-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Contact Box */
.contact-box {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 2.5rem;
    color: #38bdf8;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6c757d;
}

.contact-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: #101522;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #38bdf8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #38bdf8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #38bdf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        text-align: left;
        padding-left: 2rem;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -40px;
        right: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .car-image {
        width: 300px;
        height: 200px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Hamburger menü açıkken body scroll kapalı */
.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-content h2 {
        font-size: 2rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .mv-card h3 {
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #38bdf8;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}

/* Gallery Styles */
.gallery-filter {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #38bdf8;
    background: transparent;
    color: #38bdf8;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #38bdf8;
    color: white;
}

.photo-gallery {
    padding: 3rem 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(30px);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.overlay-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.overlay-content i {
    font-size: 2rem;
    color: #38bdf8;
}

/* Video Gallery */
.video-gallery {
    padding: 5rem 0;
    background: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.video-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 2rem;
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.video-info p {
    color: #6c757d;
    line-height: 1.6;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    opacity: 0.8;
}

.close-lightbox {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.video-modal-content video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.close-video {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Gallery Search */
.gallery-search {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
}

.gallery-search:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Gallery Stats */
.gallery-stats {
    margin-top: 1rem;
    text-align: center;
    color: #6c757d;
    font-weight: 500;
}

/* Download Button */
.download-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #38bdf8;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .lightbox-nav {
        padding: 0 1rem;
    }

    .nav-btn {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 200px;
    }

    .video-container {
        height: 200px;
    }
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    background: #25d366 !important;
    color: white !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.whatsapp-btn:hover {
    background: #128c7e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-btn i {
    font-size: 1.3rem !important;
}

/* Vehicle Showcase Styles */
.vehicle-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vehicle-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vehicle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.vehicle-card h3 {
    margin: 20px 0 10px;
    color: #333;
    font-size: 1.3rem;
}

.vehicle-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.vehicle-card .price {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Form Improvements */
.detailed-form .form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.detailed-form .form-group input,
.detailed-form .form-group select,
.detailed-form .form-group textarea {
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.detailed-form .form-group input:focus,
.detailed-form .form-group select:focus,
.detailed-form .form-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.detailed-form .form-group input[type="date"],
.detailed-form .form-group input[type="time"] {
    cursor: pointer;
}

.detailed-form .form-group input[type="number"] {
    -moz-appearance: textfield;
}

.detailed-form .form-group input[type="number"]::-webkit-outer-spin-button,
.detailed-form .form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Notification Styles */
.notification {
    font-family: 'Poppins', sans-serif;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

/* Responsive Design for Vehicle Showcase */
@media (max-width: 768px) {
    .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vehicle-card {
        margin: 0 10px;
    }
    
    .whatsapp-btn {
        font-size: 1rem !important;
        padding: 15px 20px !important;
    }
}

@media (max-width: 480px) {
    .vehicle-showcase {
        padding: 60px 0;
    }
    
    .vehicle-card h3 {
        font-size: 1.2rem;
    }
    
    .vehicle-card .price {
        font-size: 1rem;
        padding: 6px 16px;
    }
}

/* Vehicle Selector Slider Styles */
.vehicle-selector {
    position: relative;
    margin-top: 10px;
}

.vehicle-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vehicle-slider::-webkit-scrollbar {
    display: none;
}

.vehicle-option {
    min-width: 200px;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.vehicle-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.vehicle-option.selected {
    border-color: #25d366;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fff4 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.vehicle-option img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.vehicle-info {
    padding: 15px;
    text-align: center;
}

.vehicle-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.vehicle-info p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 0.85rem;
}

.vehicle-info .price {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.check-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #25d366;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.vehicle-option.selected .check-icon {
    opacity: 1;
    transform: scale(1);
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -10px;
    right: -10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: all;
    color: #333;
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.selected-vehicle-info {
    margin-top: 15px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
}

.selected-vehicle-info .selected-name {
    font-weight: 700;
    margin: 0 5px;
}

.selected-vehicle-info .selected-price {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 15px;
    margin-left: 10px;
    font-size: 0.9rem;
}

/* Responsive Design for Vehicle Selector */
@media (max-width: 768px) {
    .vehicle-option {
        min-width: 180px;
    }
    
    .vehicle-info {
        padding: 12px;
    }
    
    .vehicle-info h4 {
        font-size: 0.95rem;
    }
    
    .vehicle-info p {
        font-size: 0.8rem;
    }
    
    .slider-controls {
        left: -5px;
        right: -5px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .vehicle-option {
        min-width: 160px;
    }
    
    .vehicle-info {
        padding: 10px;
    }
    
    .vehicle-info h4 {
        font-size: 0.9rem;
    }
    
    .vehicle-info .price {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    .slider-btn {
        width: 28px;
        height: 28px;
    }
}

/* New Styles for Updated Pages */

/* Reservation CTA Section */
.reservation-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.reservation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature i {
    font-size: 1.2rem;
    color: #ffd700;
}

.cta-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Modern Reservation Form */
.reservation-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.form-side {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6c757d;
    font-size: 1rem;
}

.modern-reservation-form {
    position: relative;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.step-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.9rem;
}

.form-group label i {
    margin-right: 0.5rem;
    color: #667eea;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 90%;
    padding: 1em;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
}

.prev-step-btn,
.next-step-btn,
.submit-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prev-step-btn {
    background: #6c757d;
    color: white;
}

.prev-step-btn:hover {
    background: #5a6268;
}

.next-step-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.next-step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn {
    background: #25d366;
    color: white;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.submit-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Vehicle Selection */
.vehicle-selection {
    margin-top: 1rem;
}

.vehicle-options {
    display: grid;
    gap: 1rem;
}

.vehicle-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.vehicle-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vehicle-option.selected {
    border-color: #25d366;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
}

.vehicle-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-details h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.vehicle-details p {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.vehicle-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vehicle-details li {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vehicle-details li i {
    color: #25d366;
    font-size: 0.8rem;
}

.vehicle-details .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #25d366;
    margin-top: 0.5rem;
}

.selection-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    transition: all 0.3s ease;
}

.vehicle-option.selected .selection-indicator {
    background: #25d366;
    color: white;
}

/* Info Side */
.info-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card,
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-header,
.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.info-header i,
.contact-header i {
    font-size: 1.5rem;
    color: #667eea;
}

.info-header h3,
.contact-header h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.2rem;
    color: #25d366;
    margin-top: 0.2rem;
}

.info-item div h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.info-item div p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.contact-content p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.contact-method.whatsapp:hover {
    background: #25d366;
}

.contact-method i {
    font-size: 1.2rem;
}

/* FAQ Search and Filter */
.faq-search {
    background: #f8f9fa;
    padding: 3rem 0;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.2rem;
}

.search-box input {
  
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.tag {
    padding: 0.5rem 1.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.tag:hover,
.tag.active {
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: white;
    border-color: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
}

/* FAQ Categories */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #f8f9fa;
}

.category-title i {
    color: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    font-size: 1.5rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: white;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

.faq-answer ul {
    padding: 0 1.5rem 1.5rem 3rem;
    margin: 0;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.answer-content {
    padding: 1.5rem;
}

.answer-content p {
    padding: 0 0 1rem 0;
}

.answer-content ul {
    padding: 0 0 0 1.5rem;
}

/* Contact CTA */
.contact-cta {
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Styles */
.blog-search {
    background: #f8f9fa;
    padding: 3rem 0;
}

.category-filter select {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.featured-post {
    padding: 4rem 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #38bdf8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.featured-text p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category {
    background:  #38bdf8 ;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.date,
.author {
    color: #6c757d;
}

.post-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.blog-posts {
    padding: 4rem 0;
    background: #f8f9fa;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-content p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.post-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
}

.read-more {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #38bdf8;
}

.load-more-container {
    text-align: center;
}

.load-more-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.newsletter-section {
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.subscribe-btn {
    padding: 1rem 2rem;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subscribe-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Blog Detail Styles */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: #764ba2;
}

.breadcrumb-nav span {
    color: #6c757d;
}

.article-content {
    padding: 4rem 0;
    background: white;
}

.article-container {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.main-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-header {
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 1rem 0;
    line-height: 1.3;
}

.article-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    padding: 2rem;
}

.lead {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.article-body h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
}

.article-body p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    color: #6c757d;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-quote {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    border-radius: 10px;
}

.article-quote blockquote {
    font-size: 1.2rem;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1rem;
}

.article-quote cite {
    color: #667eea;
    font-weight: 500;
}

.vehicle-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.vehicle-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.vehicle-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.vehicle-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.vehicle-card ul {
    list-style: none;
    padding: 0;
}

.vehicle-card li {
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.feature i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #6c757d;
    font-size: 0.9rem;
}

.article-cta {
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.article-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.article-tags {
    padding: 2rem;
    border-top: 1px solid #e9ecef;
}

.article-tags h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    color: black;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.share-buttons {
    padding: 2rem;
    border-top: 1px solid #e9ecef;
}

.share-buttons h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.share-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.author-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.author-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.author-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: #667eea;
    color: white;
}

.related-posts {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-posts h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.related-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.related-content h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-content .date {
    font-size: 0.8rem;
    color: #6c757d;
}

.sidebar-newsletter {
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.sidebar-newsletter h3 {
    margin-bottom: 0.5rem;
}

.sidebar-newsletter p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.sidebar-newsletter .newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.sidebar-newsletter input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
}

.sidebar-newsletter button {
    padding: 0.8rem;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-newsletter button:hover {
    background: #128c7e;
}

/* Comments Section */
.comments-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.comments-container {
    max-width: 800px;
    margin: 0 auto;
}

.comments-container h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.comment-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.comment-form h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-comment {
    padding: 1rem 2rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-comment:hover {
    background: #764ba2;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-header h5 {
    color: #2c3e50;
    margin: 0;
}

.comment-date {
    font-size: 0.8rem;
    color: #6c757d;
}

.comment-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.reply-btn {
    background: none;
    border: none;
    color: #667eea;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.reply-btn:hover {
    color: #764ba2;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .reservation-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .reservation-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .step-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vehicle-option {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vehicle-image {
        margin: 0 auto;
    }
    
    .faq-search .search-container {
        padding: 0 1rem;
    }
    
    .search-tags {
        justify-content: flex-start;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .article-container {
        grid-template-columns: 1fr;
    }
    
    .vehicle-comparison {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .share-links {
        justify-content: center;
    }
    
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .comment {
        flex-direction: column;
        text-align: center;
    }
    
    .comment-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .search-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .tag {
        width: 100%;
        text-align: center;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-body {
        padding: 1.5rem;
    }
    
    .share-links {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
} 

.feature span{

color: black;
}

/* Service Selection Styles */
.service-selection {
    margin-bottom: 2rem;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.service-option {
    background: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-option:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.service-option.active {
    border-color: #007bff;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background:radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: #fff;
}

.service-details {
    flex: 1;
}

.service-details h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-details p {
    margin: 0 0 1rem 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    color: #495057;
    font-size: 0.85rem;
}

.service-details li i {
    color: #28a745;
    font-size: 0.8rem;
}

.selection-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    border: 2px solid #e1e5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-option.active .selection-indicator {
    background: #007bff;
    border-color: #007bff;
}

.service-option.active .selection-indicator i {
    color: #fff;
    font-size: 0.8rem;
}

/* Direction Selection Styles */
.direction-selection {
    margin-bottom: 2rem;
}

.direction-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.direction-option {
    background: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.direction-option:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.direction-option.active {
    border-color: #007bff;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.direction-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.direction-icon i {
    font-size: 20px;
    color: #fff;
}

.direction-details {
    flex: 1;
}

.direction-details h4 {
    margin: 0 0 0.3rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.direction-details p {
    margin: 0;
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Service Fields Styles */
.service-fields {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.service-fields .form-row {
    margin-bottom: 1rem;
}

.service-fields .form-group {
    margin-bottom: 1rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.error {
    border-left: 4px solid #dc3545;
}

.notification i {
    font-size: 1.2rem;
}

.notification.success i {
    color: #28a745;
}

.notification.error i {
    color: #dc3545;
}

.notification span {
    color: #2c3e50;
    font-weight: 500;
}

/* Form Error Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-options,
    .direction-options {
        grid-template-columns: 1fr;
    }
    
    .service-option,
    .direction-option {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon,
    .direction-icon {
        align-self: center;
    }
    
    .selection-indicator {
        position: static;
        margin-top: 1rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* ... existing code ... */

/* Passenger Information Styles */
.passenger-info-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.passenger-info-section h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.passenger-field {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.passenger-field:last-child {
    margin-bottom: 0;
}

.passenger-header {
    margin-bottom: 1rem;
}

.passenger-header h5 {
    margin: 0;
    color: #495057;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.passenger-field .form-row {
    margin-bottom: 0.5rem;
}

.passenger-field .form-group {
    margin-bottom: 0.5rem;
}

.passenger-field .form-group label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.3rem;
}

.passenger-field .form-group input {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
}

/* ... existing code ... */

/* Pricing Page Styles */
/* Pricing Page Styles */
.pricing-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.pricing-category {
    margin-bottom: 4rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.airport-pricing {
    margin-bottom: 3rem;
}

.airport-header {
    margin-bottom: 2rem;
    text-align: center;
}

.airport-header h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* Fiyat Listesi Tablosu */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.price-table th, .price-table td {
    padding: 16px 12px;
    text-align: center;
}

.price-table th {
    background: #38bdf8 ;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
}

.price-table tr:nth-child(even) {
    background: #f6f8fa;
}

.price-table tr:nth-child(odd) {
    background: #fff;
}

.price-table td {
    color: #222;
    font-size: 1.04rem;
}

.price-table tr:hover {
    background: #e9f3ff;
    transition: background 0.2s;
}

/* Pricing Info Section */
.pricing-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.cta-card {
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: #fff;
}

.cta-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #a95003;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .category-header h2 {
        font-size: 2rem;
    }
    
    .pricing-info {
        grid-template-columns: 1fr;
    }
    
    .info-card, .cta-card {
        padding: 1.5rem;
    }
    
    .cta-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 700px) {
    .price-table, .price-table thead, .price-table tbody, .price-table th, .price-table td, .price-table tr {
        display: block;
    }
    
    .price-table thead tr {
        display: none;
    }
    
    .price-table tr {
        margin-bottom: 18px;
        border-radius: 8px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.04);
        background: #fff;
        padding: 8px 0;
    }
    
    .price-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        min-height: 38px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .price-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 600;
        color: #007bff;
        font-size: 0.98rem;
        text-align: left;
    }
}

/* Hero Reservation Form Styles */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
}

.hero-content {
    z-index: 2;
}

.hero-reservation-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.quick-reservation-section {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background:linear-gradient(120deg, #101522 60%, #232a3b 100%);
    padding: 0 0 2.5rem 0;
    position: relative;
    z-index: 3;
}
.quick-reservation-form {
    background: rgba(255,255,255,0.13);
    box-shadow: 0 4px 32px rgba(26,35,126,0.10);
    border-radius: 22px;
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 320px;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255,255,255,0.18);
    margin-top: -2.5rem;
    animation: fadeInUp 1.2s cubic-bezier(.4,0,.2,1);
}
.quick-reservation-form h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}
.quick-res-row {
    display: flex;
    gap: 1rem;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
.quick-res-row input {
    padding: 0.7rem 1.1rem;
    border-radius: 14px;
    border: 1.5px solid #e0e3ef;
    font-size: 1rem;
    outline: none;
    min-width: 120px;
    background: #fff;
    color: #232a3b;
    transition: border 0.2s;
}
.quick-res-row input:focus {
    border: 1.5px solid #38bdf8;
}
.quick-res-btn {
    padding: 0.7rem 1.7rem;
    border-radius: 14px;
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(231,76,60,0.10);
}
.quick-res-btn:hover {
    background: #232a3b;
    color: #ffd700;
}
@media (max-width: 700px) {
    .quick-reservation-form {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .quick-res-row {
        flex-direction: column;
        gap: 0.7rem;
    }
    .quick-res-row input, .quick-res-btn {
        width: 80%;
        margin: auto;
        min-width: unset;
    }
}
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-header p {
    color: #6c757d;
    font-size: 0.9rem;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-form .form-group {
    display: flex;
    flex-direction: column;
}

.hero-form .form-group.full-width {
    grid-column: 1 / -1;
}

.hero-form .form-group label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.hero-form .form-group input:focus,
.hero-form .form-group select:focus,
.hero-form .form-group textarea:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.hero-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.hero-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
}

.hero-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.hero-submit-btn i {
    font-size: 1.2rem;
}

/* Hero Car Slider Styles */
.hero-car-slider {
    position: relative;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slide.active {
    opacity: 1;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.slide:hover img {
    transform: scale(1.05);
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.slide-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.slide-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50;
    font-size: 1rem;
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Design for Hero Section */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        padding-top: 120px;
    }
    
    .hero-car-slider {
        order: -1;
    }
    
    .slider-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-reservation-form {
        padding: 1.5rem;
    }
    
    .hero-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .slider-container {
        height: 300px;
    }
    
    .slider-controls {
        bottom: 10px;
        gap: 0.5rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .slide-caption {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 0.75rem;
    }
    
    .slide-caption h3 {
        font-size: 1rem;
    }
    
    .slide-caption p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-reservation-form {
        padding: 1rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .hero-form .form-group input,
    .hero-form .form-group select,
    .hero-form .form-group textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .hero-submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Form Step Styles */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

.form-step h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fullwidth Hero Slider and Reservation Form */


.hero-slider {
  margin-left: 50px;
  position: relative;
  width: 700px;
  max-width: 45vw;
  min-width: 220px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: #181c2a;
}
.hero-slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
  position: absolute;
  left: 0; top: 0;
  right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: unset;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(24,28,42,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider-btn.prev { left: 18px; }
.hero-slider-btn.next { right: 18px; }
.hero-slider-btn:hover {
  background: #38bdf8;
  color: #fff;
}
.hero-slider-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 4;
}
.hero-slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
  border: 2px solid #38bdf8;
}
.hero-slider-dots .dot.active {
  background: #38bdf8;
  opacity: 1;
  transform: scale(1.2);
}
@media (max-width: 900px) {
  .hero-main-vip-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.2rem 0.2rem 0.5rem 0.2rem;
  }
  .hero-slider {
    width: 96vw;
    max-width: 99vw;
    height: 80px;
    min-width: 120px;
    border-radius: 12px;
  }
  .hero-slide img {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
  }
  .hero-slider-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  .hero-slider-dots .dot {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 600px) {
  .hero-main-vip-inner {
    padding: 0.5rem 0.1rem 0.2rem 0.1rem;
    gap: 1rem;
  }
  .hero-slider {
    margin: auto;
    height: 250px;
    margin-bottom: 50px;
    min-width: 80px;
    border-radius: 8px;
  }
  .hero-slide img {
    border-radius: 8px;
  }
  .hero-slider-btn {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }
  .hero-slider-dots .dot {
    width: 6px;
    height: 6px;
  }
}
.reservation-form-box {
    position: absolute;
    top: 50%;
    right: 5vw;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 18px;
    padding: 2.5rem 2rem 2rem 2rem;
    width: 370px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-form.compact .form-group,
.hero-form.compact .form-row {
    margin-bottom: 1rem;
}

.hero-form.compact .form-row {
    display: flex;
    gap: 1rem;
}

.hero-form.compact .form-row .form-group {
    flex: 1;
}

.hero-form.compact .form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-form.compact .form-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-form.compact .form-group label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.hero-form.compact .form-group input,
.hero-form.compact .form-group select,
.hero-form.compact .form-group textarea {
    padding: 0.6rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.hero-form.compact .form-group input:focus,
.hero-form.compact .form-group select:focus,
.hero-form.compact .form-group textarea:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(231,76,60,0.08);
}

.hero-form.compact .form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.hero-form.compact .hero-submit-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 5px 15px rgba(37,211,102,0.2);
}

.hero-form.compact .hero-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.hero-form.compact .hero-submit-btn i {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .hero-slider-section, .hero-slider-wrapper, .slider-container {
        min-height: 400px;
        height: 400px;
    }
    .reservation-form-box {
        width: 320px;
        padding: 1.5rem 1rem 1rem 1rem;
        right: 2vw;
    }
    .slider-overlay {
        padding-left: 2vw;
    }
}

@media (max-width: 768px) {
    .hero-slider-section, .hero-slider-wrapper, .slider-container {
        min-height: 320px;
        height: 320px;
    }
    .reservation-form-box {
        width: 95vw;
        max-width: 95vw;
        left: 50%;
        right: auto;
        top: auto;
        bottom: 0;
        transform: translate(-50%, 0);
        margin-bottom: 0.5rem;
        position: static;
        box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    }
    .slider-overlay {
        padding-left: 1vw;
    }
    .slider-content {
        max-width: 90vw;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem;
    }
    .hero-slider-section, .hero-slider-wrapper, .slider-container {
        min-height: 200px;
        height: 200px;
    }
    .reservation-form-box {
        padding: 0.7rem 0.5rem 0.5rem 0.5rem;
    }
    .slider-content {
        max-width: 98vw;
    }
}

/* Hero Split Section */
.hero-split {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.hero-split-overlay {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    background: linear-gradient(90deg, rgba(34,34,34,0.65) 0%, rgba(34,34,34,0.08) 60%, rgba(34,34,34,0) 100%);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
.hero-split-inner {
    position: relative;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-split-left {
    flex: 0 0 420px;
    max-width: 420px;
    min-width: 320px;
    margin-left: 6vw;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 18px;
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hero-split-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 8vw;
}
.hero-slogan-box {
    color: #fff;
    text-align: right;
    max-width: 600px;
    margin-left: auto;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.hero-slogan-box .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-slogan-box .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}
.hero-reservation-form .form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.hero-reservation-form .form-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.hero-reservation-form .form-header p {
    color: #6c757d;
    font-size: 0.95rem;
}
.hero-form .form-group,
.hero-form .form-row {
    margin-bottom: 1rem;
}
.hero-form .form-row {
    display: flex;
    gap: 1rem;
}
.hero-form .form-row .form-group {
    flex: 1;
}
.hero-form .form-group label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}
.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
    padding: 0.6rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}
.hero-form .form-group input:focus,
.hero-form .form-group select:focus,
.hero-form .form-group textarea:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(231,76,60,0.08);
}
.hero-form .form-group textarea {
    resize: vertical;
    min-height: 60px;
}
.hero-submit-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 5px 15px rgba(37,211,102,0.2);
}
.hero-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}
.hero-submit-btn i {
    font-size: 1.2rem;
}
/* NAVBAR TABLET RESPONSIVE DÜZENLEMELERİ */
@media (max-width: 1200px) and (min-width: 769px) {
  .nav-menu {
    gap: 1.2rem;
    font-size: 1rem;
    padding: 0 1rem;
    box-shadow: none !important;
    border: none !important;
  }
  
  .nav-link {
    padding: 0.5rem 0.3rem;
    font-size: 1rem;
  }
  .nav-container {
    padding: 0 10px;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    left: -110vw !important; /* Ekranın daha da dışına atar */
  }
  .nav-menu.active {
    left: 0 !important;
  }
}
@media (max-width: 1300px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 24px;
    flex-direction: column;
    background-color: white;
    width: 100vw;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    z-index: 2000;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-link {
    font-size: 1.1rem;
    /* padding: 1rem 0; */
    border-bottom: 1px solid #eee;
    width: 100vw;
    display: block;
  }
  .nav-container {
      height:50px;
    padding: 0 8px;
  }
}
/* Logo kısmı */
.nav-logo img {
    margin-top:20px;
    width: auto;
    display: block;
}
@media (max-width: 900px) {
  .nav-logo h2 {
    font-size: 1.1rem;
  }
}
@media (max-width: 1100px) {
    .hero-split-inner {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: auto;
        min-height: 100vh;
    }
    .hero-split-left {
        margin: 4vw auto 2vw auto;
    }
    .hero-split-right {
        margin: 0 auto 0 auto;
        justify-content: center;
        text-align: center;
    }
    .hero-slogan-box {
        text-align: center;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .hero-split {
        min-height: 100vh;
        height: auto;
        flex-direction: column;
    }
    .hero-split-overlay, .hero-split-inner {
        min-height: 100vh;
        height: auto;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .hero-split-left {
        width: 95vw;
        max-width: 95vw;
        margin: 2vw auto 2vw auto;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .hero-split-right {
        margin: 0 auto 0 auto;
        justify-content: center;
        text-align: center;
    }
    .hero-slogan-box {
        text-align: center;
        margin: 0 auto 2vw auto;
    }
    .hero-slogan-box .hero-title {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    .hero-split-left {
        min-width: 0;
        width: 99vw;
        padding: 0.7rem 0.2rem 0.5rem 0.2rem;
    }
    .hero-slogan-box .hero-title {
        font-size: 1.2rem;
    }
    .hero-slogan-box .hero-subtitle {
        font-size: 0.95rem;
    }
}
/* TABLET FOOTER & HERO SLIDER RESPONSIVE */
@media (max-width: 1024px) {
  .footer-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2rem;
  }
  .footer-section {
    margin-bottom: 1.5rem;
  }
  .footer-section h3 {
    font-size: 1.2rem;
  }
  .footer-section ul {
    padding-left: 0;
  }
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  .hero-slider {
    width: 95vw;
    max-width: 99vw;
    min-width: 180px;
    height: 220px;
    border-radius: 14px;
  }
  .hero-slide img {
    border-radius: 14px;
    object-fit: unset;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
  }
  .hero-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .hero-slider-dots .dot {
    width: 10px;
    height: 10px;
  }
}
/* Hero Split Background Slider */
.hero-split {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/mercedes-back.png') center/cover no-repeat;
    opacity: 0.6;
    animation: heroSlide 15s infinite;
}

.hero-split::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

@keyframes heroSlide {
    0%, 33% {
        background-image: url('../images/mercedes-back.png');
    }
    34%, 66% {
        background-image: url('../images/mercedes-front.png');
    }
    67%, 100% {
        background-image: url('../images/mercedes-back-left.png');
    }
}

.hero-split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-split-inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-split-left {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-split-right {
    text-align: center;
    color: white;
}

.hero-slogan-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slogan-box .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.hero-slogan-box .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .hero-split-inner {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
    }
    .hero-split-left {
        margin: 2vw auto 2vw auto;
    }
    .hero-split-right {
        margin: 0 auto 0 auto;
        justify-content: center;
        text-align: center;
    }
    .hero-slogan-box {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-split {
        min-height: 100vh;
        height: auto;
        flex-direction: column;
        padding-top: 80px;
    }
    .hero-split-overlay, .hero-split-inner {
        min-height: 100vh;
        height: auto;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 20px;
    }
    .hero-split-left {
        width: 90vw;
        max-width: 400px;
        margin: 2vw auto 2vw auto;
        padding: 1.2rem 0.8rem 1rem 0.8rem;
    }
    .hero-split-right {
        margin: 0 auto 0 auto;
        justify-content: center;
        text-align: center;
    }
    .hero-slogan-box {
        text-align: center;
        margin: 0 auto 2vw auto;
    }
    .hero-slogan-box .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-split {
        padding-top: 70px;
    }
    .hero-split-left {
        width: 85vw;
        max-width: 350px;
        padding: 1rem 0.6rem 0.8rem 0.6rem;
        margin: 1vw auto 1vw auto;
    }
    .hero-slogan-box .hero-title {
        font-size: 1.2rem;
    }
    .hero-slogan-box .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* Kompakt Service Options */
.hero-form .service-selection {
    margin-bottom: 1.5rem;
}

.hero-form .service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.hero-form .service-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-form .service-option:hover {
    border-color: #667eea;
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.hero-form .service-option.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.hero-form .service-icon {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.hero-form .service-icon i {
    font-size: 1.2rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.hero-form .service-option.active .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.hero-form .service-option.active .service-icon i {
    color: white;
}

.hero-form .service-details {
    text-align: center;
}

.hero-form .service-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.hero-form .service-option.active .service-details h4 {
    color: white;
}

.hero-form .service-details p {
    font-size: 0.7rem;
    color: #6c757d;
    margin: 0;
    transition: all 0.3s ease;
}

.hero-form .service-option.active .service-details p {
    color: rgba(255, 255, 255, 0.8);
}

.hero-form .selection-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-form .service-option.active .selection-indicator {
    background: #28a745;
    opacity: 1;
}

.hero-form .service-option.active .selection-indicator i {
    color: white;
    font-size: 0.7rem;
}

/* Step Navigation */
.step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.prev-step-btn,
.next-step-btn {
    padding: 0.75rem 1.5rem;
  
    background: transparent;
    color: #667eea;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.prev-step-btn:hover {
    background: #667eea;
    color: white;
}

.next-step-btn {
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: white;
}

.next-step-btn:hover {
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.form-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-form .service-options {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .hero-form .service-option {
        min-height: 80px;
        padding: 0.8rem;
    }
    
    .hero-form .service-icon {
        width: 35px;
        height: 35px;
    }
    
    .hero-form .service-icon i {
        font-size: 1rem;
    }
    
    .hero-form .service-details h4 {
        font-size: 0.85rem;
    }
    
    .hero-form .service-details p {
        font-size: 0.7rem;
    }
}

/* === MODERN REZERVASYON FORMU === */
.form-side {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 24px;
  max-width: 480px;
  margin: 32px auto;
}
.form-header {
  text-align: center;
  margin-bottom: 24px;
}
.stepper {
  width: 100%;
}
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.step-indicator .step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eee;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}
.step-indicator .step.active {
  background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
  color: #fff;
}
.form-step {
  display: none;
  flex-direction: column;
  gap: 18px;
}
.form-step.active {
  display: flex;
}
.service-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card {
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.06);
  padding: 18px 12px;
  min-width: 110px;
  flex: 1 1 110px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.service-card input[type="radio"] {
  display: none;
}
.service-card .icon {
  font-size: 2rem;
  margin-bottom: 8px;
  color: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
}
.service-card .label {
  font-weight: 500;
  color: #222;
}
.service-card input[type="radio"]:checked + .icon,
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon,
.service-card input[type="radio"]:checked ~ .label,
.service-card input[type="radio"]:checked ~ * {
  font-weight: 600;
}
.service-card input[type="radio"]:checked ~ .icon {
  text-shadow: 0 2px 8px rgba(30,136,229,0.12);
}
.service-card input[type="radio"]:checked ~ .label {
  text-shadow: 0 2px 8px rgba(30,136,229,0.08);
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ * {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #1565c0;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ * {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ * {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ * {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ * {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ * {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ * {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .icon {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .label {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ * {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .icon {
  color:  #38bdf8;
}
.service-card input[type="radio"]:checked ~ .label {
  color:  #38bdf8;
}
.service-card input[type="radio"]:checked ~ * {
  color:  #38bdf8;
}
.service-card input[type="radio"]:checked ~ .icon {
  color:  #38bdf8;
}
.service-card input[type="radio"]:checked ~ .label {
  color:  #38bdf8;
}
.service-card input[type="radio"]:checked ~ * {
  color:  #38bdf8
}
.service-card input[type="radio"]:checked ~ .icon {
  color:  #38bdf8;
}
.service-card input[type="radio"]:checked ~ .label {
  color:  #38bdf8;
}
.service-card input[type="radio"]:checked ~ * {
  color: #38bdf8;
}
.service-card input[type="radio"]:checked ~ .icon {
  color:  #38bdf8;
}
.service-card input[type="radio"]:checked ~ .label {
  color:  #38bdf8;
}
.service-card input[type="radio"]:checked ~ * {
  color:  #38bdf8;
}
.service-card input[type="radio"]:checked ~ .icon {
  color:  #38bdf8;
}
.service-card input[type="radio"]:checked ~ .label {
  color:  #38bdf8;
}
.service-card input[type="radio"]:checked ~ * {
  color:  #38bdf8;
}


/*Dilll*/
/* Genel wrapper hizalaması */
.wrapper {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 999;
}

/* Dil seçici kapsayıcı */
.select-language {
    position: relative;
    display: inline-block;
}

/* Seçili dil görseli (bayrak) */
.select-language-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

    .select-language-container:hover {
        border-color: #007bff;
    }

    .select-language-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Açılır liste */
#select_language {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 5px 0;
    min-width: 110px;
    z-index: 999;
}

    /* Her seçenek */
    #select_language li {
        padding: 5px 10px;
        transition: background 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #select_language li:hover {
            background-color: #f2f2f2;
        }

        #select_language li img {
            width: 28px;
            height: 18px;
            object-fit: cover;
            display: block;
        }

/* Responsive uyarlama */
@media (max-width: 768px) {
    .wrapper {
        top: 10px;
        right: 10px;
    }

    .select-language-container {
        width: 34px;
        height: 34px;
    }

    #select_language {
        top: 40px;
        min-width: 100px;
    }

        #select_language li img {
            width: 24px;
            height: 16px;
        }
}

@media (max-width: 480px) {
    .wrapper {
        margin:auto;
        top: 15px;
        right: 8px;
    }

    .select-language-container {
        width: 30px;
        height: 30px;
    }

    #select_language {
        top: 30px;
    }

        #select_language li img {
            width: 22px;
            height: 14px;
        }
}
@media (max-width: 768px) {
    .wrapper {
        top :0px;
        right: 60px !important; /* hamburger'den aşağıda */
        right: 10px;
        z-index: 900;
    }

    .hamburger {
        z-index: 1000;
        position: relative;
    }
}
@media (max-width: 1300px) {
    .wrapper {
        top: 0px;
        right: 60px !important; /* hamburger'den aşağıda */
        right: 10px;
        z-index: 900;
    }

    .hamburger {
        z-index: 1000;
        position: relative;
    }
}
@media (max-width: 480px) {
    .wrapper {
        top: 7px !important;
        right: 8px;
        z-index: 900;
    }

    .hamburger {
        z-index: 1000;
        position: relative;
    }
}


/* Hero Video Section */
.hero-video-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 24, 38, 0.55);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.hero-video-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .hero-video-content h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.2rem;
        text-shadow: 0 4px 32px rgba(0,0,0,0.18);
    }

    .hero-video-content p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.92;
        text-shadow: 0 2px 12px rgba(0,0,0,0.10);
    }

.hero-video-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 28px;
    background: radial-gradient(circle, #38bdf8 0%, #0f172a 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(231,76,60,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
    letter-spacing: 0.5px;
}

    .hero-video-btn:hover {
        background: #fff;
        color: #38bdf8;
        box-shadow: 0 8px 32px rgba(231,76,60,0.18);
        transform: translateY(-2px) scale(1.04);
    }

@media (max-width: 900px) {
    .hero-video-content h1 {
        font-size: 2.1rem;
    }

    .hero-video-content p {
        font-size: 1.05rem;
    }

    .hero-video-section {
        min-height: 400px;
        height: 60vh;
    }
}

@media (max-width: 600px) {
    .hero-video-content h1 {
        font-size: 1.3rem;
    }

    .hero-video-content p {
        font-size: 0.95rem;
    }

    .hero-video-section {
        min-height: 250px;
        height: 60vh;
    }

    .hero-video-content {
        margin-top:50px;
        padding: 1rem;
    }

    .hero-video-btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
}
#categoryFilter {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}
#fast-reserve-btn {
    position: fixed;
    bottom: 30px; /* WhatsApp butonunun altına geldi */
    right: 20px;
    background-color: #2c3e50;
    color: white;
    padding: 12px 18px;
    border-radius: 40px;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999998; /* WhatsApp butonunun altında */
    transition: all 0.3s ease;
}

    #fast-reserve-btn:hover {
        background-color: #1a252f;
    }