/* Custom CSS for Asha Kiran Tours and Travels */
:root {
    --primary-color: #E11D48; /* Vivid Ruby Red */
    --primary-hover: #BE123C;
    --secondary-color: #09090B; /* Carbon Black */
    --text-color: #171717;
    --text-light: #525252;
    --bg-light: #F4F4F5;
    --bg-white: #FFFFFF;
    --transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bounce curve */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    color: var(--text-color);
    background: linear-gradient(-45deg, #f8fafc, #f1f5f9, #e2e8f0, #f8fafc);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

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

.center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-whatsapp {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff !important;
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff !important;
}

.btn-secondary:hover {
    background-color: #152C69;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff !important;
}

.btn-whatsapp:hover {
    background-color: #1EBE57;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Section Title */
.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.section-title.center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    padding: 10px 0;
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 1;
}

.navbar:not(.scrolled) .logo-text h2,
.navbar:not(.scrolled) .logo-text p,
.navbar:not(.scrolled) .nav-links a:not(.btn-primary) {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
    transition: var(--transition);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover {
    transform: translateY(-3px);
    color: var(--primary-color);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}
.navbar:not(.scrolled) .menu-toggle {
    color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    padding-top: 100px;
    box-sizing: border-box;
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.4) 100%);
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: #e5e7eb;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.trust-badges i {
    color: var(--primary-color);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-box p {
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.about-image {
    position: relative;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 10px;
}

.image-wrapper img {
    width: 100%;
    border-radius: 15px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-wrapper:hover img {
    transform: scale(1.08);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
    border: 5px solid #fff;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    text-align: center;
    padding: 40px 20px;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.fleet-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fleet-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fleet-card:hover .fleet-img img {
    transform: scale(1.1) translateX(5px);
}

.fleet-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.features {
    margin-bottom: 25px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 10px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features i {
    color: var(--primary-color);
    width: 20px;
}

/* Why Us & Areas */
.dual-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tag {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.route-card {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), #2A4B9F);
    color: #fff;
    border: none;
    border-radius: 20px;
}

.route-points {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.route-points i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 40px 30px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: serif;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(245, 158, 11, 0.15);
    line-height: 1;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.review {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Booking & Contact Section */
.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.booking-form-container {
    padding: 40px;
    box-sizing: border-box;
    width: 100%;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.form-header p {
    color: var(--text-light);
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form .form-row {
    display: flex;
    gap: 20px;
}

.booking-form .half {
    flex: 1;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    padding: 14px 18px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.contact-map-container {
    display: flex;
    flex-direction: column;
}

.contact-header {
    margin-bottom: 30px;
}

.contact-header h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.contact-header p {
    color: var(--text-light);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-item {
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item.address-card {
    grid-column: 1 / -1;
}

.c-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.c-text span {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3px;
}

.c-text a, .c-text p {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.c-text a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.footer-logo p {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-about p {
    color: #cbd5e1;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Floating Elements */
.float-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: var(--shadow-medium);
    z-index: 100;
    transition: var(--transition);
}

.float-wa {
    right: 30px;
    background-color: #25D366;
}

.float-wa:hover {
    background-color: #1EBE57;
    transform: scale(1.1);
}

.float-call {
    right: 100px;
    background-color: var(--secondary-color);
}

.float-call:hover {
    background-color: #152C69;
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.scrolled-in .slide-in-left,
.scrolled-in .slide-in-right {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .about-container, .dual-section, .booking-grid, .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-item.address-card {
        grid-column: auto;
    }
    .experience-badge {
        left: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll !important;
        padding-top: 110px;
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        padding-bottom: 50px;
    }
    .hero-content h1 { font-size: 1.9rem; }
    .glass-card { padding: 20px 15px; }
    .booking-form-container { padding: 25px 15px; }
    .contact-cards-grid { grid-template-columns: 1fr; gap: 15px; }
    .fleet-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .form-header h2, .contact-header h2 { font-size: 1.6rem; }
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        box-shadow: -10px 0 20px rgba(0,0,0,0.05);
        transition: var(--transition);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a:not(.btn-primary) {
        color: var(--secondary-color) !important;
        text-shadow: none !important;
    }
    .hero-content h1 { font-size: 2.2rem; }
    .booking-form .form-row { flex-direction: column; gap: 15px; }
    .footer-grid { grid-template-columns: 1fr; }
    
    /* Float buttons adjustments so they stay small & don't block form inputs */
    .float-wa { right: 12px; bottom: 15px; }
    .float-call { right: 12px; bottom: 65px; }
    .scroll-top { right: 12px; bottom: 115px; }
    .float-btn, .scroll-top { width: 44px; height: 44px; font-size: 1.1rem; opacity: 0.9; }
}

@media (max-width: 480px) {
    .hero { padding-top: 105px; padding-bottom: 40px; }
    .hero-content h1 { font-size: 1.65rem; margin-bottom: 12px; }
    .hero-content p { font-size: 1rem; margin-bottom: 25px; }
    .glass-card { padding: 15px 12px; }
    .booking-form-container { padding: 18px 12px; }
    .form-header h2, .contact-header h2 { font-size: 1.35rem; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .hero-btns a { width: 100%; margin: 0; }
    .trust-badges { flex-direction: column; gap: 10px; }
    .features-list { grid-template-columns: 1fr; }
    .stats { flex-direction: column; gap: 20px; text-align: center; }
    .contact-item { padding: 15px 12px; gap: 12px; }
    .c-text a, .c-text p { font-size: 0.88rem; }
}

/* Scroll Animations */
.about-container, .dual-section, .services-grid, .fleet-grid, .testimonials-grid {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scrolled-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

