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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

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

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0C6D3C, #E2F03C);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E2F03C, #0C6D3C);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background: #0C6D3C;
    color: white;
}

.btn-secondary:hover {
    background: #E2F03C;
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, #E2F03C, #0C6D3C);
    color: white;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #0C6D3C, #E2F03C);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 240, 60, 0.3);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 0.5rem;
    margin-right: 2rem;
}

.lang-btn {
    padding: 0.3rem;
    border: 2px solid #0C6D3C;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 30px;
    overflow: hidden;
}

.lang-btn:hover {
    background: #0C6D3C;
    transform: scale(1.05);
}

.lang-btn.active {
    background: #0C6D3C;
    border-color: #E2F03C;
    box-shadow: 0 0 10px rgba(12, 109, 60, 0.3);
}

.flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover .flag-img {
    transform: scale(1.1);
}

.lang-btn.active .flag-img {
    filter: brightness(1.2);
}

/* Language-specific content hiding - only for content, not buttons */
[data-lang="en"]:not(.lang-btn) {
    display: none !important;
}

[data-lang="sw"]:not(.lang-btn) {
    display: block !important;
}

body[data-current-lang="en"] [data-lang="en"]:not(.lang-btn) {
    display: block !important;
}

body[data-current-lang="en"] [data-lang="sw"]:not(.lang-btn) {
    display: none !important;
}

/* Ensure language switching works properly */
body[data-current-lang="sw"] [data-lang="en"]:not(.lang-btn) {
    display: none !important;
}

body[data-current-lang="sw"] [data-lang="sw"]:not(.lang-btn) {
    display: block !important;
}

/* Ensure language toggle buttons are always visible */
.language-toggle .lang-btn {
    display: flex !important;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 1001;
}

.logo i {
    color: #0C6D3C;
    font-size: 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #0C6D3C;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #0C6D3C;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #0C6D3C;
}

/* Hero Section */
.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Space for fixed header */
    display: flex;
    flex-direction: column;
}

.hero-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 500px;
}

