@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0f0f0f;
    --light-bg: #fafaf9;
    --accent-gold: #d4a574;
    --accent-dark: #2d2d2d;
    --text-primary: #1a1a1a;
    --text-light: #ffffff;
    --border-light: #e7e5e4;
    --border-dark: #2d2d2d;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(45, 45, 45, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}
a{
    text-decoration: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.8px;
}

h1 { font-size: 3.8rem; line-height: 1.1; }
h2 { font-size: 2.8rem; margin-bottom: 10px; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.2rem;
    font-weight: 600; }

p { line-height: 1.7; color: #666; }

.text-gold { color: var(--accent-gold); }
.text-light { color: var(--text-light); }

/* Navbar */
.navbar-premium {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(250, 250, 249, 0.95);
    transition: all 0.3s ease;
}

.navbar-premium.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.nav-link-premium {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0 15px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--text-primary);
    color: var(--text-light);
    border: none;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-nav:hover {
    background: var(--accent-gold);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.2);
}

/* Hero Section */
/*.hero {*/
/*    padding-top: 100px;*/
/*    padding-bottom: 40px;*/
/*    min-height: 85vh;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    background: linear-gradient(135deg, var(--light-bg) 0%, #f5f3f0 100%);*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

.hero {
    padding-top: 100px;
    padding-bottom: 40px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url("../images/street-night-with-traffic.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero h1,
.hero-subtitle {
    color: #fff;
}

/*.hero::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    right: -100px;*/
/*    top: -100px;*/
/*    width: 600px;*/
/*    height: 600px;*/
/*    background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);*/
/*    border-radius: 50%;*/
/*    animation: float 6s ease-in-out infinite;*/
/*}*/

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 15px;
    font-weight: 800;
}

.hero .accent-word {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    max-width: 589px;
    line-height: 1.7;
    font-weight: 400;
}

.btn-primary-premium {
    background: var(--accent-gold);
    color: var(--text-primary);
    border: 2px solid var(--accent-gold);
   padding: 10px 35px;
    border-radius: 2px;
    font-weight: 600;
    line-height: 12px;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.4s;
    display: inline-block;
    margin-right: 0;
    margin-bottom: 12px;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.25);
}

.btn-secondary-premium {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    padding: 12px 35px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.4s;
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 12px;
    text-decoration: none;
    cursor: pointer;
}

.btn-secondary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Form Card */
.form-card {
    background: var(--text-light);
    padding: 25px;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.form-group-premium {
    margin-bottom: 14px;
}

.form-group-premium label {
    display: block;
    font-weight: 600;
    font-size: 0.6rem;
    color: var(--text-primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-premium {
    width: 100%;
    padding: 9px 10px;
    border: 1px solid var(--border-light);
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    transition: all 0.3s;
    background: var(--light-bg);
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--text-light);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

/* Section */
.section {
    padding: 50px 0;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--text-light);
}

.section-light {
    background: var(--light-bg);
    color: var(--text-primary);
}

.section-title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    margin: auto;
    right: 0;
    width: 65px;
    height: 3px;
    background: var(--accent-gold);
}

.section-description {
    font-size: 1rem;
    color: #999;
    margin-bottom: 40px;
}

/* Feature Cards */
.feature-box {
    padding: 20px;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.feature-box p{
    margin-bottom:0;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.6s;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box-light {
    background: var(--text-light);
    border-color: var(--border-light);
}

.feature-box-light:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 50px rgba(212, 165, 116, 0.12);
    transform: translateY(-6px);
}

.feature-box-dark {
    background: #1a1a1a;
    border-color: var(--border-dark);
}

.feature-box-dark:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 50px rgba(212, 165, 116, 0.2);
    transform: translateY(-6px);
}

.feature-icon {
    font-size: 2.2rem;
    line-height: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.feature-box h4 {
    margin-bottom: 10px;
    color: inherit;
}

.feature-box p {
    color: inherit;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Fleet Section */
.fleet-item {
    text-align: center;
    padding: 5px;
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, transparent 100%);
    border-radius: 2px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    position: relative;
}

.fleet-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 15px;
    background: #ffffff1a;
    transition: transform 0.4s;
}
.fleet-title{
    margin:0;
     text-align: left;
}

.fleet-sub{
       color: #d4a574;
    font-size: 12px;
    margin: 0px;
    text-align: left;
}
.fleet-item .btn-primary-premium{
    margin: 0;
    height: max-content;
}
/*.fleet-item:hover .fleet-image {*/
/*    transform: scale(1.05);*/
/*}*/

.fleet-specs {
       display: flex;
    justify-content: center;
    gap: 20px;
    /* margin-top: 12px; */
    font-size: 0.85rem;
    opacity: 0.7;
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

/* Blog Section */
.blog-card {
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-light);
    background: var(--text-light);
    height: 100%;
}

.blog-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.15);
    transform: translateY(-10px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s;
}

.blog-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--accent-gold);
}

.blog-excerpt {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.blog-read-more {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.blog-read-more:hover {
    gap: 12px;
}

/* Testimonials */
.testimonial {
    padding: 30px;
    border: 1px solid var(--border-light);
    border-radius: 2px;
    background: var(--text-light);
    transition: all 0.4s;
}

.testimonial:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 50px rgba(212, 165, 116, 0.12);
}

.stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.testimonial-slider{
    margin-top:40px;
}

.testimonial-slider .testimonial{
    margin:0 15px;
}

.slick-custom-arrow{
   position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #d4af37;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-prev {
    left: -7px;
}
.slick-next{
    right:-7px;
}

.slick-custom-arrow:hover{
    background:#000;
    color:#fff;
}
.slick-prev:before, .slick-next:before{
    content: none;
}

/* FAQ */
.accordion-premium {
    border: none;
    background: none;
}

.accordion-item-premium {
    border: 1px solid var(--border-light);
    border-radius: 2px;
    margin-bottom: 12px;
    background: var(--text-light);
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item-premium:hover {
    border-color: var(--accent-gold);
}

.accordion-button-premium {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 16px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: color 0.3s;
}

.accordion-button-premium:hover {
    color: var(--accent-gold);
}

.accordion-button-premium.active {
    color: var(--accent-gold);
}

.accordion-content {
    padding: 0 16px 16px;
    color: #666;
    line-height: 1.7;
    display: none;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease;
}

.accordion-content.show {
    display: block;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.footer-info {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-info i {
    color: var(--accent-gold);
    margin-right: 10px;
    width: 18px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.social-link:hover {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: var(--text-primary);
}

.footer-divider {
    border-top: 1px solid #333;
    margin-top: 35px;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}
.service-link{
display:inline-flex;
align-items:center;
gap:8px;
margin-top:10px;
font-weight:600;
color:#c8a45a;
text-decoration:none;
transition:0.3s;
}

.service-link i{
transition:0.3s;
}

.service-link:hover{
color:#000;
}

.service-link:hover i{
transform:translateX(6px);
}
/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .section { padding: 50px 0; }
    .hero { padding-top: 100px; padding-bottom: 40px; }
    .form-card { padding: 25px; }
    .feature-box { padding: 25px; }
    .nav-link-premium { margin: 0 8px; }
    .fleet-specs { gap: 15px; }
    .blog-content { padding: 20px; }
    .testimonial { padding: 20px; }
}