:root {
    --hoppa-green: #c8102e;
    --hoppa-red: #c8102e;
    --hoppa-red-dark: #a00d24;
    --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 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Rezervasyon Başlığı */
.search-box-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    background: linear-gradient(90deg, #f8f9fa 0%, #fff 100%);
    border-left: 4px solid #c8102e;
    border-radius: 4px;
    padding: 10px 14px;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.passenger-input-group {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border: 2px solid #00a19c;
    border-radius: 8px;
    background: #d9f5f3;
}

.passenger-input-group .form-select,
.passenger-input-group .form-control {
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.passenger-input-group .passenger-selector {
    flex: 1 1 auto;
}

.passenger-input-group .passenger-manual {
    flex: 0 0 78px;
    border-left: 1px solid rgba(0, 161, 156, .55);
}

@media (max-width: 575.98px) {
    .passenger-input-group {
        width: 100%;
    }
}

.dts-target-pulse {
    animation: dtsTargetPulse 1.1s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes dtsTargetPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 32, 32, .9); }
    50% { box-shadow: 0 0 0 5px rgba(255, 32, 32, 0); }
}

@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/vehicle_doga.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 0 40px 0;
    position: relative;
}

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

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

.hero-section h3 {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 28px 0 30px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-section h2 {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .hero-section h3 {
        font-size: 1.25rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 22px 0 25px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .hero-section h2 {
        font-size: 1.75rem;
        line-height: 1.5;
    }
    
    .hero-section h3 {
        font-size: 1.1rem;
        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: #a00d24;
    color: white;
}

.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, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.18);
    border-bottom-color: #c8102e;
}

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

.destination-card .price {
    color: #c8102e;
    font-weight: bold;
    font-size: 0.88rem;
}

.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: var(--hoppa-dark);
}

.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;
    }
} 
/* DTS reservation layout adapted for Dalaman Lux Transfer */
@media (max-width: 991.98px) {
    .hero-reservation-column {
        margin-bottom: 30px;
    }

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

@media (min-width: 992px) {
    .hero-reservation-column {
        padding-right: 28px;
    }

    .hero-copy {
        padding-left: 42px;
    }
}

/* DLUX DTS quote form parity */
.quote-title-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 54px;
    margin-bottom: 8px;
    padding: 11px 20px;
    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.14rem;
    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: 48px;
        margin-bottom: 10px;
        padding: 10px 14px;
        gap: 8px;
        font-size: 0.95rem;
        border-left-width: 5px;
    }

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

@media (max-width: 420px) {
    .quote-title-bar {
        min-height: 40px;
        margin-bottom: 8px;
        padding: 8px 10px;
        gap: 6px;
        font-size: 0.82rem;
        border-left-width: 4px;
    }

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

.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: 56px;
    margin: 0 0 8px;
    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: 8px !important;
}

.search-box .quote-airport-buttons {
    position: relative;
    z-index: 3;
    gap: 12px;
    margin: 0 0 8px !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;
    }
}
