/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* ONE uniform font format for the entire website */
    font-family: 'Noto Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    padding-top: 80px; /* Space for fixed navbar */
}

/* --- Typography & Brand Colors --- */
.header-title {
    font-size: 48px;
    font-weight: bold;
}

.title {
    font-size: 36px;
    color: #111;
    margin-top: 5px;
    margin-bottom: 3%;
    font-weight: 800;
}

.subtitle {
    color: #f9faf9;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.yellow {
    background-color: #ffd43a;
    color: #22272e;
}

.green {
    background-color: #009688;
    color: #ffffff;
} 

/* --- Navbar Styles --- */
.navbar {
    background: #0d6efd;
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0; /* Prevents Bootstrap from stretching navbar */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    text-align: right;
    font-weight: bold;
    text-decoration: none;
    color: #f9f8f8;
}

.logo span {
    color: #fbfffd; /* Brand Green */
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0; /* Prevents Bootstrap from adding bottom spacing */
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #fcfffd;
}

.menu-btn {
    display: none; /* Hidden on desktop */
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Service Cards --- */
.card {
    border: none;
}

.card:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

.card-service {
    background-color: #22272e;
    color: #ffffff;
    cursor: pointer;
}

.card-service:hover {
    background-color: #ffd43a;
    color: #22272e;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
}

/* --- Portfolio Section --- */
.portfolio-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
}

.image-column {
    flex: 1;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 9px;
    display: block;
}

