@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;  /* Removes the underline */
}

body {
    font-family: "Kanit", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
}

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

/* Header */
.header {
    background: white;
    color: #333;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-right: 150px;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: #FBAF2B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.logo-text p {
    font-size: 20px;
    color: #666;
    margin: 0;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

/* Navigation */
.nav {
    background: transparent;
    padding: 15px 0;
    margin: 0;
}

.nav-menu {
    display: flex;
    justify-content: space-between; /* Distribute space evenly between items */
    list-style: none;

    align-items: center;
}

.nav-menu li {
    display: flex;
}

.nav-menu li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background: rgba(251, 175, 43, 0.1);
    transform: translateY(-2px);
}

.contact-btn {
    background: #FBAF2B;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {

    position: relative;
    height: 600px;
    margin-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, white 0%, white 50%, #FBAF2B 50%, #FBAF2B 100%);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-left {
    flex: 1;
    padding: 0 50px;
}

.hero-right {
    margin-left: -150px;
    flex: 1;
    padding: 0 50px;
    color: white;
}

.taxi-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-btn.outline {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.hero-btn.outline:hover {
    background: #333;
    color: white;
}

.hero-btn.phone {
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-btn.phone:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #333;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #666;
}

/* Services Section */
.services {
    padding: 20px 0;
    background: white;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(251, 175, 43, 0.2);
}

.service-icon {
    font-size: 4rem;
    color: #FBAF2B;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #FBAF2B;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FBAF2B 100%);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 175, 43, 0.3);
}

/* Tour Packages */
.tour-packages {
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #FBAF2B;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-image {
    height: 200px;
    background: linear-gradient(45deg, #FFD700, #FBAF2B);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.package-content {
    padding: 30px;
}

.package-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FBAF2B;
}

.package-duration {
    color: #666;
    margin-bottom: 10px;
}

.package-price {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #FBAF2B 0%, #FFD700 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

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

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FBAF2B;
}

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

    /* Hero Section Mobile */
    .hero {
        height: auto;
        padding: 80px 0 50px;
        margin-top: 80px;
    }

    .hero::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        background: linear-gradient(135deg, white 0%, white 70%, #FBAF2B 70%, #FBAF2B 100%);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-left, .hero-right {
        padding: 20px;
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

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

    .hero-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .taxi-image {
        max-width: 300px;
    }

    /* Services Section Mobile */
    .services {
        padding: 60px 0;
    }

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

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

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

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Tour Packages Mobile */
    .tour-packages {
        padding: 60px 0;
    }

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

    .tour-card {
        margin-bottom: 20px;
    }

    .tour-content {
        padding: 20px;
    }

    .tour-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .tour-price {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .tour-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .tour-highlights {
        margin-bottom: 20px;
    }

    .tour-highlights li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .tour-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    /* Navigation Mobile */
    .nav-menu {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-menu li a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

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

    .top-bar {
        text-align: center;
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
        margin-right: 0;
        width: 50px;
        margin-left: 120px;
        
    }

    .logo {
        margin-top: 20px;
        justify-content: center;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text p {
        font-size: 0.9rem;
    }

    .nav {
        padding: 10px 0;
    }

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

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

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .contact-item i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    /* Footer Mobile */
    .footer-nav {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .floating-phone {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

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

    /* Hero Section Small Mobile */
    .hero {
        padding: 60px 0 40px;
        margin-top: 90px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .hero-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        width: 200px;
        text-align: center;
    }

    .taxi-image {
        max-width: 250px;
    }

    /* Services Small Mobile */
    .services {
        padding: 40px 0;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    /* Tour Packages Small Mobile */
    .tour-packages {
        padding: 40px 0;
    }

    .tour-content {
        padding: 15px;
    }

    .tour-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .tour-price {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .tour-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .tour-highlights li {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .tour-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    /* Logo Small Mobile */
    .logo-text h1 {
        font-size: 1rem;
        width: 190px;
    }

    .logo-text p {
        font-size: 0.8rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Contact Small Mobile */
    .contact {
        padding: 40px 0;
    }

    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .contact-item i {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    /* Floating Phone Small Mobile */
    .floating-phone {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

.floating-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #FBAF2B;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.tour-hero {
    background: linear-gradient(135deg, #FBAF2B 0%, #FFD700 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 120px;
}

.tour-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tour-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.tour-section {
    padding: 80px 0;
    background: white;
}

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

.tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(251, 175, 43, 0.2);
}

.tour-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.tour-image.mountain {
    background: linear-gradient(45deg, #FFD700, #FBAF2B);
}

.tour-image.night {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.tour-image.temple {
    background: linear-gradient(45deg, #e67e22, #d35400);
}

.tour-content {
    padding: 30px;
}

.tour-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FBAF2B;
    font-weight: bold;
}

.tour-duration {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.tour-price {
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 20px;
}

.tour-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tour-highlights {
    list-style: none;
    margin-bottom: 50px;
    margin-top: 25px;
}

.tour-highlights li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.tour-highlights li i {
    color: #FBAF2B;
    margin-right: 8px;
    font-size: 0.8rem;
}

.tour-btn {
    margin-bottom: 20px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FBAF2B 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 175, 43, 0.3);
}

.tour-note {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
}

.tour-note h3 {
    color: #FBAF2B;
    margin-bottom: 10px;
}

.contact-info-tour {
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
}

.contact-info-tour h2 {
    color: #FBAF2B;
    margin-bottom: 30px;
}

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

.contact-method-tour {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-method-tour i {
    font-size: 2.5rem;
    color: #FBAF2B;
    margin-bottom: 15px;
}

.contact-method-tour h3 {
    color: #333;
    margin-bottom: 10px;
}

.contact-method-tour p {
    color: #666;
    margin-bottom: 15px;
}

.contact-method-tour a {
    color: #FBAF2B;
    text-decoration: none;
    font-weight: bold;
}

.contact-method-tour a:hover {
    text-decoration: underline;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

    *{margin:0;padding:0;box-sizing:border-box}
/* Dropdown */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.nav-menu .dropdown-menu li {
    padding: 10px 20px;
}

.nav-menu .dropdown-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

/* Tour Grid Override */
.tour-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 20px; 
}

.tour-card { 
    background: #fff; 
    border-radius: 10px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
    overflow: hidden; 
    transition: 0.3s; 
}

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

.tour-image { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    position: relative; 
}

.popular-tag { 
    position: absolute; 
    top: 10px; 
    right: 10px; 
    background: #FBAF2B; 
    color: #fff; 
    padding: 5px 10px; 
    border-radius: 5px; 
    font-size: 14px; 
}

.tour-content { 
    padding: 15px; 
}

.tour-title { 
    font-size: 18px; 
    font-weight: bold; 
    margin-bottom: 5px; 
}

.tour-duration, .tour-price { 
    font-size: 14px; 
    color: #666; 
    margin-bottom: 5px; 
}

.tour-highlights { 
    list-style: none; 
    padding: 0; 
    margin: 10px 0 0 0; 
}

.tour-highlights li { 
    font-size: 16px; 
    margin-bottom: 15px; 
}

.tour-btn { 
    background: #FBAF2B; 
    border: none; 
    color: #fff; 
    padding: 10px 15px; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: 0.3s; 
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.tour-btn:hover { 
    background: #e69e1f; 
    text-decoration: none;
    color: #fff;
}
		.banner {
			    margin-top: 130px; /* ความสูงของ navbar */
    position: relative;
    width: 100%;
    height: 60vh; /* ความสูงครึ่งจอ */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.logo-image {
    width: 100px;
    height: 100px;
    margin-right: 10px;
}

.logos {
   width: 50px;
   height: 50px;
}