/* Base Styles & Variables */
:root {
    --primary: #e16d24;
    --light-accent: #f18c4e;
    --dark-text: #333;
    --light-bg: rgba(255, 255, 255, 0.85);
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
html {
    scroll-behavior: smooth;
}
 
body {
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fdfcfb 0%, #f5f7fa 100%);
}
 
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}
 
p {
    margin-bottom: 1.5rem;
}
 
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
 
.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(225, 109, 36, 0.3);
}
 
.btn:hover {
    background: var(--light-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(225, 109, 36, 0.4);
}
 
section {
    padding: 80px 0;
}
 
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
 
.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}
 
.text-center {
    text-align: center;
}
 
/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('images/cambodia_photo_tour_bayon_temple.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}
 
.hero-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    box-shadow: var(--shadow);
    animation: fadeIn 1.5s ease;
}
 
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
 
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
 
.hero-subtitle span {
    display: flex;
    align-items: center;
}
 
.hero-subtitle i {
    margin-right: 8px;
    color: var(--light-accent);
}
 
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 
/* About Section */
.about {
    background: white;
}
 
.about-content {
    max-width: 900px;
    margin: 0 auto;
}
 
.about-content b {
    color: var(--primary);
    font-weight: 600;
}
 
/* Slideshow Section */
.slideshow {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    padding: 60px 0;
}
 
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
 
.mySlides {
    display: none;
    height: 500px;
}
 
.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
}
 
.dots {
    text-align: center;
    padding: 20px 0;
}
 
.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}
 
.active-dot {
    background-color: var(--primary);
}
 
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
 
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
 
/* Pricing Section */
.pricing {
    background: #000000;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
 
.pricing-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}
 
.price-tag {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
 
.price-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}
 
.price-feature {
    text-align: center;
}
 
.price-feature i {
    font-size: 2rem;
    color: var(--light-accent);
    margin-bottom: 10px;
}
 
.price-feature div {
    font-size: 1.2rem;
    font-weight: 600;
}
 
.price-note {
    font-style: italic;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}
 
/* Icons Section */
.features {
    background: white;
}
 
.features-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #666;
}
 
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
 
.feature-item {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
 
.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}
 
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
 
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    background: rgba(225, 109, 36, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}
 
.feature-item:hover .feature-icon {
    transform: scale(1.1);
}
 
.feature-item h3 {
    color: var(--dark-text);
    margin-bottom: 15px;
}
 
.feature-item p {
    color: #666;
    font-size: 0.95rem;
}
 
/* Map & Contact Section */
.contact {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}
 
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
 
.map-container {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
 
.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}
 
.contact-info {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
}
 
.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}
 
.address {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
}
 
.contact-details {
    margin-bottom: 30px;
}
 
.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
 
.contact-detail i {
    width: 30px;
    color: var(--primary);
    font-size: 1.2rem;
}
 
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
 
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
 
.social-links a:hover {
    background: var(--light-accent);
    transform: translateY(-5px);
}
 
/* Footer */
footer {
    background: var(--dark-text);
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}
 
/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .mySlides {
        height: 300px;
    }
    
    .price-tag {
        font-size: 3rem;
    }
    
    .price-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    section {
        padding: 60px 0;
    }
}
 
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .price-features {
        flex-direction: column;
        gap: 20px;
    }
}