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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #f8fafc;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

/* Header */
.site-header {
    background-color: #0f172a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-link {
    text-decoration: none;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 12px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(15, 23, 42, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* Floating Search Widget Container */
.floating-search-widget-container {
    position: relative;
    z-index: 10;
    margin: 2rem auto 3rem;
    width: 100%;
    max-width: 900px;
}

.search-widget-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-widget-wrapper:hover {
    transform: translateY(-25px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(0, 0, 0, 0.15);
}

#tpwl-search {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Form */
.search-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.search-tab {
    padding: 0.8rem 1.5rem;
    border: none;
    background: #f1f5f9;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #475569;
}

.search-tab.active {
    background: #0f172a;
    color: white;
}

.search-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #334155;
}

.form-input {
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #0f172a;
}

.search-button {
    grid-column: 1 / -1;
    padding: 1rem;
    background: #ea580c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.2);
}

.search-button:hover {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}

/* Why Us Section */
.why-us-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.why-us-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    padding: 2rem;
    text-align: center;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: #e2e8f0;
}

.why-us-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-us-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.why-us-description {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.why-us-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0f172a;
}

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    padding: 2rem;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: #e2e8f0;
}

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

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-description {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Destinations Section */
.destinations-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.destination-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image {
    transform: scale(1.05);
}

.destination-content {
    padding: 1.5rem;
}

.destination-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.destination-description {
    color: #64748b;
    margin-bottom: 1rem;
}

.destination-button {
    padding: 0.8rem 1.5rem;
    background: #ea580c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.destination-button:hover {
    background: #c2410c;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #475569;
    margin-bottom: 1rem;
    quotes: "\201C" "\201D";
    line-height: 1.8;
}

.testimonial-quote::before {
    content: open-quote;
    font-size: 2rem;
    color: #ea580c;
}

.testimonial-author {
    color: #0f172a;
    font-weight: 500;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    font-size: 2rem;
    color: #0f172a;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    color: #ea580c;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ea580c;
    transform: scale(1.2);
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-description {
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #e2e8f0;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-button {
    padding: 0.8rem 2rem;
    background: #ea580c;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #c2410c;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.contact-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.contact-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: #ea580c;
}

.contact-text {
    color: #475569;
    line-height: 1.6;
}

.contact-button {
    padding: 1rem 2rem;
    background: #ea580c;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* Footer */
.site-footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-description {
    color: #cbd5e1;
}

.footer-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ea580c;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-size: 1.5rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    color: #ea580c;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

.footer-disclaimer {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #ea580c;
}

.disclaimer-text {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.copyright {
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 12px 12px;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .floating-search-widget-container {
        margin: 1.5rem auto 2rem;
    }
    
    .search-widget-wrapper {
        padding: 1.5rem;
        transform: translateY(-10px);
    }
    
    .search-widget-wrapper:hover {
        transform: translateY(-15px);
    }
    
    .search-fields {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .search-form {
        padding: 1.5rem;
    }
    
    .search-tabs {
        flex-direction: column;
    }
    
    .service-card,
    .destination-card,
    .why-us-card {
        margin-bottom: 1rem;
    }
    
    .floating-search-widget-container {
        margin: 1rem auto 1.5rem;
    }
    
    .search-widget-wrapper {
        padding: 1rem;
    }
}

/* Utility Classes */
.form-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

/* Destination Image Updates - Replace in HTML */
/* London, UK - Alternative image URL: https://images.pexels.com/photos/427679/pexels-photo-427679.jpeg */
/* New York, USA - Alternative image URL: https://images.pexels.com/photos/374710/pexels-photo-374710.jpeg */