* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --orange-primary: #FF6B35;
    --orange-light: #FF8C5A;
    --orange-soft: #FFE5DC;
    --blue-grey-dark: #3A4A5C;
    --blue-grey-medium: #5A6C7D;
    --blue-grey-light: #E8ECF0;
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --soft-shadow: rgba(58, 74, 92, 0.1);
    --gradient-logo: linear-gradient(135deg, #FF6B35 0%, #FF6B35 50%, #3A4A5C 50%, #3A4A5C 100%);
    --gradient-soft: linear-gradient(135deg, #FFE5DC 0%, #E8ECF0 100%);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 20px var(--soft-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    position: relative;
}

.logo-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 5px;
}

.logo-j2k {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 8px 20px 8px 16px;
    background: var(--orange-primary);
    border-radius: 8px;
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
    position: relative;
    overflow: hidden;
}

.logo-j2k::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--blue-grey-dark);
    clip-path: polygon(75% 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.logo-discovery {
    font-size: 18px;
    font-weight: 500;
    color: var(--blue-grey-dark);
    letter-spacing: 1px;
}

.tagline {
    font-size: 14px;
    color: var(--blue-grey-dark);
    font-weight: 400;
    font-style: italic;
    margin-top: 2px;
}

.header-nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-link {
    color: var(--blue-grey-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-link:hover {
    background: var(--orange-soft);
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    transform: translateY(-2px);
}

.nav-link:first-child {
    background: var(--orange-soft);
    color: var(--orange-primary);
    border-color: var(--orange-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background: var(--gradient-logo);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.95;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--blue-grey-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-logo);
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: var(--bg-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--orange-primary);
    font-weight: 600;
}

/* Services Section */
.services-section {
    background: var(--gradient-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px var(--soft-shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--orange-primary);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-grey-dark);
    margin-bottom: 15px;
}

.service-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Strengths Section */
.strengths-section {
    background: var(--bg-white);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--gradient-soft);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.strength-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--soft-shadow);
}

.check-icon {
    font-size: 24px;
    color: var(--orange-primary);
    font-weight: bold;
    min-width: 30px;
}

.strength-item p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Destinations Section */
.destinations-section {
    background: var(--gradient-soft);
}

.destinations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.destination-block {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px var(--soft-shadow);
    transition: all 0.3s ease;
}

.destination-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.25);
}

.destination-country {
    font-size: 24px;
    font-weight: 600;
    color: var(--blue-grey-dark);
    margin-bottom: 25px;
    text-align: center;
}

.destination-list {
    list-style: none;
}

.destination-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-light);
    border-bottom: 1px solid #E8E8E8;
    position: relative;
    padding-left: 25px;
}

.destination-list li:last-child {
    border-bottom: none;
}

.destination-list li::before {
    content: '✈️';
    position: absolute;
    left: 0;
}

.experiences-section {
    margin-top: 50px;
    text-align: center;
}

.experiences-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--blue-grey-dark);
    margin-bottom: 30px;
}

.experiences-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.experience-tag {
    display: inline-block;
    padding: 12px 24px;
    background: var(--bg-white);
    color: var(--blue-grey-dark);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 3px 15px var(--soft-shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.experience-tag:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    border-color: var(--orange-primary);
}

/* Commitment Section */
.commitment-section {
    background: var(--bg-white);
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.commitment-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.commitment-text strong {
    color: var(--orange-primary);
    font-weight: 600;
}

/* Photos Section */
.photos-section {
    background: var(--gradient-soft);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.photo-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--soft-shadow);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

/* Booking Section */
.booking-section {
    background: var(--bg-white);
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.booking-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--orange-primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.booking-btn:hover {
    background: var(--blue-grey-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(58, 74, 92, 0.4);
}

.booking-btn:last-child {
    background: var(--blue-grey-dark);
}

.booking-btn:last-child:hover {
    background: var(--orange-primary);
}

/* Footer */
.footer {
    background: var(--blue-grey-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.footer-title::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.contact-label {
    font-weight: 500;
    opacity: 0.9;
}

.contact-value {
    color: var(--orange-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-j2k {
        font-size: 28px;
        padding: 6px 12px;
    }
    
    .logo-discovery {
        font-size: 14px;
    }

    .tagline {
        font-size: 12px;
    }

    .header-nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
    }

    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .destinations-container {
        grid-template-columns: 1fr;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .service-card {
        padding: 30px 20px;
    }
}
