/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
}
.top-bar i {
    color: #ff6b6b;
    margin-right: 6px;
}

/* ===== MAIN HEADER (Colourful Logo) ===== */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Colourful Gradient Text for Logo */
.logo h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}
.savithri {
    font-family: 'Bebas Neue', cursive;
    color: #2c3e50;
    background: linear-gradient(45deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tours {
    font-family: 'Dancing Script', cursive;
    color: #e67e22;
    font-size: 42px;
    background: linear-gradient(135deg, #e67e22, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.and {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #7f8c8d;
    font-size: 28px;
}
.travels {
    font-family: 'Bebas Neue', cursive;
    color: #16a085;
    background: linear-gradient(45deg, #16a085, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}
.logo p {
    font-size: 13px;
    letter-spacing: 2px;
    color: #555;
    margin-top: -5px;
    font-weight: 500;
}
.logo p i {
    color: #e74c3c;
    margin-right: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-menu li a:hover,
.nav-menu li a.active {
    color: #e67e22;
}
.login-btn {
    background: linear-gradient(135deg, #e67e22, #f1c40f);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(230,126,34,0.3);
}
.login-btn:hover {
    background: linear-gradient(135deg, #d35400, #e67e22);
}

/* ===== HERO ===== */
.hero {
    background: url('https://images.pexels.com/photos/672358/pexels-photo-672358.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    height: 85vh;
    min-height: 550px;
    position: relative;
}
.hero-overlay {
    background: rgba(0,0,0,0.45);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}
.hero-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
}
.hero-content h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.highlight {
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Dancing Script', cursive;
    font-size: 64px;
}
.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 500;
}
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22, #f1c40f);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(230,126,34,0.4);
    border: none;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #d35400, #e67e22);
    transform: translateY(-3px);
}
.hero-note {
    margin-top: 25px;
    font-size: 18px;
    opacity: 0.9;
}
.hero-note i {
    margin-right: 8px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #2c3e50, #16a085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title h2:after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #f1c40f);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}
.section-title p {
    color: #555;
    font-size: 18px;
    max-width: 750px;
    margin: 25px auto 0;
    font-weight: 400;
}

/* ===== BEST PLACES SECTION ===== */
.places-section {
    padding: 80px 0;
    background: #fff;
}
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 30px;
}
.place-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 35px 20px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(230,126,34,0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}
.place-card:hover {
    background: linear-gradient(135deg, #e67e22, #f1c40f);
    color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 25px 35px rgba(230,126,34,0.25);
}
.place-icon {
    font-size: 45px;
    color: #e67e22;
    margin-bottom: 20px;
}
.place-card:hover .place-icon {
    color: #fff;
}
.place-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.place-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== PLACE LIST (used in Munnar/Kodaikanal) ===== */
.place-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    text-align: left;
}
.place-list li {
    padding: 4px 0;
    font-size: 14px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.place-list li::before {
    content: "✓ ";
    color: #e67e22;
    font-weight: bold;
    margin-right: 5px;
}
.place-card:hover .place-list li {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.3);
}
.place-card:hover .place-list li::before {
    color: #fff;
}

/* ===== HOTELS SECTION ===== */
.hotels-section {
    padding: 80px 0;
}
.bg-light {
    background: #f5f7fa;
}
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.hotel-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.hotel-card:hover {
    transform: translateY(-10px);
}
.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.hotel-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #2c3e50;
}
.hotel-card p {
    margin: 0 20px 20px;
    color: #666;
    font-size: 15px;
}
.btn-outline {
    display: inline-block;
    margin: 0 20px 25px;
    padding: 10px 25px;
    border: 2px solid #e67e22;
    border-radius: 40px;
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: #e67e22;
    color: #fff;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 80px 0;
    background: #fff;
}
.map-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.map-content {
    flex: 1;
}
.map-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-family: 'Bebas Neue', cursive;
}
.map-content p {
    margin-bottom: 25px;
    color: #444;
}
.map-legend {
    list-style: none;
    margin-bottom: 30px;
}
.map-legend li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.legend-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.map-image {
    flex: 1;
    text-align: center;
}
.map-image img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}
.map-caption {
    margin-top: 20px;
    font-style: italic;
    color: #666;
    font-weight: 500;
}

/* ===== TOURIST PLACES SECTION ===== */
.tourist-places-section {
    padding: 80px 0;
}
.tourist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}
.tourist-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.tourist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}
.tourist-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}
.tourist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.tourist-card:hover .tourist-img img {
    transform: scale(1.08);
}
.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(6px);
}
.tourist-info {
    padding: 25px;
}
.tourist-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}
.tourist-info p {
    color: #555;
    margin-bottom: 18px;
    font-size: 15px;
}
.tourist-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    color: #777;
    font-size: 14px;
}
.tourist-meta i {
    color: #e67e22;
    margin-right: 6px;
}
.btn-link {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}
.btn-link:hover {
    gap: 15px;
}

