/* Updated Color Palette with Eastern Highlands Province Colors */
:root {
    --ehp-green: #1e6b52;
    --ehp-gold: #d4af37;
    --ehp-red: #c4553c;
    --ehp-dark-blue: #2c3e50;
    --ehp-light-green: #4a8c72;
    --silver-gradient: linear-gradient(135deg, #a1a1a1 0%, #7b7b7b 100%);
    --off-white: #f8f9fa;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --light-overlay: rgba(255, 255, 255, 0.1);
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
}

/* Updated Font Family */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--ehp-gold) 0%, var(--ehp-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    color: var(--ehp-green);
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--ehp-gold) 0%, var(--ehp-red) 100%);
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--silver-gradient);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #7b7b7b 0%, #a1a1a1 100%);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--ehp-gold);
    color: var(--ehp-gold);
}

.btn-outline:hover {
    background: var(--ehp-gold);
    color: var(--text-light);
}

section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-overlay);
}

/* Header & Navigation - Enhanced Hamburger */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background: linear-gradient(135deg, var(--ehp-green) 0%, var(--ehp-dark-blue) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.hamburger, .search-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    border: double 3px var(--text-light);
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger.active, .search-toggle.active {
    border-color: var(--ehp-gold);
}

.hamburger.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--ehp-gold);
}

.hamburger.active span:last-child {
    transform: rotate(-45deg) translate(-6px, -6px);
    background-color: var(--ehp-gold);
}

.search-toggle i {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    border-color: var(--ehp-gold);
    transform: scale(1.1);
}

.search-toggle:hover i {
    color: var(--ehp-gold);
}

/* Search Container Styles */
.mobile-search-container {
    display: flex;
    align-items: center;
    position: relative;
}

