/* OK India Car Rentals - Global Styles */
:root {
    --primary: #f59e0b; /* amber-500 */
    --primary-dark: #d97706; /* amber-600 */
    --neutral-900: #171717;
    --neutral-800: #262626;
    --neutral-700: #404040;
    --neutral-600: #525252;
    --neutral-500: #737373;
    --neutral-400: #a3a3a3;
    --neutral-100: #f5f5f5;
    --neutral-50: #fafafa;
    --white: #ffffff;
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--neutral-900);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.font-black { font-weight: 800; }
.font-bold { font-weight: 700; }
.tracking-widest { letter-spacing: 0.1em; }

/* Icons sizing & Alignment */
.fas, .fab, .far {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    width: 1.25em; /* Standard fixed width for alignment */
    text-align: center;
}

.logo-icon .fas {
    font-size: 1.5rem;
    width: auto; /* Logo icon doesn't need fixed width */
}

.floating-btn i {
    width: auto;
    font-size: 24px;
}

.fbtn-phone .fas {
    font-size: 1.4rem;
}

.fbtn-whatsapp .fab {
    font-size: 1.6rem;
}

.btn i {
    width: auto;
    margin-right: 8px;
}

.tourist-link i {
    width: auto;
    margin-left: 8px;
}

.blog-link i {
    width: auto;
    margin-left: 8px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 32px 0;
    transition: var(--transition);
    color: var(--white);
}

@media (max-width: 768px) {
    nav {
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(8px);
    }
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    color: var(--neutral-900);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background: var(--primary);
    padding: 10px;
    border-radius: 12px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -1.5px;
    line-height: 1;
}

.logo-sub {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

nav.scrolled .nav-link {
    color: var(--neutral-800);
}

.nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    background: var(--neutral-900);
    padding: 90px 0 20px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: inline-block;
}

.hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero h1 span {
    color: var(--primary);
    display: inline;
}

.hero-description {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    max-width: 500px;
    font-weight: 400;
}

.hero-phone-badge {
    background: rgba(245, 158, 11, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    padding: 12px 24px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.hero-phone-badge:hover {
    background: rgba(245, 158, 11, 0.25);
    border-color: var(--white);
    color: var(--white);
}

.hero-phone-badge i {
    color: var(--primary);
}

.highlight-phone {
    color: var(--white);
    background: var(--primary);
    font-weight: 800;
    font-size: 1.4em;
    padding: 14px 28px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    animation: pulse-glow 4s infinite ease-in-out;
}

.highlight-phone:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.35);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(245, 158, 11, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-content > * {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-bounce-slow {
    animation: bounce 3s infinite ease-in-out;
}

.hero-content h1 { animation-delay: 0.2s; }
.hero-content p { animation-delay: 0.4s; }
.hero-content .highlight-phone { animation-delay: 0.5s; }
.hero-content div { animation-delay: 0.6s; }

.section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    display: block;
}

.tourist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tourist-card {
    position: relative;
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tourist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.tourist-card:hover img {
    transform: scale(1.15) rotate(2deg);
}

.tourist-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
    transition: var(--transition);
}

.tourist-card:hover .tourist-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
}

.tourist-overlay h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.tourist-overlay p {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 20px;
}

.tourist-link {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.tourist-card:hover .tourist-link {
    opacity: 1;
    transform: translateY(0);
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.car-card {
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.car-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}

.card-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.car-card:hover .card-img img {
    transform: scale(1.1);
}

.card-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    left: auto;
    background: var(--white);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--neutral-900);
}

.card-content {
    padding: 40px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.card-title h4 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.card-subtitle {
    font-size: 13px;
    color: var(--neutral-500);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card-price {
    text-align: right;
}

.price-value {
    color: var(--primary);
    font-size: 28px;
    font-weight: 800;
}

.price-label {
    font-size: 11px;
    color: var(--neutral-400);
    text-transform: uppercase;
    font-weight: 800;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn {
    padding: 18px;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline {
    border: 2px solid var(--neutral-900);
    color: var(--neutral-900);
}

.btn-outline:hover {
    background: var(--neutral-900);
    color: var(--white);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.blog-img {
    height: 280px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 40px;
}

.blog-tag {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.blog-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.blog-excerpt {
    color: var(--neutral-600);
    margin-bottom: 24px;
    font-size: 16px;
}

.blog-link {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--primary);
    width: fit-content;
    padding-bottom: 4px;
}

.blog-link:hover {
    gap: 12px;
}

/* Fixed Buttons */
.fixed-btns {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: bounce 3s infinite ease-in-out;
}

.floating-btn:nth-child(2) {
    animation-delay: 1.5s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.fbtn-whatsapp { background: #25D366; }
.fbtn-phone { background: var(--primary); color: white; }

/* FAQ Styles */
.faq-item { 
    background: white; 
    border-radius: 24px; 
    border: 1px solid #eee; 
    margin-bottom: 16px; 
    overflow: hidden; 
    transition: var(--transition);
}
.faq-btn { 
    width: 100%; 
    border: none; 
    background: none; 
    padding: 24px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    text-align: left; 
}
.faq-btn h4 { 
    font-weight: 900; 
    text-transform: uppercase; 
    font-style: italic; 
    font-size: 18px; 
}
.faq-answer { 
    display: none; 
    padding: 0 24px 24px; 
    color: #525252; 
    line-height: 1.6;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active i { transform: rotate(90deg); color: var(--primary); }
.faq-item.active { border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* Responsive */
.menu-btn-trigger {
    display: none;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    .nav-links { display: none; }
    .menu-btn-trigger { 
        display: block; 
        font-size: 28px;
        padding: 12px;
        margin-right: -8px;
    }

    .menu-btn-trigger i {
        font-size: inherit;
    }
    
    #mobile-menu.active {
        display: flex !important;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
        max-width: 100% !important;
    }

    nav { padding: 12px 0; }
    nav.scrolled { padding: 10px 0; }
    .hero { padding-top: 80px; padding-bottom: 15px; min-height: auto; }
    .hero h1 { font-size: 30px; margin-bottom: 12px; line-height: 1.1; }
    .hero-description { font-size: 15px; margin-bottom: 20px; }
    .hero-content { padding: 0 5px; }
    
    .hero-content div[style*="display: flex"] {
        flex-direction: column;
        align-items: center;
        gap: 12px !important;
        justify-content: center;
    }
    
    .hero-content .btn {
        padding: 14px 24px !important;
        font-size: 14px !important;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .logo-main {
        font-size: 20px;
    }

    .car-card, .tourist-card, .blog-card {
        border-radius: 24px !important;
    }

    .card-content, .blog-content, .tourist-overlay {
        padding: 20px !important;
    }

    .card-img, .blog-img {
        height: 200px !important;
    }

    .fleet-grid, .tourist-grid, .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fixed-btns {
        bottom: 16px;
        right: 16px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .hero-phone-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
}
