/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.log-img{
    max-width: 150px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 29px;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--bg-light);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 700px !important;
    min-height: 700px !important;
    max-height: 700px !important;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Tablet Hero Height */
@media (max-width: 1024px) and (min-width: 768px) {
    .hero {
        height: 700px !important;
        min-height: 700px !important;
        max-height: 700px !important;
    }
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 21px;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease 0.4s both;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.hero-features {
    display: flex;
    gap: 48px;
    animation: fadeInUp 1s ease 0.6s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.feature i {
    font-size: 24px;
    color: var(--accent-color);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 48px;
    line-height: 58px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.section-header p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.about-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat span {
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* About Image Responsive Sizes */
@media (max-width: 768px) {
    .about-image {
        max-width: 450px;
        margin: 0 auto;
    }
.log-img{
    max-width: 100px;
}
    .about-image img {
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .about-image img {
        width: 100%;
        object-fit: cover;
    }
    .log-img{
    max-width: 100px;
}
}



/* Fleet Section */
.fleet {
    padding: 100px 0;
    background: white;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.fleet-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.fleet-info {
    padding: 24px;
}

.fleet-info p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 26px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.fleet-info ul {
    list-style: none;
    margin-bottom: 16px;
}

.fleet-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.fleet-info li i {
    color: var(--primary-color);
}

.price {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

/* Routes Section */
.routes {
    padding: 100px 0;
    background: var(--bg-light);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.route-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.route-info {
    padding: 24px;
}

.route-info p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 26px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.route-details {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.route-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.route-details i {
    color: var(--primary-color);
}

.route-price {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

/* Booking Section */
.booking {
    padding: 100px 0;
    background: white;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 32px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}







/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 3px;
}

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

.contact-form {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 15px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 48px 0 16px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    cursor: pointer;
}

.footer-logo i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 16px;
    color: #bbb;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a i {
    color: var(--primary-color);
    transition: var(--transition);
}

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

.footer-contact a:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 16px;
    text-align: center;
    color: #bbb;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 21px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
        background: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 100px 0 32px;
        gap: 0;
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0px 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 32px;
        font-size: 22px;
        font-weight: 500;
        width: 100%;
        border-bottom: none;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: #000000;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(46deg) translate(-7px, -7px);
        background: #000000;
    }

    /* Close button styling */
    .nav-toggle.active {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1002;
        background: white;
        border-radius: 50%;
        padding: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-toggle.active .bar {
        background: #000000;
    }

    .hero-content h1 {
        font-size: 40px;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 21px;
        font-family: 'Poppins', sans-serif;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        font-size: 14px;
    }

    .hero-features {
        flex-direction: column;
        gap: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 21px;
        font-family: 'Poppins', sans-serif;
    }

    .fleet-grid,
    .routes-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        font-size: 24px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Small Mobile - 540px */
@media (max-width: 540px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* A
dditional Mobile Navbar Improvements */
@media (max-width: 768px) {

    /* Overlay for mobile menu */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-menu.active::before {
        opacity: 1;
    }

    /* Better mobile menu styling */
    .nav-menu {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }

    .nav-link:hover {
        background: var(--primary-color);
        color: white;
        transform: translateX(10px);
    }

    /* Mobile menu animation */
    .nav-menu {
        transform: translateX(-100%);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Close button enhancement */
    .nav-toggle.active {
        background: rgba(255, 107, 53, 0.1);
        border-radius: 50%;
        padding: 10px;
    }

    /* Prevent scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* Typography improvements - Desktop */
p,
.about-text p,
.feature-card p,
.fleet-info p,
.route-info p,
.contact-item p,
.footer-section p {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

h2,
.section-header h2 {
    font-size: 48px;
    line-height: 58px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.card_title {
    font-size: 24px;
    line-height: 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* H2 Typography - Desktop */
.about-text h3,
.feature-card h3,
.fleet-info h3,
.route-info h3,
.contact-item h3,
.footer-section h3 {
    font-size: 24px;
    line-height: 34px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Tablet Typography */
@media (max-width: 1024px) and (min-width: 769px) {

    h2,
    .section-header h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .about-text h3,
    .feature-card h3,
    .fleet-info h3,
    .route-info h3,
    .contact-item h3,
    .footer-section h3 {
        font-size: 18px;
        line-height: 28px;
    }

    p,
    .about-text p,
    .feature-card p,
    .fleet-info p,
    .route-info p,
    .contact-item p,
    .footer-section p {
        font-size: 16px;
        line-height: 24px;
    }

    .card_title {
        font-size: 20px;
        line-height: 28px;
    }
}

/* Mobile Typography */
@media (max-width: 768px) {

    p,
    .about-text p,
    .feature-card p,
    .fleet-info p,
    .route-info p,
    .contact-item p,
    .footer-section p {
        font-size: 14px;
        line-height: 21px;
    }

    h2,
    .section-header h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .about-text h3,
    .feature-card h3,
    .fleet-info h3,
    .route-info h3,
    .contact-item h3,
    .footer-section h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .card_title {
        font-size: 18px;
        line-height: 26px;
    }

    .route-info p {
        font-size: 14px;
        line-height: 21px;
    }

    .route-details span {
        font-size: 12px;
        line-height: 18px;
    }

    .route-price {
        font-size: 18px;
        line-height: 26px;
    }


    .fleet-info p {
        font-size: 14px;
        line-height: 21px;
    }

    .fleet-info li {
        font-size: 12px;
        line-height: 18px;
    }

    .price {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Better button styling */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Improved hero section typography */
.hero-content h1 {
    font-weight: 800;
    letter-spacing: -1px;
    font-family: 'Poppins', sans-serif;
}

.hero-content p {
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

/* All headings use Poppins */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

/* Navigation typography */
.nav-logo,
.nav-link {
    font-family: 'Poppins', sans-serif;
}

.nav-logo {
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
}

/* Form elements */
input,
select,
textarea,
button {
    font-family: 'Poppins', sans-serif;
}

/* Footer typography */
.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Tablet section spacing */
@media (max-width: 1024px) and (min-width: 769px) {

    .about,
    .why-choose,
    .fleet,
    .routes,
    .booking,
    .gallery,
    .contact {
        padding: 80px 0;
    }
}

/* Mobile section spacing */
@media (max-width: 768px) {

    .about,
    .why-choose,
    .fleet,
    .routes,
    .booking,
    .gallery,
    .contact {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    line-height: 1;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 10px;
        left: 10px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: center;
}

.service-item {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.service-link {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

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

.outstation-link {
    border-bottom: 3px solid #ff0000;
    padding: 10px 20px 8px 20px;
}

.outstation-link:hover {
    border-bottom-color: var(--primary-color);
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-title {
        font-size: 20px;
    }
}

/* Ro
ute Card Links */
.route-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.route-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.route-card-link:hover .route-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Blog 
Pages Styling */
.blog-content {
    padding: 100px 0;
    background: white;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .blog-meta {
        gap: 15px;
        margin-top: 15px;
    }
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 16px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
}

.blog-main {
    background: white;
}

.blog-section {
    margin-bottom: 40px;
}

.blog-section h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.blog-section p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.blog-list {
    list-style: none;
    margin: 20px 0;
}

.blog-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.blog-list i {
    color: var(--primary-color);
    font-size: 14px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.attraction-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.attraction-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.attraction-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.booking-widget {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.booking-widget h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.price-info {
    margin-bottom: 25px;
}

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

.price-info p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.booking-widget .btn {
    width: 100%;
    margin-bottom: 10px;
}

.trip-details {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.trip-details h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-light);
}

.detail-item i {
    color: var(--primary-color);
    font-size: 18px;
    width: 20px;
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 15px;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .booking-widget,
    .trip-details {
        padding: 20px;
    }
}

/* 
Blog Images */
.blog-image {
    margin: 30px 0;
    text-align: center;
}

.blog-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Responsive Design */

/* Large Desktop */
@media (min-width: 1200px) {
    .blog-content {
        padding: 120px 0;
    }

    .blog-grid {
        max-width: 1400px;
        margin: 0 auto;
    }

    .blog-section h3 {
        font-size: 28px;
        line-height: 36px;
    }

    .blog-section p {
        font-size: 18px;
        line-height: 28px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) and (min-width: 769px) {
    .blog-content {
        padding: 80px 0;
    }

    .blog-grid {
        grid-template-columns: 1.8fr 1fr;
        gap: 40px;
    }

    .blog-section h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .blog-section p {
        font-size: 16px;
        line-height: 24px;
    }

    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .booking-widget,
    .trip-details {
        padding: 25px;
    }
}

/* Tablet Portrait & Mobile Landscape */
@media (max-width: 768px) {
    .blog-image img {
        height: 250px;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .blog-header h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .blog-meta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .blog-meta span {
        font-size: 15px;
        background: rgba(255, 107, 53, 0.1);
        padding: 8px 12px;
        border-radius: 20px;
        border: 1px solid var(--primary-color);
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-main {
        order: 1;
    }

    .blog-sidebar {
        order: 2;
        position: static;
    }

    .blog-section {
        padding: 0 10px;
    }

    .blog-section h3 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .blog-section p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .blog-list {
        margin: 20px 0;
    }

    .blog-list li {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
    }

    .attraction-item {
        padding: 20px;
        border-radius: 12px;
    }

    .attraction-item h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .attraction-item p {
        font-size: 14px;
        line-height: 20px;
    }

    .booking-widget,
    .trip-details {
        padding: 25px;
        margin-bottom: 25px;
        border-radius: 15px;
    }

    .booking-widget h3,
    .trip-details h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .price-info .price {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .price-info p {
        font-size: 14px;
    }

    .detail-item {
        font-size: 15px;
        margin-bottom: 15px;
        padding: 5px 0;
    }

    .detail-item i {
        font-size: 18px;
        width: 25px;
    }

    .btn-large {
        padding: 15px 25px;
        font-size: 16px;
        border-radius: 25px;
        width: 100%;
        margin-bottom: 12px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .blog-image img {
        height: 200px;
        border-radius: 8px;
    }

    .blog-content {
        padding: 40px 0;
    }

    .blog-header {
        margin-bottom: 30px;
        padding: 0 5px;
    }

    .blog-header h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .blog-meta {
        gap: 10px;
        margin-top: 15px;
    }

    .blog-meta span {
        font-size: 13px;
        padding: 6px 10px;
    }

    .blog-section {
        padding: 0 5px;
    }

    .blog-section h3 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 12px;
    }

    .blog-section p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    .blog-list li {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 8px;
    }

    .blog-list li i {
        font-size: 12px;
    }

    .attractions-grid {
        gap: 15px;
        margin-top: 20px;
    }

    .attraction-item {
        padding: 16px;
        border-radius: 10px;
    }

    .attraction-item h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .attraction-item p {
        font-size: 13px;
        line-height: 18px;
    }

    .booking-widget,
    .trip-details {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .booking-widget h3,
    .trip-details h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .price-info .price {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .price-info p {
        font-size: 13px;
    }

    .detail-item {
        font-size: 14px;
        margin-bottom: 12px;
        padding: 3px 0;
    }

    .detail-item i {
        font-size: 16px;
        width: 22px;
    }

    .btn-large {
        padding: 14px 22px;
        font-size: 15px;
        border-radius: 22px;
        width: 100%;
        margin-bottom: 10px;
        font-weight: 600;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .blog-image img {
        height: 180px;
    }

    .blog-content {
        padding: 30px 0;
    }

    .blog-header h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .blog-meta span {
        font-size: 12px;
        padding: 5px 8px;
    }

    .blog-section h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .blog-section p {
        font-size: 13px;
        line-height: 20px;
    }

    .blog-list li {
        font-size: 13px;
    }

    .attraction-item {
        padding: 14px;
    }

    .attraction-item h4 {
        font-size: 15px;
    }

    .attraction-item p {
        font-size: 12px;
    }

    .booking-widget,
    .trip-details {
        padding: 18px;
    }

    .booking-widget h3,
    .trip-details h3 {
        font-size: 16px;
    }

    .price-info .price {
        font-size: 24px;
    }

    .detail-item {
        font-size: 13px;
    }

    .btn-large {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* B
log Hero Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 18px;
    }

    .hero-buttons .btn {
        width: 180px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Container Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* En
hanced Blog Hero Responsive */
@media (max-width: 1024px) {
    .hero {

        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 50px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .hero {

        min-height: 450px;
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .hero-content p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }

    .hero-buttons {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        min-width: 140px;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .hero {

        min-height: 400px;
        padding: 0 10px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 200px;
        padding: 14px 25px;
        font-size: 15px;
        text-align: center;
    }
}

/* Blog Specific Enhancements */
.blog-image {
    margin: 30px 0;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.blog-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

.blog-image img:hover {
    transform: scale(1.05);
}

/* Improved Touch Targets for Mobile */
@media (max-width: 768px) {
    .nav-link {
        padding: 15px 20px;
        font-size: 28px;
    }

    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Smooth Scrolling Enhancement */
html {
    scroll-behavior: smooth;
}

/* Loading Animation for Images */
.blog-image img {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: center;
}

.service-item {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

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

.service-link {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

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

.outstation-link {
    border-bottom: 3px solid #ff0000;
    padding: 10px 20px 8px 20px;
}

.outstation-link:hover {
    border-bottom-color: var(--primary-color);
}

/* Services Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-item {
        padding: 30px 15px;
    }

    .service-icon {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
   .nav-link {
        padding: 15px 20px;
        font-size: 20px;
    }
    .service-title {
        font-size: 18px;
    }
}

/* Enhan
ced Blog Responsive Design for Better Mobile Experience */

/* Mobile Portrait - Enhanced */
@media (max-width: 480px) {
    .blog-content {
        padding: 40px 0;
    }

    .blog-header {
        margin-bottom: 30px;
        padding: 0 5px;
    }

    .blog-header h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 15px;
    }

    .blog-meta {
        gap: 8px;
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }

    .blog-meta span {
        font-size: 14px;
        padding: 6px 10px;
        width: fit-content;
    }

    .blog-section {
        padding: 0 5px;
        margin-bottom: 30px;
    }

    .blog-section h3 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 12px;
    }

    .blog-section p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    .blog-list li {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 8px;
    }

    .blog-list li i {
        font-size: 12px;
        min-width: 16px;
    }

    .attractions-grid {
        gap: 15px;
        margin-top: 20px;
    }

    .attraction-item {
        padding: 16px;
        border-radius: 10px;
    }

    .attraction-item h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .attraction-item p {
        font-size: 13px;
        line-height: 18px;
    }

    .booking-widget,
    .trip-details {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .booking-widget h3,
    .trip-details h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .price-info .price {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .price-info p {
        font-size: 13px;
    }

    .detail-item {
        font-size: 14px;
        margin-bottom: 12px;
        padding: 3px 0;
    }

    .detail-item i {
        font-size: 16px;
        width: 22px;
        min-width: 22px;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 20px;
        width: 100%;
        margin-bottom: 10px;
        font-weight: 600;
    }

    /* Blog Images Mobile Optimization */
    .blog-image {
        margin: 20px 0;
    }

    .blog-image img {
        height: 200px;
        border-radius: 8px;
    }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
    .blog-content {
        padding: 30px 0;
    }

    .blog-header h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .blog-meta span {
        font-size: 12px;
        padding: 5px 8px;
    }

    .blog-section h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .blog-section p {
        font-size: 13px;
        line-height: 20px;
    }

    .blog-list li {
        font-size: 13px;
    }

    .attraction-item {
        padding: 14px;
    }

    .attraction-item h4 {
        font-size: 15px;
    }

    .attraction-item p {
        font-size: 12px;
    }

    .booking-widget,
    .trip-details {
        padding: 18px;
    }

    .booking-widget h3,
    .trip-details h3 {
        font-size: 16px;
    }

    .price-info .price {
        font-size: 22px;
    }

    .detail-item {
        font-size: 13px;
    }

    .btn-large {
        padding: 10px 16px;
        font-size: 13px;
    }

    .blog-image img {
        height: 180px;
    }
}

/* Blog Container Responsive Padding */
@media (max-width: 768px) {
    .blog-content .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .blog-content .container {
        padding: 0 10px;
    }
}

/* Blog Hero Section Mobile Optimization */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        min-width: 120px;
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 350px;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 180px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

* Truecaller Floating Button */ .truecaller-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.truecaller-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007BFF 0%, #0056D3 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    animation: truecallerPulse 2s infinite;
}

.truecaller-btn:hover {
    background: linear-gradient(135deg, #0056D3 0%, #003D99 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.6);
    color: white;
    text-decoration: none;
}

.truecaller-btn i {
    line-height: 1;
}

@keyframes truecallerPulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.8), 0 0 0 10px rgba(0, 123, 255, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    }
}

/* Truecaller Button Responsive */
@media (max-width: 768px) {
    .truecaller-float {
        bottom: 15px;
        left: 15px;
    }

    .truecaller-btn {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .truecaller-float {
        bottom: 10px;
        left: 10px;
    }

    .truecaller-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Truecaller Floating Button - Enhanced */
.truecaller-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.truecaller-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007BFF 0%, #0056D3 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    animation: truecallerPulse 2s infinite;
}

.truecaller-btn:hover {
    background: linear-gradient(135deg, #0056D3 0%, #003D99 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.6);
    color: white;
    text-decoration: none;
}

.truecaller-btn i {
    line-height: 1;
    animation: phoneRing 1.5s ease-in-out infinite;
}

.truecaller-btn:hover i {
    animation: phoneRingFast 0.8s ease-in-out infinite;
}

@keyframes truecallerPulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.8), 0 0 0 10px rgba(0, 123, 255, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    }
}

@keyframes phoneRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

@keyframes phoneRingFast {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-15deg) scale(1.1);
    }

    50% {
        transform: rotate(0deg) scale(1.2);
    }

    75% {
        transform: rotate(15deg) scale(1.1);
    }
}

/* Truecaller Button Responsive */
@media (max-width: 768px) {
    .truecaller-float {
        bottom: 15px;
        left: 15px;
    }

    .truecaller-btn {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .truecaller-float {
        bottom: 10px;
        left: 10px;
    }

    .truecaller-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* C
lean Truecaller Button - Right Side */
.truecaller-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
}

/* Clean Truecaller Responsive - Right Side */
@media (max-width: 768px) {
    .truecaller-float {
        bottom: 15px !important;
        right: 15px !important;
    }
}

@media (max-width: 480px) {
    .truecaller-float {
        bottom: 10px !important;
        right: 10px !important;
    }
}

/* Both Buttons on Left Side - Final Positioning */
.truecaller-float {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 1000 !important;
}

.whatsapp-float {
    position: fixed !important;
    bottom: 90px !important;
    left: 20px !important;
    z-index: 1000 !important;
}

/* Responsive positioning for both buttons on left */
@media (max-width: 768px) {
    .truecaller-float {
        bottom: 15px !important;
        left: 15px !important;
    }

    .whatsapp-float {
        bottom: 80px !important;
        left: 15px !important;
    }
}

@media (max-width: 480px) {
    .truecaller-float {
        bottom: 10px !important;
        left: 10px !important;
    }

    .whatsapp-float {
        bottom: 70px !important;
        left: 10px !important;
    }
}

/* Extr
a responsive for 375px screens - Smaller icons */
@media (max-width: 375px) {
    .truecaller-float {
        bottom: 8px !important;
        left: 8px !important;
    }

    .whatsapp-float {
        bottom: 60px !important;
        left: 8px !important;
    }

    .truecaller-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 18px !important;
    }

    .whatsapp-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 18px !important;
    }
}

/* Remove form-group margin-bottom on mobile */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 0 !important;
    }
}

/* Force
 remove 100vh from hero section */
.hero {
    height: auto !important;
    min-height: 600px !important;
}

/* Ensure no 100vh on mobile */
@media (max-width: 768px) {
    .hero {
        height: auto !important;
        min-height: 400px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto !important;
        min-height: 350px !important;
    }
}

/* CRITICAL: Remove 100vh height from hero */
.hero,
section.hero,
.hero-section {
    height: auto !important;
    max-height: none !important;
}

/* Specific override for any 100vh */
*[class*="hero"] {
    height: auto !important;
}

/* Force hero height on all screen sizes */
@media screen {
    .hero {
        height: auto !important;
        min-height: 600px !important;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto !important;
        min-height: 400px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto !important;
        min-height: 350px !important;
    }
}

/* H
ero section fixed height - 600px only */
.hero {
    height: 700px !important;
    min-height: 700px !important;
    max-height: 700px !important;
}

/* All screen sizes - 700px height */
@media screen {
    .hero {
        height: 700px !important;
        min-height: 700px !important;
        max-height: 700px !important;
    }
}

/* Override any other hero height rules */
section.hero,
.hero-section {
    height: 700px !important;
    min-height: 700px !important;
    max-height: 700px !important;
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Contact item hover effect */
.contact-item {
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
}

.contact-item:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.contact-item:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-item i {
    transition: all 0.3s ease;
}

/* Specific hover effects for different contact types */
.contact-item:hover .contact-link {
    color: var(--primary-color);
}

/* Add underline animation on hover */
.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

/* Mobile responsive for contact links */
@media (max-width: 768px) {
    .contact-item {
        padding: 15px;
        margin-bottom: 10px;
    }

    .contact-link:hover {
        transform: translateX(3px);
    }
}

/* Blog Cards - 2 per row on 768px screens */
@media (max-width: 768px) and (min-width: 481px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }

    .attraction-item {
        padding: 18px !important;
        font-size: 14px !important;
    }

    .attraction-item h4 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    .attraction-item p {
        font-size: 13px !important;
        line-height: 18px !important;
    }
}

/* Enh
anced gaps for blog cards on all screen sizes */

/* Desktop - Large gap */
@media (min-width: 1024px) {
    .attractions-grid {
        gap: 50px !important;
    }
}

/* Tablet landscape - Medium gap */
@media (max-width: 1023px) and (min-width: 769px) {
    .attractions-grid {
        gap: 30px !important;
    }
}

/* Mobile landscape - Smaller gap but still visible */
@media (max-width: 480px) {
    .attractions-grid {
        gap: 20px !important;
    }
}

/* Very small mobile - Minimal gap */
@media (max-width: 375px) {
    .attractions-grid {
        gap: 15px !important;
    }
}

/* H
ide floating buttons when mobile menu is open */
@media (max-width: 768px) {

    .nav-menu.active~.whatsapp-float,
    .nav-menu.active~.truecaller-float {
        display: none !important;
    }

    /* Alternative method - hide when body has menu-open class */
    body.menu-open .whatsapp-float,
    body.menu-open .truecaller-float {
        display: none !important;
    }

    /* Hide floating buttons when nav-toggle is active */
    .nav-toggle.active~.whatsapp-float,
    .nav-toggle.active~.truecaller-float {
        display: none !important;
    }

    /* Increase navbar z-index to be above floating buttons */
    .nav-menu {
        z-index: 9999 !important;
    }

    .nav-toggle.active {
        z-index: 10000 !important;
    }
}

/* Hide WhatsApp and Truecaller buttons when navbar is open */
body:has(.nav-menu.active) .whatsapp-float,
body:has(.nav-menu.active) .truecaller-float {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Alternative method using JavaScript class */
.menu-open .whatsapp-float,
.menu-open .truecaller-float {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Force hide when nav is active */
.nav-menu.active+.whatsapp-float,
.nav-menu.active+.truecaller-float,
.nav-toggle.active~.whatsapp-float,
.nav-toggle.active~.truecaller-float {
    visibility: hidden !important;
    opacity: 0 !important;
    display: none !important;
}
/* Autofill Background Transparent - Fix for Chrome/Safari */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: var(--text-color) !important;
    background-color: transparent !important;
    background-image: none !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* Firefox autofill styling */
input:-moz-autofill,
select:-moz-autofill,
textarea:-moz-autofill {
    background-color: transparent !important;
    background-image: none !important;
}

/* Edge/IE autofill styling */
input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    background-color: transparent !important;
    background-image: none !important;
}/* Autof
ill Background White - Fix for Chrome/Safari */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: var(--text-color) !important;
    background-color: white !important;
    background-image: none !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* Firefox autofill styling */
input:-moz-autofill,
select:-moz-autofill,
textarea:-moz-autofill {
    background-color: white !important;
    background-image: none !important;
}

/* Edge/IE autofill styling */
input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    background-color: white !important;
    background-image: none !important;
}

/* Force white background for all form inputs */
.form-group input,
.form-group select,
.form-group textarea {
    background-color: white !important;
}

/* Placeholder styling with white background */
input::placeholder,
textarea::placeholder {
    color: #999 !important;
    background-color: white !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999 !important;
    background-color: white !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #999 !important;
    background-color: white !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999 !important;
    background-color: white !important;
}