.portfolio-description {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

/* --- Tariff Section --- */
.tariff-section {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.tariff-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.card1 {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.image-area {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-area img {
    max-width: 180%;
    max-height: 180%;
    object-fit: contain;
}

.details-area {
    background: #f1f8fc; 
    padding: 25px;
    text-align: center;
    flex-grow: 1;
}

.car-names {
    color: #27ae60;
    font-weight: 600;
    font-size: 14px;
}

.details-area h3 {
    font-size: 24px;
    margin: 10px 0;
    color: #222;
}

.price-box {
    background: #27ae60;
    color: #fff;
    display: inline-block;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    text-align: center;
}

.info-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-list i {
    color: #27ae60;
    font-size: 12px;
}

.button-area {
    display: flex;
}

.btn {
    flex: 1;
    text-decoration: none;
    padding: 15px;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
}

.btn-phone {
    background: #112d42; 
}

.btn-wa {
    background: #27ae60; 
}

.btn:hover {
    filter: brightness(1.2);
}

/* --- Contact Cards --- */
.contact-section {
    padding: 60px 20px;
}

.contact-container {
    display: flex;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-card {
    background: #fff;
    flex: 1;
    min-width: 280px;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.contact-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.contact-card p, .contact-card a {
    color: #666;
    text-decoration: none;
}

/* --- Action Buttons --- */
.action-buttons {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.action-buttons a {
    flex: 1;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease;
}

.action-buttons .btn-phone {
    background-color: #1256ca; 
}

.action-buttons .btn-phone:hover {
    background-color: #e7eaee;
    color: #333;
}

.action-buttons .btn-whatsapp {
    background-color: #28a745; 
}

.action-buttons .btn-whatsapp:hover {
    background-color: #e9efeb;
    color: #333;
}

.icon {
    margin-right: 8px;
    font-size: 18px;
}

/* --- One Day Pack --- */
.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header2 {
    text-align: center;
    margin-bottom: 50px;
}

.section-header2 h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-header2 p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.package-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card2 {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.package-card2:hover {
    transform: translateY(-5px);
}

.card-image2 {
    position: relative;
    height: 200px;
}

.card-image2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-btn2 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
}

.card-content2 {
    padding: 20px;
}

.location2 {
    font-size: 0.85rem;
    color: #00bcd4;
    display: block;
    margin-bottom: 10px;
}

.card-content2 h3 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 15px;
}

.card-meta2 {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.tag2 {
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blue-tag2 {
    background-color: #e0f7fa;
    color: #00bcd4;
}

.gray-tag2 {
    color: #888;
}

.hr2 {
    border: 0;
    border-top: 1px dashed #eee;
    margin: 15px 0;
}

.see-details2 {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.see-details2:hover {
    color: #00bcd4;
}        

/* --- Sticky Social Menu --- */
.sticky-social-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 15px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px 0 0 30px; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 50px; 
    overflow: hidden;
    white-space: nowrap;
}

.menu-item:hover {
    width: 150px;
    padding-left: 20px;
}

.menu-item i {
    font-size: 22px;
    min-width: 25px;
    text-align: center;
}

.label {
    margin-left: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .label {
    opacity: 1;
}

.whatsapp {
    background-color: #0eb34b;
    box-shadow: -2px 5px 15px rgba(37, 211, 102, 0.3);
}

.phone {
    background-color: #007bff;
    box-shadow: -2px 5px 15px rgba(0, 123, 255, 0.3);
}

/* --- Footer --- */
.footer {
    background-color: #0c1119; 
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #ff0000;
    margin-top: 8px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.footer-column a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

.footer-bottom-section {
    background-color: #0c1119; 
    padding: 40px 20px;
    color: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cities-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; 
}

.cities-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}

.check-icon {
    color: #28a745; 
    margin-right: 8px;
    font-style: normal;
}

.cities-list a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cities-list a:hover {
    color: #28a745; 
}


/* --- Media Queries --- */
@media screen and (max-width: 600px) {
    .image-row {
        flex-direction: column;
    }
    .cities-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .tariff-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 100%;
    }

    .title {
        font-size: 28px;
    }

    .nav-links {
        display: none; 
    }

    .menu-btn {
        display: block;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-card {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
    }
}

/* --- Mobile Menu Toggle Styles --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 80px; /* Aligns right under your navbar */
        left: 0;
        width: 100%;
        background-color: #0d6efd;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    /* This class will be added by JavaScript when the button is clicked */
    .nav-links.active-menu {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }
}


/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* --- Navbar Scroll Animation --- */
.navbar {
  position: fixed; /* Ensures it stays at the top */
  top: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 1000;
  padding: 20px 0; /* Default padding */
}

/* This class gets added by JS when scrolling */
.navbar.scrolled {
  background-color: #0d6efd; /* Dark background matching your theme */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 10px 0; /* Shrinks the navbar slightly */
}

/* Ensure links in the scrolled navbar remain visible */
.navbar.scrolled .logo,
.navbar.scrolled .nav-links li a,
.navbar.scrolled .menu-btn i {
  color: white !important; 
}

/* --- Mobile Menu & Staggered Link Animations --- */
@media screen and (max-width: 668px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background-color: #0d6efd;
    flex-direction: column;
    justify-content: center; /* Centers items vertically */
    align-items: center;
    gap: 30px;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0); /* Smoother slide */
    z-index: 999;
  }

  .nav-links.active-menu {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }

  /* Initial state for links (hidden and pushed down) */
  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.54s ease, transform 0.54s ease;
  }

  /* Animated state for links when menu is open */
  .nav-links.active-menu li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger the delays so they appear one after the other */
  .nav-links.active-menu li:nth-child(1) { transition-delay: 0.12s; }
  .nav-links.active-menu li:nth-child(2) { transition-delay: 0.23s; }
  .nav-links.active-menu li:nth-child(3) { transition-delay: 0.34s; }
  .nav-links.active-menu li:nth-child(4) { transition-delay: 0.45s; }
  .nav-links.active-menu li:nth-child(5) { transition-delay: 0.56s; }
  
  .menu-btn i {
    transition: transform 0.54s ease;
    font-size: 1.8rem;
    cursor: pointer;
    position: relative;
    z-index: 1001; /* Keeps icon above the sliding menu */
  }
}