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

:root {
    --primary-color: #2c5282;
    --secondary-color: #38a169;
    --dark-color: #1a202c;
    --light-color: #f7fafc;
    --gray-color: #4a5568;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    border-radius: 5px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
    background: rgba(26, 115, 232, 0.1);
}

.nav-links li a.nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
}

.nav-links li a.nav-cta:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./Images/Udupi.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.learn-more:hover {
    gap: 10px;
}

/* Destinations Section */
.destinations {
    padding: 5rem 0;
    background: var(--light-color);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.destination-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 1.5rem;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.destination-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.destination-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    color: #666;
}

.destination-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-info i {
    color: #007bff;
}

.package-details {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.package-details h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.package-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-details li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-details li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

.check-availability {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.check-availability:hover {
    background-color: #0056b3;
}

/* Fleet Section Styles */
.fleet-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.fleet-content {
    text-align: center;
}

.fleet-content h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.fleet-description {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.fleet-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.fleet-card h4 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.fleet-card h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.fleet-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleet-features li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.fleet-features li:last-child {
    border-bottom: none;
}

.fleet-note {
    color: #666;
    font-style: italic;
    margin-top: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 5px;
    display: inline-block;
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-card {
        padding: 1.5rem;
    }
    
    .fleet-content h2 {
        font-size: 1.8rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #007bff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
}

.form-group select optgroup {
    font-weight: 600;
    color: var(--dark-color);
}

.form-group select option {
    padding: 8px;
}

input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

.form-group select:focus,
input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 82, 130, 0.1);
}

/* Tour Packages Section */
.packages {
    padding: 5rem 0;
    background: var(--light-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.car-type {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.car-type i {
    font-size: 2rem;
    color: var(--primary-color);
}

.car-type h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
}

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

.package-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.package-price .duration {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.package-details {
    flex-grow: 1;
}

.package-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-details ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.package-details ul li i {
    color: var(--primary-color);
}

.extra-info {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.extra-info p {
    margin-bottom: 0.5rem;
}

.package-card .cta-button {
    width: 100%;
    text-align: center;
}

/* Responsive Design for Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Package Table Styles */
.package-table-container {
    margin-top: 2rem;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.package-table-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 1.8rem;
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.package-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.package-table th,
.package-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.package-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    white-space: nowrap;
}

.package-table th:first-child {
    border-top-left-radius: 8px;
}

.package-table th:last-child {
    border-top-right-radius: 8px;
}

.package-table tr:hover {
    background: rgba(26, 115, 232, 0.05);
}

.package-table tr.highlight {
    background: rgba(52, 168, 83, 0.1);
}

.package-table tr.highlight:hover {
    background: rgba(52, 168, 83, 0.15);
}

.package-table td:first-child {
    font-weight: 500;
    color: var(--dark-color);
}

.package-table td:not(:first-child) {
    color: var(--primary-color);
    font-weight: 600;
}

.package-table tfoot tr {
    background: rgba(0,0,0,0.02);
    font-weight: 500;
}

.package-notes {
    background: rgba(26, 115, 232, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.package-notes h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.package-notes ul {
    list-style: none;
}

.package-notes ul li {
    margin-bottom: 0.5rem;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-notes ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Design for Tables */
@media (max-width: 768px) {
    .package-table-container {
        padding: 1rem;
        border-radius: 10px;
    }

    .package-table th,
    .package-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .package-notes {
        padding: 1rem;
    }
}

/* Booking Confirmation Styles */
.booking-confirmation {
    margin-top: 2rem;
    padding: 2rem;
    background: #f0f9ff;
    border-radius: 10px;
    border: 1px solid #93c5fd;
    text-align: center;
}

.confirmation-content {
    max-width: 600px;
    margin: 0 auto;
}

.booking-confirmation i {
    font-size: 3rem;
    color: #059669;
    margin-bottom: 1rem;
}

.booking-confirmation h3 {
    color: #059669;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.confirmation-details {
    text-align: left;
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.confirmation-details p {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.confirmation-details strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

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

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .destinations-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-links,
    .social-links {
        justify-content: center;
    }
}

/* Package Categories Section */
.package-info {
    margin-top: 3rem;
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.package-info h2 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.package-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.package-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-category {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.package-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.category-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.package-category:hover .category-icon {
    background: #007bff;
    color: #fff;
}

.package-category h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.package-category h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.package-category ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-category li {
    color: #666;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-category li i {
    color: #28a745;
    font-size: 0.9rem;
}

.package-cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.package-cta:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.package-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.highlight-item i {
    color: #007bff;
    font-size: 1.2rem;
}

.package-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.package-note {
    color: #666;
    margin-bottom: 1.5rem;
}

.package-note i {
    color: #007bff;
    margin-right: 0.5rem;
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .package-info {
        padding: 2rem 1rem;
    }

    .package-categories {
        grid-template-columns: 1fr;
    }

    .package-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
}
