/*
===========================================
ADDATOURS CUSTOM LUXURY PREMIUM DESIGN
Color Scheme: #ecac4a (Gold) | #696969 (Dark Grey)
===========================================
*/

/* ============================================
   ROOT VARIABLES - LUXURY COLOR PALETTE
============================================ */
:root {
    --primary-gold: #ecac4a;
    --dark-grey: #696969;
    --light-grey: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #333333;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.15);
}

/* ============================================
   HEADER STYLING - PREMIUM LOOK
============================================ */
.header {
    background: var(--white) !important;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.header-white {
    background: var(--white) !important;
}

.header-logo img {
    max-height: 60px;
    width: auto !important;
}

/* Navigation Menu */
.main-menu > li > a {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px !important;
    transition: all 0.3s ease;
    position: relative;
}

.main-menu > li > a:hover {
    color: var(--primary-gold) !important;
}

.main-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.main-menu > li > a:hover::after {
    width: 60%;
}

/* Phone Numbers in Header */
.call-phone {
    color: var(--primary-gold) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 15px;
    background: rgba(236, 172, 74, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.call-phone:hover {
    background: var(--primary-gold);
    color: var(--white) !important;
}

/* ============================================
   BANNER & SEARCH FORM - LUXURY DESIGN
============================================ */
.banner-home2 {
    position: relative;
    min-height: 550px;
    margin-bottom: 80px !important;
}

.box-cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    z-index: 1;
}

.box-cover-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(105,105,105,0.3) 100%);
    z-index: 1;
}

.box-banner-info {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

.box-banner-info h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-top: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.box-banner-info p {
    font-size: 18px;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Search Form Container */
.box-search-ride {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 50px auto 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    padding: 0;
    overflow: hidden;
}

/* Search Tabs */
.nav-tabs-search {
    background: var(--light-grey);
    border: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.nav-tabs-search li {
    flex: 1;
}

.nav-tabs-search li a {
    display: block;
    padding: 20px 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    border: none;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 0;
}

.nav-tabs-search li a.active {
    background: var(--primary-gold);
    color: var(--white);
}

.nav-tabs-search li a:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* Search Form Fields */
.box-form-search {
    padding: 30px;
}

.search-item {
    background: var(--light-grey);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-item:hover {
    border-color: var(--primary-gold);
    background: var(--white);
}

.search-item label {
    color: var(--dark-grey);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 0;
}

.search-input:focus {
    outline: none;
}

.search-icon {
    margin-right: 15px;
}

.item-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    filter: invert(48%) sepia(13%) saturate(0%) hue-rotate(155deg) brightness(95%) contrast(88%);
}

/* Search Button */
.btn-search {
    background: var(--primary-gold) !important;
    color: var(--white) !important;
    border: none;
    padding: 18px 40px !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-search:hover {
    background: var(--dark-grey) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ============================================
   SECTIONS - PREMIUM SPACING & STYLING
============================================ */
.section {
    padding: 80px 0;
}

.pt-120 {
    padding-top: 120px !important;
}

.container-sub {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
}

h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

h3 {
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

h5 {
    font-size: 20px;
    color: var(--text-dark);
}

.heading-44-medium {
    font-size: 44px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Paragraphs */
p {
    color: var(--dark-grey);
    font-size: 16px;
    line-height: 1.8;
}

/* ============================================
   FEATURE CARDS - "WHY ADDATOURS" SECTION
============================================ */
.box-list-how ul {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.box-list-how li {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.cardWork {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
    height: 100%;
}

.cardWork:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-gold);
}

.cardImage {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(236, 172, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cardWork:hover .cardImage {
    background: var(--primary-gold);
    transform: scale(1.1);
}

.cardWork:hover .cardImage img {
    filter: brightness(0) invert(1);
}

.cardTitle h5 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cardWork:hover .cardTitle h5 {
    color: var(--primary-gold);
}

.cardDesc p {
    color: var(--dark-grey);
    font-size: 15px;
    line-height: 1.7;
}

/* Arrow between cards */
.has-arrow::after {
    content: '→';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--primary-gold);
    font-weight: bold;
}

.has-arrow:last-child::after {
    display: none;
}

/* ============================================
   BUTTONS - LUXURY STYLING
============================================ */
.btn {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
}

.btn-white {
    background: var(--white);
    border: 2px solid var(--white);
    color: var(--text-dark);
}

.btn-white:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
}

/* ============================================
   TESTIMONIALS / REVIEWS SECTION
============================================ */
.box-testimonials {
    background: var(--light-grey);
    padding: 60px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin: 15px;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-5px);
}

.testimonial-quote {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 16px;
}

.testimonial-date {
    color: var(--dark-grey);
    font-size: 14px;
}

/* ============================================
   FOOTER - PREMIUM DESIGN
============================================ */
.footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer p,
.footer a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.8;
}

.footer a:hover {
    color: var(--primary-gold);
}

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

/* ============================================
   VEHICLE CARDS - CAR HIRE & TRANSFERS
============================================ */
.vehicle-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.vehicle-card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-8px);
}

.vehicle-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.vehicle-info {
    padding: 25px;
}

.vehicle-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.vehicle-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.vehicle-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.vehicle-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-grey);
    font-size: 14px;
}

.vehicle-feature i {
    color: var(--primary-gold);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1200px) {
    .box-banner-info h2 {
        font-size: 38px;
    }
    
    .heading-44-medium {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .box-list-how ul {
        flex-direction: column;
    }
    
    .has-arrow::after {
        display: none;
    }
    
    .box-banner-info h2 {
        font-size: 32px;
    }
    
    .nav-tabs-search li a {
        padding: 15px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .banner-home2 {
        min-height: 450px;
    }
    
    .box-banner-info {
        padding-top: 50px;
    }
    
    .box-banner-info h2 {
        font-size: 28px;
    }
    
    .box-form-search {
        padding: 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .pt-120 {
        padding-top: 80px !important;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .box-banner-info h2 {
        font-size: 24px;
    }
    
    .box-banner-info p {
        font-size: 14px;
    }
    
    .nav-tabs-search li a {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .btn-search {
        padding: 15px 25px !important;
        font-size: 14px;
    }
}

/* ============================================
   UTILITY CLASSES
============================================ */
.text-gold {
    color: var(--primary-gold) !important;
}

.bg-gold {
    background-color: var(--primary-gold) !important;
}

.text-grey {
    color: var(--dark-grey) !important;
}

.bg-grey {
    background-color: var(--dark-grey) !important;
}

.bg-light-grey {
    background-color: var(--light-grey) !important;
}

.shadow-light {
    box-shadow: var(--shadow-light);
}

.shadow-medium {
    box-shadow: var(--shadow-medium);
}

.shadow-heavy {
    box-shadow: var(--shadow-heavy);
}

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

.fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

/* ============================================
   ADDITIONAL PREMIUM TOUCHES
============================================ */
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary-gold);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-gold);
    color: var(--white);
}

/* Focus states */
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-grey);
}