.mobile-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 8px 15px;
    margin-left: 15px;
    width: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    opacity: 0;
    transform: translateX(-20px) scale(0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.mobile-search.active {
    width: 250px;
    opacity: 1;
    transform: translateX(0) scale(1);
}

.mobile-search input {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 8px;
    width: 100%;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.mobile-search input:focus {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.mobile-search button {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    margin-left: 8px;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.close-search-btn {
    display: none;
    opacity: 0;
    transform: rotate(90deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mobile-search.active .close-search-btn {
    display: block;
    opacity: 1;
    transform: rotate(0deg);
}

.close-search-btn:hover {
    color: var(--ehp-red) !important;
}

#searchButton:hover {
    color: var(--ehp-gold) !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: space-between;
    width: 100%;
}

.nav-menu li {
    margin: 0 5px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    padding: 10px 15px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--ehp-gold);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a:hover {
    background: var(--ehp-gold);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.nav-menu a i {
    margin-right: 8px;
}

/* Search Notification with Enhanced Animations */
.search-notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--ehp-red);
    color: var(--text-light);
    text-align: center;
    padding: 15px 25px;
    font-weight: 500;
    border-radius: 25px;
    display: none;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: notificationSlideIn 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.search-notification.active {
    display: block;
}

.search-notification.success {
    background: linear-gradient(135deg, var(--ehp-green) 0%, var(--ehp-light-green) 100%);
}

.search-notification.error {
    background: linear-gradient(135deg, var(--ehp-red) 0%, #e74c3c 100%);
}

@keyframes notificationSlideIn {
    0% {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
    70% {
        transform: translateX(-50%) translateY(20px);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes notificationSlideOut {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
}

/* Hero Section with Honeycomb Design */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img\ \(1\).jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80%;
    position: relative;
    z-index: 4;
}

.hero-text {
    width: 50%;
    animation: fadeIn 1s ease;
    position: relative;
    z-index: 5;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    margin-right: 0;
}

/* Honeycomb Image Frames - Compressed */
.honeycomb-container {
    position: absolute;
    right: 5%;
    top: 2%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.honeycomb {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.honeycomb-row {
    display: flex;
    margin-bottom: -30px;
}

.honeycomb-cell {
    width: 160px;
    height: 185px;
    background-size: cover;
    background-position: center;
    margin: 0 -12px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid var(--ehp-gold);
}

.honeycomb-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.honeycomb-cell:hover::before {
    opacity: 0.2;
}

.honeycomb-cell:hover {
    transform: scale(1.1) rotate(3deg);
    z-index: 10;
    border-color: var(--ehp-red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* About Section */
.about {
    background-color: var(--off-white);
    padding-top: 120px;
    position: relative;
    z-index: 2;
}

.about h2 {
    color: var(--ehp-green);
}

.about h2:after {
    background: linear-gradient(90deg, var(--ehp-gold) 0%, var(--ehp-red) 100%);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image {
    width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image .logo {
    width: 400px;
    height: 400px;
    z-index: 10;
    border: none;
    background: none;
    box-shadow: none;
}

.about-text {
    width: 50%;
}

.about-text .btn {
    margin-top: 20px;
}

/* Packages Section */
.packages {
    background: linear-gradient(135deg, var(--ehp-green) 0%, var(--ehp-light-green) 100%);
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.packages h2 {
    color: var(--text-light);
}

.packages h2:after {
    background: var(--ehp-gold);
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
}

.package-card {
    background-color: var(--light-overlay);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.package-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.package-image {
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--dark-overlay) 100%);
}

.package-content {
    padding: 20px;
    position: relative;
}

.package-content h3 {
    margin-bottom: 10px;
    color: var(--ehp-gold);
}

.package-content p {
    margin-bottom: 20px;
}

.package-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.package-details.active {
    max-height: 500px;
}

.package-details h4 {
    color: var(--ehp-gold);
    margin: 15px 0 10px;
}

.package-details ul {
    list-style: none;
    margin-bottom: 15px;
}

.package-details li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.package-details li i {
    margin-right: 10px;
    width: 20px;
    color: var(--ehp-gold);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--light-overlay);
    border: none;
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--ehp-gold);
    color: var(--text-dark);
    transform: scale(1.2);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

/* Partners Section */
.partners {
    background-color: var(--off-white);
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partner-item {
    background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 100%);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.partner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.partner-item a {
    text-decoration: none;
    color: var(--text-dark);
}

.partner-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 50%;
}

.partner-item h3 {
    font-size: 1.1rem;
    color: var(--ehp-green);
}

/* Festival Section */
.festival {
    position: relative;
}

.festival-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('footer.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.festival-content {
    text-align: center;
    max-width: 800px;
}

.festival-content h2 {
    margin-bottom: 20px;
    color: var(--text-light);
}

.festival-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.festival-toggle-btn {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.festival-details {
    display: none;
    text-align: left;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.festival-details.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.festival-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    scrollbar-width: thin;
}

.festival-slide {
    min-width: 300px;
    background: var(--light-overlay);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.festival-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.festival-info {
    padding: 20px;
}

.festival-info h3 {
    color: var(--ehp-gold);
    margin-bottom: 10px;
}

.festival-info p {
    color: var(--text-light);
    font-size: 1rem;
}

.festival-additional-info {
    color: var(--text-light);
}

.festival-additional-info h3 {
    color: var(--ehp-gold);
    margin-bottom: 15px;
}

.festival-additional-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.festival-additional-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.festival-additional-info i {
    margin-right: 10px;
    color: var(--ehp-gold);
    width: 20px;
}

/* Destinations Section */
.destinations {
    position: relative;
    z-index: 2;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destination-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    margin-bottom: 10px;
    color: var(--ehp-green);
}

/* Services Section */
.services {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background: linear-gradient(135deg, var(--ehp-dark-blue) 0%, var(--ehp-green) 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
    background: linear-gradient(135deg, var(--ehp-green) 0%, var(--ehp-light-green) 100%);
}

.service-image {
    width: 40%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    width: 60%;
    padding: 30px;
    color: var(--text-light);
}

.service-content h3 {
    color: var(--ehp-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-content h3 i {
    margin-right: 10px;
}

.service-content ul {
    list-style: none;
    margin-top: 15px;
}

.service-content li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service-content li i {
    margin-right: 8px;
    color: var(--ehp-gold);
}

/* Contact Section */
.contact {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    justify-content: space-between;
}

.contact-form {
    width: 45%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--off-white);
    color: var(--text-dark);
    font-family: 'Raleway', sans-serif;
    transition: all 0.4s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--ehp-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.contact-info {
    width: 45%;
}

.map {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-details i {
    margin-right: 15px;
    color: var(--ehp-green);
    width: 20px;
}

/* Assurance Section */
.assurance {
    background: linear-gradient(135deg, var(--ehp-green) 0%, var(--ehp-light-green) 100%);
    color: var(--text-light);
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.assurance-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.assurance-content h2 {
    color: var(--ehp-gold);
    margin-bottom: 30px;
}

.assurance-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Footer - Enhanced with background image */
.footer {
    position: relative;
    padding: 70px 0 25px;
    color: var(--text-light);
    background-image: url('g1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    z-index: -1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 30px;
}

.footer-section {
    width: 30%;
}

.footer-section h3,
.footer-section h4 {
    color: var(--ehp-gold);
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: var(--ehp-gold);
    transform: translateX(5px);
}

.footer-section ul li a i {
    margin-right: 10px;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--ehp-gold);
    transform: translateY(-3px);
}

.social-icons a i {
    color: var(--text-light);
    font-size: 1.1rem;
}

.social-icons a:hover i {
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.developer-credit {
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.developer-credit span {
    color: var(--ehp-gold);
    font-weight: 600;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--silver-gradient);
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

/* Pulse Animation for Attention */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/*.search-toggle.pulse {
    animation: pulse 2s infinite;
}*/

/* Shake Animation for Errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.mobile-search.shake {
    animation: shake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* Loading Animation for Search */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.search-loading {
    animation: spin 1s linear infinite;
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-20px) scale(0.9);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.zoom-in {
    animation: zoomIn 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .honeycomb-cell {
        width: 140px;
        height: 160px;
    }
    .package-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card, .service-card:nth-child(even) {
        flex-direction: column;
    }
    
    .service-image, .service-content {
        width: 100%;
    }
    
    .about-image .logo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        margin-top: 0.5cm;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    /* Hero section - compressed layout for mobile */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 60px;
        display: flex;
        justify-content: center;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        justify-content: flex-start;
        height: auto;
        gap: 30px;
    }
    
    .hero-text, .honeycomb-container {
        width: 100%;
    }
    
    .hero-text h1 {
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        margin: 0;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .honeycomb-container {
        position: relative;
        right: auto;
        top: -50px;
        transform: none;
        margin-top: 30px;
        order: 2;
    }
    
    .honeycomb {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0px;
    }
    
    .honeycomb-row {
        flex-direction: row;
        margin-bottom: 0;
        justify-content: center;
    }
    
    .honeycomb-cell {
        width: 100px;
        height: 115px;
        margin: 0px -8px;
        top: 10px;
    }   
    
    /* Base layout for mobile: 1, 3, 6 hexagons */
    .honeycomb-row:first-child {
        width: 100%;
        justify-content: center;
    }
    
    .honeycomb-row:nth-child(2) {
        width: 100%;
        justify-content: center;
    }
    
    .honeycomb-row:last-child {
        width: 100%;
        justify-content: center;
    }
    
    .about {
        padding-top: 80px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    .about-image {
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
    }
    
    .about-image .logo {
        width: 120px;
        height: 120px;
        position: relative;
        top: 0;
        left: 0;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-form, .contact-info {
        width: 100%;
    }
    
    .contact-form {
        margin-bottom: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 35px;
    }
    
    .footer-section {
        width: 100%;
        margin-bottom: 0;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .hamburger, .search-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--ehp-dark-blue) 0%, var(--ehp-green) 100%);
        width: 280px;
        height: 100vh;
        transition: left 0.3s ease;
        padding: 80px 30px 30px;
        box-shadow: 5px 25px rgba(0, 0, 0, 0.2);
        justify-content: flex-start;
        align-items: stretch;
        gap: 15px;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: flex;
        padding: 12px 15px;
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
    }
    
    /* Mobile search */
    .mobile-search.active {
        width: 220px;
    }
    
    .close-search-btn {
        display: block;
    }
    
    .search-notification {
        top: 70px;
        width: 90%;
        max-width: 300px;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

@media (min-width: 769px) {
    .mobile-search-container {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        margin-top: 0.6cm;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    /* Hero section adjustments for small mobile */
    .hero {
        padding: 70px 0 50px;
    }
    
    .honeycomb-cell {
        width: 80px;
        height: 92px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .festival-slide {
        min-width: 250px;
    }
    
    .about-image .logo {
        width: 100px;
        height: 100px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-section p, 
    .footer-section li, 
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .social-icons a {
        width: 38px;
        height: 38px;
    }
    
    .social-icons a i {
        font-size: 1rem;
    }
    
    .assurance-content p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .mobile-search.active {
        width: 180px;
    }
    
    .mobile-search input {
        font-size: 0.85rem;
        padding: 6px;
    }
    
    .search-notification {
        top: 60px;
        width: 85%;
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}

/* Smooth transitions for all interactive elements */
button, a, input, textarea {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}