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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #4A5568;
    background-color: #FFFFFF;
}

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

/* Header */
.header {
    background-color: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #E2E8F0;
}

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

.logo {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #2B6CB0;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F7E6A3 0%, #FF7F7F 50%, #2B6CB0 100%);
    padding: 80px 0;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Destinations */
.destinations {
    padding: 80px 0;
    background-color: #F8FAFC;
    text-align: center;
}

.destinations h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2B6CB0;
}

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

.destination-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.destination-image, .partner-image, .transport-image, .seasonal-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.seasonal-img {
    height: 350px;
}

.destination-card h3 {
    color: #2B6CB0;
    margin-bottom: 15px;
    font-size: 22px;
}

.destination-card p {
    color: #718096;
    line-height: 1.6;
}

/* Ratings */
.ratings {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.ratings h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2B6CB0;
}

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

.rating-item {
    padding: 20px;
}

.rating-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #F7E6A3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-item .icon svg {
    width: 30px;
    height: 30px;
}

.rating-item h3 {
    color: #2B6CB0;
    margin-bottom: 15px;
    font-size: 20px;
}

.rating-item p {
    color: #718096;
    line-height: 1.6;
}

/* Partnerships */
.partnerships {
    padding: 80px 0;
    background-color: #F8FAFC;
    text-align: center;
}

.partnerships h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2B6CB0;
}

.partnerships p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #718096;
}

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

.partner-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.partner-image {
    height: 180px;
    margin-bottom: 20px;
}

.partner-card h4 {
    color: #2B6CB0;
    font-size: 18px;
}

/* Seasonal */
.seasonal {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.seasonal h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2B6CB0;
}

.seasonal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.seasonal-text h3 {
    color: #2B6CB0;
    margin-bottom: 20px;
    font-size: 24px;
}

.seasonal-text p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #718096;
}

.seasonal-text ul {
    list-style: none;
    padding: 0;
}

.seasonal-text li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #718096;
}

.seasonal-text li::before {
    content: "•";
    color: #FF7F7F;
    position: absolute;
    left: 0;
    font-size: 20px;
}


/* Transport */
.transport {
    padding: 80px 0;
    background-color: #F8FAFC;
    text-align: center;
}

.transport h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2B6CB0;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.transport-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.transport-card h3 {
    color: #2B6CB0;
    margin-bottom: 15px;
    font-size: 24px;
}

.transport-card p {
    color: #718096;
    margin-bottom: 25px;
    line-height: 1.6;
}


/* Products */
.products {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.products h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2B6CB0;
}

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

.product-card {
    background-color: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.product-card h3 {
    color: #2B6CB0;
    margin-bottom: 15px;
    font-size: 22px;
}

.product-card p {
    color: #718096;
    margin-bottom: 25px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #FF7F7F;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2B6CB0;
    color: white;
    border: 2px solid #2B6CB0;
}

.btn-primary:hover {
    background-color: #1A365D;
    border-color: #1A365D;
}

/* Contact */
.contact {
    padding: 80px 0;
    background-color: #F8FAFC;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2B6CB0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background-color: #F7E6A3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    color: #2B6CB0;
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-item p {
    color: #718096;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #2D3748;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section:first-child {
    max-width: 300px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #F7E6A3;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F7E6A3;
}

.footer-section p {
    color: #A0AEC0;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #A0AEC0;
}

.footer .logo-section {
    margin-bottom: 15px;
}

.footer .logo-section .brand-name {
    color: #F7E6A3;
    font-size: 20px;
}

.footer .logo {
    width: 40px;
    height: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .seasonal-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .transport-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}