/* Hero Buttons Section */
.hero-buttons-section {
    background: white;
    padding: 2rem 0;
    width: 100%;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.hero-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Sponsors Carousel */
.hero-sponsors-carousel {
    background: transparent;
    padding: 2rem 0;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
}

.hero-sponsors-label {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0C6D3C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-sponsors-track {
    display: flex;
    gap: 3rem;
    animation: scrollSponsors 30s linear infinite;
    align-items: center;
    width: fit-content;
}

.hero-sponsors-track:hover {
    animation-play-state: paused;
}

.hero-sponsor-logo {
    flex-shrink: 0;
    height: 90px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-sponsor-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-sponsor-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-sponsor-logo .sponsor-icon {
    font-size: 2.5rem;
    color: #0C6D3C;
    opacity: 0.5;
}

.hero-sponsor-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

@keyframes scrollSponsors {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive styles for hero sponsors carousel */
@media (max-width: 768px) {
    .hero-sponsors-carousel {
        padding: 1.5rem 0;
        bottom: 160px;
    }
    
    .hero-sponsors-label {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-sponsors-track {
        gap: 2rem;
    }
    
    .hero-sponsor-logo {
        height: 75px;
        width: 75px;
        padding: 6px;
    }
    
    .hero-sponsor-logo img {
        max-height: 100%;
        max-width: 100%;
    }
    
    .hero-sponsor-logo .sponsor-icon {
        font-size: 3rem;
    }
}

/* About Section */
.about {
    background: white;
    padding: 5rem 0;
    text-align: left;
}

.about p {
    max-width: 100%;
    margin: 0 0 3rem 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.video-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-thumbnail {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 0;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.video-thumbnail-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
}

.play-button {
    width: 80px;
    height: 80px;
    background: #0C6D3C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    background: #E2F03C;
    transform: scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: #0C6D3C;
    margin-bottom: 0.5rem;
}

.live-banner-image {
    margin-bottom: 2rem;
    width: 100%;
}

.full-width-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Photo Gallery Section */
.photo-gallery {
    background: white;
    padding: 5rem 0;
}

.gallery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.gallery-img, .venue-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-text {
    text-align: center;
}

.gallery-text h3 {
    margin-bottom: 2rem;
    color: #0C6D3C;
}

/* Program Section */
.program {
    background: #FFF5EE;
    padding: 5rem 0;
    text-align: center;
}

.program h2 {
    color: #0C6D3C;
}

/* Exhibition Registration Section */
.exhibition-registration {
    background: #f8f9fa;
    padding: 5rem 0;
}

.exhibition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.exhibition-text h2 {
    color: #0C6D3C;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.exhibition-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.exhibition-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-item i {
    color: #0C6D3C;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.feature-item span {
    font-weight: 600;
    color: #333;
}

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

.exhibition-preview-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .exhibition-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .exhibition-text h2 {
        font-size: 2rem;
    }
    
    .exhibition-features {
        gap: 0.5rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
}

/* Statistics Section */
.statistics {
    background: #FFF5EE;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-item i {
    font-size: 3rem;
    color: #0C6D3C;
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #0C6D3C;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
}

/* Hotels Section */
.hotels {
    background: #fff5ee;
    padding: 5rem 0;
}

.hotels-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hotels-image {
    flex: 1;
    min-width: 300px;
}

.hotels-text {
    flex: 1;
    min-width: 300px;
}

.hotels-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hotels h3 {
    color: #0C6D3C;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.hotels p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Accommodation Section */
.accommodation {
    background: #FFF5EE;
    padding: 5rem 0;
}

.accommodation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hotel-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 15px;
    position: relative;
}

.hotel-placeholder::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, #ddd, #ccc);
    border-radius: 10px;
}

.accommodation-text h3 {
    color: #0C6D3C;
    margin-bottom: 1.5rem;
}

.accommodation-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Organizers Section */
.organizers {
    background: #FFF5EE;
    padding: 5rem 0;
    text-align: center;
}

.organizers h2 {
    color: #0C6D3C;
    margin-bottom: 3rem;
}

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

.organizer {
    padding: 2rem;
}

.organizer-logo-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    object-fit: contain;
    background: white;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.organizer h4 {
    color: #0C6D3C;
}

/* Ministry Officials Section */
.ministry-officials {
    background: white;
    padding: 5rem 0;
    text-align: center;
}

.ministry-officials h2 {
    color: #0C6D3C;
    margin-bottom: 3rem;
}

.ministry-officials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ministry-official-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.ministry-official-img {
    width: 100%;
    /* height: 300px; */
    object-fit: cover;
}

.ministry-official-info {
    padding: 1.5rem;
}

.ministry-official-info h4 {
    color: #0C6D3C;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.ministry-official-info p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

/* Delegates Section */
.delegates {
    background: #0C6D3C; /* Primary color */
    padding: 5rem 0;
    color: #333;
    text-align: center;
}

.delegates h2 {
    margin-bottom: 3rem;
    color: white;
}

.carousel {
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
    padding: 0 20px;
}

.carousel-container {
    display: flex;
    gap: 1rem;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0;
    justify-content: center;
    margin: 0 auto;
    max-width: 1100px;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}

.delegate-card {
    min-width: 220px;
    max-width: 250px;
    background: rgba(255, 255, 255, 1);
    padding: 0 0 1.5rem 0;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 0 5px;
    overflow: hidden;
}

.delegate-photo-img {
    width: 100%;
    height: 250px;
    border-radius: 0;
    object-fit: cover;
    margin: 0;
    border: none;
}

.delegate-info {
    padding: 1rem;
}

.delegate-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.delegate-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.carousel-btn.prev {
    left: 5px;
    z-index: 10;
}

.carousel-btn.next {
    right: 5px;
    z-index: 10;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* Moderators Section */
.moderators {
    background: #FFF5EE;
    padding: 5rem 0;
    text-align: center;
}

.moderators h2 {
    color: #0C6D3C;
    margin-bottom: 3rem;
}

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

.moderator-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.moderator-photo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid #0C6D3C;
}

.moderator-card h4 {
    color: #0C6D3C;
    margin-bottom: 0.5rem;
}

/* Plenary Speakers Section */
.plenary-speakers {
    background: #FFF5EE;
    padding: 5rem 0;
    text-align: center;
    scroll-margin-top: 100px; /* Account for fixed header */
}

.plenary-speakers h2 {
    color: #0C6D3C;
    margin-bottom: 3rem;
}

.speaker-card {
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.speaker-photo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid #0C6D3C;
}

.speaker-card h4 {
    color: #0C6D3C;
    margin-bottom: 0.5rem;
}

/* Resources Section */
.resources {
    background: #FFF5EE;
    padding: 5rem 0;
    text-align: center;
}

.resources h2 {
    color: #0C6D3C;
    margin-bottom: 2rem;
}

.resources-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.resource-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease;
}

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

.resource-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.resource-icon {
    font-size: 2.5rem;
    color: #0C6D3C;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.resource-info h4 {
    color: #0C6D3C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-info p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.5;
}

.resource-info .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 20px;
    font-size: 0.875rem;
}

/* Sponsorship Packages Section */
.sponsorship-packages {
    background: white;
    padding: 5rem 0;
    text-align: center;
}

.sponsorship-packages h2 {
    color: #0C6D3C;
    margin-bottom: 2rem;
}

.sponsorship-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.sponsorship-tabs {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

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

.tab-btn {
    padding: 1rem 2rem;
    background: #f5f5f5;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #0C6D3C;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

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

.package-header {
    padding: 2rem;
    color: white;
}

.package-card.main .package-header {
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
    color: white;
}

.package-card.main .package-price {
    color: #FFD700;
    font-weight: bold;
}

.package-card.platinum .package-header {
    background: linear-gradient(135deg, #e5e4e2, #b4b4b4);
}

.package-card.gold .package-header {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.package-card.silver .package-header {
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
}

.package-card.bronze .package-header {
    background: linear-gradient(135deg, #CD7F32, #A0522D);
}

.package-card.special .package-header {
    background: linear-gradient(135deg, #0C6D3C, #3CB371);
}

.package-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.package-price {
    font-size: 1.2rem;
    font-weight: 600;
}

.package-features {
    padding: 2rem;
    flex-grow: 1;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.package-features li i {
    color: #0C6D3C;
    margin-right: 0.8rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.package-card .btn {
    margin: 0 2rem 2rem;
}

.sponsorship-cta {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.sponsorship-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #0C6D3C;
    border-radius: 10px;
    text-align: center;
}

.contact-info p {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

.whatsapp-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .whatsapp-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Partners Section */
.partners {
    background: #FFF5EE;
    padding: 5rem 0;
    text-align: center;
}

.partners h2 {
    color: #0C6D3C;
    margin-bottom: 3rem;
}

.partner-card {
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.partner-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0C6D3C;
    overflow: hidden;
}

.partner-logo img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-card h4 {
    color: #0C6D3C;
    font-size: 1rem;
}

/* Sponsors Sections */
.sponsors {
    background: #FFF5EE;
    padding: 5rem 0;
    text-align: center;
}

.sponsors h2 {
    color: #0C6D3C;
    margin-bottom: 3rem;
}

.sponsor-card {
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.sponsor-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0C6D3C;
    overflow: hidden;
}

.sponsor-logo img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* General rounded corners for all logo images */
.logo img, 
[class*="logo"] img,
[class*="Logo"] img {
    border-radius: 15px;
}

/* Sponsor website links */
.sponsor-website-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #0C6D3C;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 10px;
    padding: 6px 10px;
    border: 1px solid #0C6D3C;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sponsor-website-link:hover {
    background-color: #0C6D3C;
    color: white;
    text-decoration: none;
}

.partner-website-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #0C6D3C;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 10px;
    padding: 6px 10px;
    border: 1px solid #0C6D3C;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.partner-website-link:hover {
    background-color: #0C6D3C;
    color: white;
    text-decoration: none;
}

.sponsor-card h4 {
    color: #0C6D3C;
    font-size: 1rem;
}

/* Registration CTA Section */
.registration-cta {
    background: linear-gradient(135deg, #0C6D3C, #3CB371);
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.registration-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/imgs/pattern-bg.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.registration-text h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.registration-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.registration-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.registration-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.registration-benefits li i {
    color: #FFD700;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.registration-action {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.countdown-box {
    margin-bottom: 2rem;
}

.countdown-label {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-unit span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.unit-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.registration-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    background: #FFD700;
    color: #333;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.registration-btn:hover {
    background: white;
    color: #0C6D3C;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.registration-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Awards Registration Section */
.awards-registration {
    background: #f8f9fa;
    padding: 5rem 0;
    position: relative;
}

.awards-registration-content {
    text-align: center;
}

.awards-registration h2 {
    color: #0C6D3C;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.awards-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.awards-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-link-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.award-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0C6D3C, #3CB371);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.award-icon i {
    font-size: 2rem;
    color: white;
}

.award-link-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-btn {
    margin-top: auto;
    padding: 12px 30px;
    border: 2px solid #0C6D3C;
    color: #0C6D3C;
    background: transparent;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.award-btn:hover {
    background: #0C6D3C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 109, 60, 0.3);
}

.award-btn i {
    font-size: 0.9rem;
}

/* Themes Section */
.themes {
    background: white;
    padding: 5rem 0;
    text-align: center;
}

.themes h2 {
    color: #0C6D3C;
    margin-bottom: 3rem;
}

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

.theme-video {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.theme-video:hover {
    transform: translateY(-5px);
}

.theme-video .video-thumbnail {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 0;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.theme-video .video-thumbnail-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.theme-video .play-button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.theme-video h4 {
    color: #0C6D3C;
}

/* News Section */
.news {
    background: white;
    padding: 5rem 0;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.news-header h2 {
    color: #0C6D3C;
    margin-bottom: 0;
}

.news-controls {
    display: flex;
    gap: 1rem;
}

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

.news-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card h4 {
    padding: 1.5rem 1.5rem 1rem;
    color: #0C6D3C;
}

.news-card .btn {
    margin: 0 1.5rem 1.5rem;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

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

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0C6D3C;
}

.copyright p {
    margin-bottom: 0;
    opacity: 0.8;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.app-links a {
    color: white;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.app-links a:hover {
    color: #0C6D3C;
}

/* Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet-specific styles */
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-buttons {
        margin-top: -2.5rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ministry-officials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: row;
    }
    
    .language-toggle {
        margin-right: 1rem;
        order: 3;
    }
    
    .lang-btn {
        width: 35px;
        height: 25px;
        padding: 0.2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 5rem 1.5rem 2rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav a, .dropdown-toggle {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        display: block;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin-left: 1rem;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 200px;
    }
    
    .dropdown-item {
        padding: 0.7rem 0;
    }
    
    .hero {
        padding-top: 80px; /* Adjusted padding for mobile header */
    }
    
    .hero-banner {
        height: auto;
        min-height: 40vh;
    }
    
    .hero-banner-img {
        height: 100%;
        object-position: center;
    }
    
    .hero-buttons-section {
        padding: 1.5rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 240px;
        padding: 10px 18px;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .hero-sponsors-carousel {
        bottom: 20px;
    }
    
    .gallery-content,
    .accommodation-content,
    .hotels-content,
    .registration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .organizers-grid,
    .moderators-grid,
    .themes-grid,
    .news-grid,
    .resources-grid,
    .ministry-officials-grid,
    .packages-grid,
    .awards-links-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-registration h2 {
        font-size: 2rem;
    }
    
    .award-link-card {
        padding: 1.5rem;
    }
    
    .award-link-card h3 {
        font-size: 1rem;
    }
    
    .tabs-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .resource-card {
        padding: 1.5rem;
    }
    
    .resource-info {
        text-align: center;
    }
    
    .resource-icon {
        align-self: center;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .carousel-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Typography adjustments for mobile */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Section padding adjustments */
    .about, .photo-gallery, .program, .statistics, 
    .hotels, .organizers, .ministry-officials, 
    .moderators, .plenary-speakers, .resources,
    .sponsorship-packages, .partners, .sponsors,
    .registration-cta, .themes, .news {
        padding: 3rem 0;
    }
    
    .registration-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .registration-text p {
        font-size: 1rem;
    }
    
    .registration-benefits li {
        font-size: 0.95rem;
    }
    
    .registration-action {
        padding: 1.5rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-unit span:first-child {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .unit-label {
        font-size: 0.8rem;
    }
    
    .registration-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Container adjustments */
    .container {
        padding: 0 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .video-section {
        grid-template-columns: 1fr;
    }
    
    /* Button adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Spacing adjustments */
    .sponsorship-intro, .resources-intro {
        margin-bottom: 2rem;
    }
    
    .package-header h3 {
        font-size: 1.3rem;
    }
    
    .package-price {
        font-size: 1rem;
    }
    
    .package-features {
        padding: 1.5rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
    }
}

/* Enhanced Hotels Section Styles */
.hotels-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hotels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hotel-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e9ecef" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23hotel-pattern)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.hotels-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hotels-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.hotels-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #CAE23C, #2ecc71);
    border-radius: 2px;
}

.hotels-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hotels-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #CAE23C, #2ecc71);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.hotel-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CAE23C, #2ecc71);
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hotel-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CAE23C, #2ecc71);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.hotel-rating .stars {
    color: #ffc107;
    font-size: 1.1rem;
    font-weight: 600;
}

.hotel-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hotel-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #27ae60;
}

.hotel-price i {
    color: #27ae60;
}

.hotel-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #495057;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.feature i {
    color: #CAE23C;
    font-size: 0.9rem;
}

.hotel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #CAE23C, #2ecc71);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.hotel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    color: white;
    text-decoration: none;
}

.hotel-btn i {
    font-size: 0.8rem;
}

.hotels-disclaimer {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 12px;
    padding: 20px;
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.hotels-disclaimer i {
    color: #1976d2;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.hotels-disclaimer p {
    color: #424242;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design for Hotels Section */
@media (max-width: 768px) {
    .hotels-section {
        padding: 60px 0;
    }
    
    .hotels-header h2 {
        font-size: 2rem;
    }
    
    .hotels-header p {
        font-size: 1rem;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hotel-card {
        padding: 25px;
    }
    
    .hotel-card h3 {
        font-size: 1.2rem;
    }
    
    .hotel-features {
        gap: 8px;
    }
    
    .feature {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .hotel-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hotels-disclaimer {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hotels-header h2 {
        font-size: 1.8rem;
    }
    
    .hotel-card {
        padding: 20px;
    }
    
    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hotel-features {
        justify-content: center;
    }
}
