* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #00a8cc;
}

.logo-co {
    font-size: 28px;
    font-weight: 700;
    color: #e91e63;
}

.logo-tagline {
    font-size: 10px;
    letter-spacing: 3px;
    color: #666;
    margin-top: -5px;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

header .logo-img {
    height: 60px;
}

footer .logo-img {
    height: 80px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #e91e63;
}

/* Hero Section */
.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #87CEEB;
    animation: fadeIn 1s ease-out;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    animation: zoomInSubtle 1.5s ease-out;
    transition: transform 0.3s ease;
}

.hero:hover .hero-banner {
    transform: scale(1.02);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomInSubtle {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Destinations */
.destinations {
    padding: 60px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
    animation: fadeInDown 0.8s ease-out;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out backwards;
}

.destination-card:nth-child(1) {
    animation-delay: 0.1s;
}

.destination-card:nth-child(2) {
    animation-delay: 0.2s;
}

.destination-card:nth-child(3) {
    animation-delay: 0.3s;
}

.destination-card:nth-child(4) {
    animation-delay: 0.4s;
}

.destination-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.destination-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card:hover .destination-image img {
    transform: scale(1.15) rotate(2deg);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.9) 0%, rgba(233, 30, 99, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.destination-card:hover .destination-overlay-content {
    transform: translateY(0);
}

.destination-overlay-content i {
    font-size: 48px;
    margin-bottom: 10px;
    animation: bounce 1s infinite;
}

.destination-overlay-content p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.destination-info {
    padding: 25px 20px;
    text-align: center;
    background: linear-gradient(to bottom, white 0%, #f9f9f9 100%);
}

.destination-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.destination-card:hover .destination-info h3 {
    color: #e91e63;
}

.destination-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Why Choose */
.why-choose {
    padding: 60px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    color: #00a8cc;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* Airfares */
.airfares {
    padding: 40px 0;
    background: #f9f9f9;
}

.airfares-banner {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.airfares-banner h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.airline-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.airline-logo-box {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.airline-logo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.airline-logo-img {
    max-height: 50px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.airline-logo-text {
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 700;
    color: #333;
    font-size: 14px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.airline-logo-text:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


/* Feedback */
.feedback {
    padding: 60px 0;
    background: white;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feedback-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feedback-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(233, 30, 99, 0.1);
}

.feedback-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(233, 30, 99, 0.05);
    font-family: serif;
    line-height: 1;
    transition: transform 0.4s ease;
}

.feedback-card:hover::before {
    transform: translateY(10px) rotate(-10deg);
    color: rgba(233, 30, 99, 0.1);
}

.customer-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00a8cc 0%, #0077b6 100%);
}

.customer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feedback-card:hover .customer-photo {
    transform: scale(1.1);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 18px;
}

.stars i {
    display: inline-block;
    opacity: 0;
    animation: starPop 0.5s ease forwards;
    transition: transform 0.2s;
}

.feedback-card:hover .stars i {
    transform: scale(1.2);
}

.stars i:nth-child(1) {
    animation-delay: 0.1s;
}

.stars i:nth-child(2) {
    animation-delay: 0.2s;
}

.stars i:nth-child(3) {
    animation-delay: 0.3s;
}

.stars i:nth-child(4) {
    animation-delay: 0.4s;
}

.stars i:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes starPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.feedback-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 1px;
}

.feedback-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Partners */
.partners {
    padding: 60px 0;
    background: #f9f9f9;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partner-logo {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo-img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.partner-logo-img:hover {
    transform: scale(1.05);
}

.partner-logo-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-logo-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-logo-text {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    color: #333;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-text:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}



/* Planning Form */
.planning-form {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('New folder/thailand.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.form-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUpFade 0.8s ease-out forwards;
}

@keyframes slideUpFade {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-content h2 {
    color: white;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    outline: none;
}

.contact-form textarea {
    border-radius: 20px;
    resize: vertical;
    margin-bottom: 30px;
    min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    transform: scale(1.02);
    background: white;
    border-color: #00a8cc;
    box-shadow: 0 5px 20px rgba(0, 168, 204, 0.2);
}

.submit-btn {
    background: linear-gradient(45deg, #e91e63, #ff4081);
    color: white;
    border: none;
    padding: 18px 60px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.6);
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.submit-btn:hover::after {
    left: 100%;
}

/* Footer */
.footer {
    background: #d3d3d3;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #00a8cc;
}

.footer-column ul li i {
    margin-right: 10px;
    color: #00a8cc;
}

/* Logo Styles */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 5px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Social Media Icons - Premium Design */
.social-icons {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 18px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 50%;
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Facebook */
.social-icons a[href*="facebook"] {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
}

/* Twitter / X */
.social-icons a[href*="twitter"] {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

/* Instagram */
.social-icons a[href*="instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* YouTube */
.social-icons a[href*="youtube"] {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

/* LinkedIn */
.social-icons a[href*="linkedin"] {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

/* Hamburger Menu Styles */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 0;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {

    .destinations-grid,
    .features-grid,
    .feedback-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 64px;
    }

    .logo-img {
        height: 50px;
    }

    .social-icons {
        justify-content: center;
    }

    /* Mobile Nav */
    .hamburger {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 50px 0;
    }

    .nav.nav-active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        margin: 15px 0;
    }

    /* Hamburger Animation */
    .hamburger.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Branding Styles */
.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text-header {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.brand-text-footer {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.brand-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: fit-content;
}

.brand-link:hover {
    text-decoration: none;
    color: inherit;
}