/* ===== FEATURED CARS ===== */
.featured-cars {
    padding: 80px 0;
    background: #f9f9f9;
}
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.car-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.car-card:hover {
    transform: translateY(-10px);
}
.car-img {
    height: 200px;
    overflow: hidden;
}
.car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.car-card:hover .car-img img {
    transform: scale(1.05);
}
.car-info {
    padding: 25px 20px;
    text-align: center;
}
.car-info h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}
.car-desc {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 10px;
}
.car-routes {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}
.btn-call {
    display: inline-block;
    background: transparent;
    color: #e67e22;
    border: 2px solid #e67e22;
    padding: 10px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-call i {
    margin-right: 8px;
}
.btn-call:hover {
    background: #e67e22;
    color: #fff;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #2c3e50, #16a085);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}
.cta-content h3 {
    font-size: 42px;
    margin-bottom: 15px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}
.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}
.btn-large {
    padding: 18px 45px;
    font-size: 22px;
    background: #fff;
    color: #2c3e50;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.btn-large:hover {
    background: #f1c40f;
    color: #2c3e50;
}

/* ================================================================ */
/* NEW PAGE STYLES (About, Services, Tariff, Contact, Welcome)      */
/* ================================================================ */

/* ---- Page Banner (used on About, Services, Tariff, Contact) ---- */
.page-banner {
    background: linear-gradient(135deg, #2c3e50, #16a085);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.page-banner h2 {
    font-size: 44px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.page-banner p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Welcome Text (Homepage) ---- */
.welcome-section {
    padding: 80px 0;
    background: #fff;
}
.welcome-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}
.welcome-text p {
    margin-bottom: 20px;
}

/* ---- About page content ---- */
.about-content {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}
.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* ---- Services list ---- */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 80px 0;
}
.service-item {
    background: #fff;
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid rgba(230,126,34,0.1);
}
.service-item:hover {
    transform: translateY(-8px);
}
.service-item i {
    font-size: 44px;
    color: #e67e22;
    margin-bottom: 20px;
}
.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}
.service-item p {
    color: #666;
}

/* ---- Tariff Table ---- */
.tariff-table {
    padding: 80px 0;
}
.tariff-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.tariff-table thead th {
    background: #2c3e50;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    text-align: left;
}
.tariff-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}
.tariff-table tbody tr:hover {
    background: #fff5f0;
}
.note {
    background: #fff3cd;
    padding: 12px 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-block;
    color: #856404;
    font-size: 14px;
}
.rate-message {
    background: linear-gradient(135deg, #fff5f0, #ffeae0);
    border-left: 6px solid #e67e22;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 6px 20px rgba(230,126,34,0.1);
}
.rate-message i {
    font-size: 28px;
    color: #e67e22;
    margin-top: 3px;
}
.rate-message p {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
}
.note i {
    margin-right: 8px;
}

/* ---- Contact Details ---- */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 80px 0;
}
.contact-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.contact-card:hover {
    transform: translateY(-8px);
}
.contact-card i {
    font-size: 40px;
    color: #e67e22;
    margin-bottom: 20px;
}
.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}
.contact-card p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}
.contact-card a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a1a;
    color: #ccc;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 20px;
}
.footer-content h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}
.footer-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    background: linear-gradient(45deg, #f1c40f, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.owner-name {
    color: #f1c40f;
    font-weight: 700;
    font-size: 18px;
}
.owner-quote {
    font-style: italic;
    margin-top: 15px;
    color: #aaa;
    border-left: 3px solid #e67e22;
    padding-left: 15px;
}
.footer-about p,
.footer-contact p {
    font-size: 15px;
    line-height: 1.8;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
}
.footer-links ul li a:hover {
    color: #f1c40f;
}
.footer-contact i {
    color: #e67e22;
    margin-right: 10px;
    width: 20px;
}
.footer-bottom {
    background: #111;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    font-size: 15px;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-content h2 {
        font-size: 36px;
    }
    .highlight {
        font-size: 48px;
    }
    .map-wrapper {
        flex-direction: column;
    }
    .logo h1 {
        font-size: 30px;
        text-align: center;
    }
    .tours {
        font-size: 36px;
    }
    .page-banner h2 {
        font-size: 36px;
    }
    .tariff-table table {
        font-size: 14px;
    }
    .tariff-table thead th,
    .tariff-table tbody td {
        padding: 10px;
    }
}
/* ===== DESTINATION IMAGE (Ooty, Kodai, Munnar) ===== */
.destination-image {
    position: relative;
    margin-top: 50px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.destination-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.destination-image:hover img {
    transform: scale(1.03);
}
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 20px 20px;
    color: #fff;
    text-align: center;
}
.image-overlay h3 {
    font-size: 28px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    margin: 0;
}
/* Optional: smoother modal transition */
.modal-overlay {
    transition: opacity 0.3s;
}
.login-modal input,
.login-modal button {
    box-sizing: border-box;
}