@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #131233;
    --navy-light: #170f41;
    --orange: #ED931D;
    --orange-light: #ffd6a5;
    --white: #fff;
    --gray: #f8fafc;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--gray);
}

.hero-gradient,
.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--orange) 100%);
    color: var(--white);
}

.hero-section {
    padding: 40px 0;
}

.hero-content {
    max-width: 112rem;
    margin: 0 auto;
    padding: 4rem 1rem;
    text-align: center;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--orange);
}

.hero-desc {
    margin: 1.5rem auto 0;
    max-width: 32rem;
    font-size: 1.25rem;
    color: var(--white);
}

.section {
    max-width: 112rem;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2rem;
}

.destinations-grid,
.offers-grid,
.why-choose-grid,
.testimonials-grid {
    display: grid;
    gap: 2rem;
}

.destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.destination-card,
.offer-card,
.why-choose-card,
.testimonial-card {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s;
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20,33,61,0.97);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
    transform: translateY(0);
}

.destination-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange);
}

.destination-overlay p {
    margin-top: 0.5rem;
    font-size: 1rem;
}

.destination-overlay button {
    margin-top: 1rem;
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.destination-overlay button:hover {
    background: #ff9900;
}

.price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.deal-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--orange);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.special-offers-section {
    background: var(--gray);
    padding: -1.5rem 0;
}

.offers-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.offer-card {
    border: 3px solid var(--navy);
}

.offer-card-content {
    padding: 1.5rem;
}

.offer-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.offer-card-content p {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #6b7280;
}

.offer-card-content button {
    margin-top: 1rem;
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.offer-card-content button:hover {
    background: var(--orange);
}

.why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    text-align: center;
}

.why-choose-card {
    padding: 2rem;
}

.why-choose-card i {
    color: var(--orange);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.why-choose-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.why-choose-card p {
    color: #6b7280;
}

.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.testimonial-card {
    padding: 2rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.testimonial-user-info {
    font-weight: 600;
    color: var(--navy);
}

.testimonial-user-country {
    font-size: 0.875rem;
    color: #6b7280;
}

.testimonial-text {
    margin-top: 1rem;
    font-size: 1rem;
    color: #374151;
}

.newsletter-section {
    background: var(--navy);
    padding: 3rem 0;
}

.newsletter-container {
    max-width: 40rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
}

.newsletter-desc {
    margin-top: 0.5rem;
    color: var(--white);
}

.newsletter-form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.newsletter-form input[type="email"] {
    width: 100%;
    max-width: 320px;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: none;
    outline: none;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--orange);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: #ff9900;
}

.footer {
    background: var(--white);
    border-top: 1px solid #e5e7eb;
    padding: 2rem 0;
}

.footer-container {
    max-width: 112rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand img {
    width: 150px;
    height: 40px;
}

.footer-copy {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Navigation */
.nav-bar {
    background: var(--white);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 112rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    height: 4rem;
}

.nav-brand,
.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    width: 150px;
    height: 40px;
}

.nav-links {
    display: flex;
    margin-left: 320px;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a.active {
    color: var(--orange);
    border-bottom: 2px solid var(--orange);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-signin {
    display: block;
    margin-left: 300px;
    margin-top: 15px;
}

.nav-signin button {
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s;
    border: none;
}

.nav-signin button:hover {
    background: #ff9900;
}

.nav-mobile-btn {
    margin-right: -0.5rem;
    margin-top: 15px;
    display: none;
    align-items: center;
    background: none;
    border: none;
    color: var(--navy);
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: color 0.3s;
}

.mobile-menu {
    display: none;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-left: 4px solid transparent;
    color: var(--navy);
    background: var(--white);
}

.mobile-menu a.active {
    background: var(--orange-light);
    border-left: 4px solid var(--orange);
    color: var(--orange);
}

/* Search Box */
.search-box {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(20,33,61,0.10), 0 10px 25px rgba(0,0,0,0.1);
    padding: 2rem 1rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    max-width: 28rem;
    margin: -2.5rem auto 0;
    position: relative;
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-mobile-btn {
        display: flex;
    }
    
    .nav-signin {
        display: block;
        margin-left: 100px;
    }
}

@media (max-width: 480px) {
    .search-box {
        padding: 1.25rem 0.75rem !important;
    }
    .search-box label {
        font-size: 1rem !important;
    }
    .search-box input,
    .search-box button {
        font-size: 0.98rem !important;
        padding: 0.65rem 1rem !important;
    }
}