:root {
    --hoppa-green: #00a19c;
    --hoppa-dark: #333333;
    --hoppa-light: #f8f9fa;
}

/* Bootstrap container classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive grid classes */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12, .col-md-4, .col-lg-3 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.hero-section{
    background: url('../images/vehicle_doga.jpeg'); no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0 0px 0;
    position: relative;
    min-height: 600px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.contact-info h4 {
    color: white;
    margin-bottom: 15px;
}

.phone-number {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.phone-number i {
    color: var(--hoppa-green);
    font-size: 1.8rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.contact-info h4 {
    color: white;
    margin-bottom: 15px;
}

.phone-number {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.phone-number i {
    color: var(--hoppa-green);
    font-size: 1.8rem;
}
}

.search-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.search-box.airport-theme-shell,
.search-box.airport-theme-dlm,
.search-box.airport-theme-ayt,
.search-box.airport-theme-bjv {
    border: 1px solid rgba(255, 255, 255, .34);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
    overflow: hidden;
}

.search-box.airport-theme-shell .form-label {
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
}

/* Tüm form alanları aynı yükseklik */
.search-box .form-select-lg,
.search-box .form-control-lg {
    height: 58px;
    font-size: 1rem;
}

.search-box .col-md-4 .form-label {
    min-height: 28px;
    display: flex;
    align-items: flex-end;
    line-height: 1.15;
}

.search-box .col-md-4 {
    display: flex;
    flex-direction: column;
}

.search-box .col-md-4 .form-select-lg {
    margin-top: auto;
}

@media (max-width: 768px) {
    .search-box {
        padding: 20px 15px;
    }
    
    .search-box .form-select-lg,
    .search-box .form-control-lg {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .search-box .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

.transfer-option {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.transfer-option:hover {
    transform: translateY(-5px);
}

.transfer-option img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.transfer-option h5 {
    color: var(--hoppa-dark);
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.transfer-option p.text-muted {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.transfer-option .d-flex {
    margin-bottom: 15px;
}

.transfer-option .d-flex p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.transfer-option .d-flex p b {
    color: var(--hoppa-dark);
}

.feature-list {
    margin-top: 15px;
}

.feature-list p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list i {
    width: 16px;
    color: var(--hoppa-green);
}

@media (max-width: 768px) {
    .transfer-option {
        padding: 15px;
    }
    
    .transfer-option img {
        height: 180px;
    }
    
    .transfer-option h5 {
        font-size: 1.1rem;
    }
    
    .transfer-option .d-flex {
        margin-bottom: 10px;
    }
    
    .transfer-option .d-flex p {
        font-size: 0.85rem;
    }
    
    .transfer-option .feature-list {
        margin-top: 10px;
    }
    
    .transfer-option .feature-list p {
        margin-bottom: 6px;
        font-size: 0.85rem;
    }
    
    .transfer-option .feature-list i {
        width: 14px;
    }
}

@media (max-width: 576px) {
    .transfer-option img {
        height: 160px;
    }
    
    .transfer-option h5 {
        font-size: 1rem;
    }
    
    .transfer-option .d-flex p {
        font-size: 0.8rem;
    }
    
    .transfer-option .feature-list p {
        font-size: 0.8rem;
    }
}

/* Responsive hero section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/Dalaman-Airport-Transfer-Dalaman-Transfer-Service.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 44px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-vito-animation {
    position: absolute;
    left: 0;
    top: 18px;
    width: 100%;
    height: 92px;
    pointer-events: none;
    z-index: 4;
    overflow: visible;
}

.hero-vito-car {
    position: absolute;
    left: 0;
    top: 50%;
    width: clamp(150px, 16vw, 230px);
    min-width: 0;
    opacity: 0;
    animation: heroVitoDrive 6.5s ease-in-out 1 forwards;
}

.hero-vito-car::before {
    content: "";
    position: absolute;
    left: 1.5%;
    top: 66%;
    width: 24%;
    height: 18%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 25% 54%, rgba(255,255,255,.84) 0 15%, rgba(255,255,255,.52) 16% 35%, rgba(255,255,255,0) 70%),
        radial-gradient(circle at 58% 44%, rgba(255,255,255,.7) 0 13%, rgba(255,255,255,.4) 14% 34%, rgba(255,255,255,0) 68%),
        radial-gradient(circle at 82% 58%, rgba(255,255,255,.58) 0 11%, rgba(255,255,255,.31) 12% 30%, rgba(255,255,255,0) 65%);
    filter: blur(3px);
    transform: translateX(-82%) scale(.9);
    opacity: 0;
    z-index: 3;
    animation: heroExhaustSmoke 1.25s ease-out 7 .35s;
}

.hero-vito-car img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    filter: none;
    z-index: 1;
}

.hero-vito-wheel {
    position: absolute;
    width: 6.85%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    pointer-events: none;
    background:
        radial-gradient(circle at center, #fff 0 17%, #171717 18% 31%, #f7f7f7 32% 42%, #111 43% 68%, transparent 69% 100%),
        conic-gradient(
            from 0deg,
            rgba(255,255,255,.98) 0 12deg,
            rgba(17,17,17,0) 12deg 45deg,
            rgba(255,255,255,.98) 45deg 57deg,
            rgba(17,17,17,0) 57deg 90deg,
            rgba(255,255,255,.98) 90deg 102deg,
            rgba(17,17,17,0) 102deg 135deg,
            rgba(255,255,255,.98) 135deg 147deg,
            rgba(17,17,17,0) 147deg 180deg,
            rgba(255,255,255,.98) 180deg 192deg,
            rgba(17,17,17,0) 192deg 225deg,
            rgba(255,255,255,.98) 225deg 237deg,
            rgba(17,17,17,0) 237deg 270deg,
            rgba(255,255,255,.98) 270deg 282deg,
            rgba(17,17,17,0) 282deg 315deg,
            rgba(255,255,255,.98) 315deg 327deg,
            rgba(17,17,17,0) 327deg 360deg
        );
    border: 2px solid #050505;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.7), 0 0 2px rgba(0,0,0,.8);
    animation: heroWheelSpin .42s linear 16;
    z-index: 2;
}

.hero-vito-wheel--rear {
    left: 31.85%;
    top: 69.65%;
}

.hero-vito-wheel--front {
    left: 81.38%;
    top: 69.45%;
}

@keyframes heroWheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes heroExhaustSmoke {
    0% {
        transform: translateX(-28%) scale(.45);
        opacity: 0;
    }
    30% {
        opacity: .78;
    }
    100% {
        transform: translateX(-118%) translateY(-10%) scale(1.18);
        opacity: 0;
    }
}

@keyframes heroVitoDrive {
    0% {
        transform: translate(-140%, -50%);
        opacity: 0;
    }
    12% {
        opacity: .88;
    }
    82% {
        opacity: .88;
    }
    100% {
        transform: translate(calc(100vw + 140%), -50%);
        opacity: 0;
    }
}

.hero-copy {
    padding-top: 64px;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-section h2 {
    font-size: 1.5rem;
    line-height: 1.15;
    margin-bottom: .42rem;
}

.hero-brand-line {
    color: #fff;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,.65);
}

.hero-section .hero-service-title {
    font-size: 1.46rem;
    line-height: 1.22;
}

.hero-description-line {
    font-size: 1.08rem;
    line-height: 1.45;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 30px 0;
    }

    .hero-vito-animation {
        top: 14px;
        height: 78px;
    }

    .hero-vito-car {
        width: 150px;
        animation-duration: 5.6s;
    }

    .hero-vito-wheel {
        animation-duration: .36s;
        animation-iteration-count: 15;
    }

    .hero-copy {
        padding-top: 28px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-section h2 {
        font-size: 1.26rem;
        line-height: 1.25;
    }

    .hero-brand-line {
        font-size: 1rem;
    }

    .hero-section .hero-service-title {
        font-size: 1.26rem;
    }
    
    .hero-description-line {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 34px 0 25px 0;
    }

    .hero-vito-animation {
        top: 12px;
        height: 70px;
    }

    .hero-copy {
        padding-top: 26px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .hero-section h2 {
        font-size: 1.08rem;
        line-height: 1.25;
    }

    .hero-brand-line {
        font-size: .94rem;
    }

    .hero-section .hero-service-title {
        font-size: 1.1rem;
    }
    
    .hero-description-line {
        font-size: .94rem;
        line-height: 1.6;
    }
}

.btn-hoppa {
    background: var(--hoppa-green);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    width: 100%;
}

.btn-hoppa:hover {
    background: #008a85;
    color: white;
}

.about-section {
    background: #fff;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(280px, 38%) 1fr;
    gap: 44px;
    align-items: center;
    margin-bottom: 40px;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-content: start;
}

.about-slide {
    position: static;
    width: 100%;
    height: 155px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    border: 3px solid #fff;
}

.about-slide-1,
.about-slide-2,
.about-slide-3,
.about-slide-4,
.about-slide-5,
.about-slide-6 {
    inset: auto;
    z-index: auto;
}

.about-content {
    text-align: left;
    max-width: 860px;
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.about-content h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #00a19c;
    margin: 8px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #00a19c;
}

.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.about-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: .96rem;
    color: #444;
    line-height: 1.6;
}

.about-feature-list i {
    color: #00a19c;
    font-size: 1.05rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-note {
    background: #f0fffe;
    border-left: 4px solid #00a19c;
    padding: 20px 22px;
    border-radius: 0 8px 8px 0;
}

.about-note p {
    margin: 0 0 12px;
    font-size: .95rem;
    line-height: 1.75;
}

.about-note p:last-child {
    margin-bottom: 0;
}

.about-note i {
    color: #00a19c;
    margin-right: 8px;
}

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

    .about-gallery {
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
    }

    .about-slide {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .about-slide {
        height: 135px;
    }

    .about-content h2 {
        font-size: 1.85rem;
    }
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 40px;
    color: var(--hoppa-green);
    margin-bottom: 15px;
}

.destination-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background: white;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.destination-card .price {
    color: var(--hoppa-green);
    font-weight: bold;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #111111 !important;
}

.section-title p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-title p {
        font-size: 0.95rem;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        margin-bottom: 25px;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
        line-height: 1.4;
    }
    
    .section-title p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

.trust-badges {
    background: var(--hoppa-light);
    padding: 20px 0;
    text-align: center;
}

.trust-badge {
    margin: 0 15px;
    height: 40px;
}

.footer {
    background: var(--hoppa-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
}

.social-icons a:hover {
    color: var(--hoppa-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #ccc;
}

.footer-payments {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.payment-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 10px 0;
    flex-wrap: wrap;
    flex-direction: row;
}

.payment-row i {
    font-size: 38px;
    color: #fff;
    transition: transform 0.3s ease;
}

.payment-row i:hover {
    transform: scale(1.1);
}

.secure-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .payment-row {
        flex-wrap: nowrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .footer-payments {
        margin-top: 15px;
    }
    
    .payment-row {
        gap: 10px;
        margin: 8px 0;
    }
    
    .secure-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .footer-payments {
        margin-top: 10px;
    }
    
    .payment-row {
        gap: 8px;
        margin: 6px 0;
    }
    
    .secure-text {
        font-size: 13px;
    }
}

.language-selector {
    background: transparent;
    border: 1px solid #ccc;
    color: var(--hoppa-dark);
    padding: 5px 10px;
    border-radius: 4px;
}

.newsletter-box {
    background: var(--hoppa-light);
    padding: 40px 0;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
}

/* Transfer Options Styles */
.transfer-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.transfer-option {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.transfer-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--hoppa-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.transfer-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.transfer-option:hover::before {
    opacity: 1;
}

.transfer-option img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    padding: 10px;
    background: var(--hoppa-light);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.transfer-option:hover img {
    transform: scale(1.1);
}

.transfer-option h5 {
    color: var(--hoppa-dark);
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 8px;
}

.transfer-option h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--hoppa-green);
    transition: width 0.3s ease;
}

.transfer-option:hover h5::after {
    width: 50px;
}

.transfer-option p {
    color: #666;
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.5;
}

.transfer-option p:last-child {
    margin-bottom: 0;
    color: #888;
    font-size: 13px;
}

.transfer-option b {
    color: var(--hoppa-dark);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .transfer-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .transfer-options {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
    }
    
    .transfer-option {
        padding: 25px;
        min-height: 160px;
    }
    
    .transfer-option img {
        width: 60px;
        height: 60px;
    }
} 

.quote-title-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 72px;
    margin-bottom: 18px;
    padding: 16px 22px;
    background: #fff;
    border-left: 6px solid #00a19c;
    border-radius: 6px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
    color: #111;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.2;
}

.quote-title-bar i {
    flex: 0 0 auto;
    color: #111;
    font-size: 1.16rem;
    transform: rotate(-8deg);
}

.quote-title-bar span {
    display: block;
}

.airport-theme-dlm .quote-title-bar {
    border-left-color: #00a19c;
}

.airport-theme-ayt .quote-title-bar {
    border-left-color: #e88900;
}

.airport-theme-bjv .quote-title-bar {
    border-left-color: #343a40;
}

@media (max-width: 768px) {
    .quote-title-bar {
        min-height: 62px;
        margin-bottom: 14px;
        padding: 14px 16px;
        gap: 10px;
        font-size: 1.05rem;
        border-left-width: 5px;
    }

    .quote-title-bar i {
        font-size: 1rem;
    }
}

.search-box.airport-theme-dlm {
    background: linear-gradient(135deg, rgba(0, 161, 156, .94), rgba(0, 89, 104, .88)) !important;
}

.search-box.airport-theme-ayt {
    background: linear-gradient(135deg, rgba(232, 137, 0, .94), rgba(168, 86, 0, .88)) !important;
}

.search-box.airport-theme-bjv {
    background: linear-gradient(135deg, rgba(52, 58, 64, .96), rgba(27, 31, 35, .92)) !important;
}

.search-box .form-select-lg,
.search-box .form-control-lg {
    border-width: 2px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
}

.search-box.airport-theme-dlm .form-select,
.search-box.airport-theme-dlm .form-control {
    background-color: #d9f5f3;
    border-color: #00a19c;
}

.search-box.airport-theme-ayt .form-select,
.search-box.airport-theme-ayt .form-control {
    background-color: #fff1d9;
    border-color: #e88900;
}

.search-box.airport-theme-bjv .form-select,
.search-box.airport-theme-bjv .form-control {
    background-color: #eef0f2;
    border-color: #495057;
}

.search-box .form-select:focus,
.search-box .form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .28);
}

.search-box .quote-title-bar {
    min-height: 78px;
    margin: 0 0 24px;
    border-radius: 6px;
    border-left-width: 7px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
}

.search-box.airport-theme-dlm .quote-title-bar {
    border-left-color: #00a19c;
}

.search-box.airport-theme-ayt .quote-title-bar {
    border-left-color: #e88900;
}

.search-box.airport-theme-bjv .quote-title-bar {
    border-left-color: #343a40;
}

.search-box .airport-tabs-wrap {
    margin-bottom: 22px !important;
}

.search-box .quote-airport-buttons {
    position: relative;
    z-index: 3;
    gap: 12px;
    margin: 0 0 28px !important;
}

.search-box .quote-airport-buttons .airport-tab {
    position: relative;
    min-height: 96px;
    border: 0;
    border-radius: 12px;
    padding: 16px 16px;
    opacity: 1;
    overflow: visible;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .30);
}

.search-box .quote-airport-buttons .airport-tab:hover,
.search-box .quote-airport-buttons .airport-tab.active {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, .36);
}

.search-box .quote-airport-buttons .airport-tab.active {
    outline: 3px solid rgba(255, 255, 255, .98);
    outline-offset: -3px;
}

.search-box .quote-airport-buttons .airport-tab::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 18px solid currentColor;
    filter: drop-shadow(0 6px 7px rgba(0, 0, 0, .24));
    opacity: .9;
}

.search-box .quote-airport-buttons .airport-tab-dlm {
    color: #00a19c;
}

.search-box .quote-airport-buttons .airport-tab-ayt {
    color: #e88900;
}

.search-box .quote-airport-buttons .airport-tab-bjv {
    color: #343a40;
}

.search-box .quote-airport-buttons .airport-tab-icon,
.search-box .quote-airport-buttons .airport-tab-title,
.search-box .quote-airport-buttons .airport-tab-code {
    color: #fff;
}

.quote-form-panel {
    position: relative;
    z-index: 1;
    border-radius: 0 0 8px 8px;
    padding-top: 2px;
}

.search-box .btn-hoppa {
    min-height: 58px;
    border-radius: 4px;
    font-size: 1.08rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    .hero-section .search-box {
        max-width: 760px;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .search-box .quote-airport-buttons {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px !important;
    }

    .search-box .quote-airport-buttons .airport-tab {
        min-height: 72px;
    }

    .search-box .quote-airport-buttons .airport-tab::after {
        bottom: -14px;
        border-left-width: 10px;
        border-right-width: 10px;
        border-top-width: 14px;
    }
}

/* Transfer benefits */
.transfer-benefits-section {
    padding: 58px 0 52px;
    background: #fff;
}

.transfer-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.transfer-benefit {
    min-width: 0;
    padding: 8px 14px 18px;
    text-align: center;
}

.transfer-benefit__icon {
    display: block;
    width: 100%;
    max-width: 230px;
    height: 190px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.transfer-benefit h3 {
    min-height: 52px;
    margin: 0 0 16px;
    color: #111;
    font-size: 1.12rem;
    font-weight: 750;
    line-height: 1.45;
}

.transfer-benefit p {
    max-width: 290px;
    margin: 0 auto;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .hero-reservation-column {
        margin-bottom: 30px;
    }

    .hero-copy {
        padding-top: 0;
    }

    .transfer-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 42px;
    }
}

@media (max-width: 575.98px) {
    .transfer-benefits-section {
        padding: 42px 0 36px;
    }

    .transfer-benefits-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .transfer-benefit {
        padding-inline: 18px;
    }

    .transfer-benefit__icon {
        height: 175px;
        margin-bottom: 14px;
    }

    .transfer-benefit h3 {
        min-height: 0;
        margin-bottom: 10px;
    }
}
