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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.nav-icon {
    font-size: 2rem;
    color: #10b981;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #10b981;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: #10b981;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

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

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #16a34a;
    position: relative;
}

.section-title.white {
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 300;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.8);
}

.section-subtitle{
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #16a34a;
    font-weight: 500;
}

/* About Section */
.about {
    background: #f9fafb;
}

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

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.grid-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.grid-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.grid-image.offset {
    margin-top: 2rem;
}

/* Features Section */
.features {
    background: white;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

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

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: #ecfdf5;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Audience Section */
.audience {
    background: white;
}

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

.audience-card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.audience-card.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.audience-card.green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.audience-card.orange {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.audience-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.blue .audience-icon {
    background: #3b82f6;
}

.green .audience-icon {
    background: #10b981;
}

.orange .audience-icon {
    background: #f59e0b;
}

.audience-icon i {
    font-size: 1.8rem;
    color: white;
}

.audience-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.audience-description {
    color: #4b5563;
    line-height: 1.6;
}

/* camping */
.camping{
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
}
.section-subtitle2{
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #16a34a;
    font-weight: 500;
}
.camping-intro{
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(400px,1fr));
    margin-bottom: 4rem;
}
.intro-card{
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.intro-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 1rem;
}
.intro-card p {
    line-height: 1.7;
    color: #374151;
}
.camping-overview{
    text-align: center;
    margin-bottom: 4rem;
}
.camping-overview h3{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #16a34a;
}
.camping-list{
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}
.camping-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 150px;
}
.camping-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.camping-icon{
    font-size: 2.5rem;
}
.camping-item span{
    font-weight: 500;
    color: #374151;
    text-align: center;
}
.pricing-section {
    margin-bottom: 4rem;
}
.pricing-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #16a34a;
    margin-bottom: 3rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.pricing-card:nth-child(1) .pricing-header {
    background-image: url('../img/img27.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pricing-card:nth-child(2) .pricing-header {
    background-image: url('../img/img28.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pricing-card:nth-child(3) .pricing-header {
    background-image: url('../img/img29.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pricing-card:nth-child(4) .pricing-header {
    background-image: url('../img/img30.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pricing-header {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 2rem;
    text-align: center;
}
.pricing-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.price {
    font-size: 2.5rem;
    font-weight: 700;
}
.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}
.pricing-body {
    padding: 2rem;
}
.age-pricing {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}
.age-pricing p {
    margin-bottom: 0.5rem;
    color: #374151;
}
.age-pricing p:last-child {
    margin-bottom: 0;
}
.includes, .excludes {
    margin-bottom: 1.5rem;
}
.includes h5 {
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.excludes h5 {
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.includes ul, .excludes ul {
    list-style: none;
    padding: 0;
}
.includes li, .excludes li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}
.includes li {
    color: #16a34a;
}
.excludes li {
    color: #dc2626;
}
.camping-contact {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.camping-contact h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #16a34a;
    text-align: center;
    margin-bottom: 2rem;
}
.contact-info-camping {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.contact-item-camping {
    text-align: center;
}
.contact-item-camping h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 0.5rem;
}
.contact-item-camping p {
    color: #6b7280;
    margin-bottom: 1rem;
}
.contact-details-camping {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.contact-label {
    font-weight: 600;
    color: #374151;
    display: block;
    margin-bottom: 0.5rem;
}
.contact-phones {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-phones a,
.contact-item-camping a {
    color: #16a34a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.contact-phones a:hover,
.contact-item-camping a:hover {
    color: #15803d;
}

/* Slide Memory Section */
.slider {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
}

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

.slider-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.btn-slide{
    display: flex;
    gap: 20px;
}

.slide-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #475569;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
    flex-shrink: 0;
}

.slide-btn:hover {
    background: white;
    border-color: #3b82f6;
    color: #3b82f6;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.slide-btn:active {
    transform: scale(0.95);
}

.slide-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-container {
    flex: 1;
    overflow: hidden;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.card {
    flex: 0 0 calc(20% - 1.2rem);
    min-width: 0;
}

.card-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.card-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-image:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-image:hover .card-overlay {
    opacity: 1;
}


.slider-indicators {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.indicators2 {
    display: flex;
    gap: 0.5rem;
} 

.indicator2 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator2.active {
    background: #3b82f6;
    width: 2rem;
    border-radius: 6px;
}

.indicator:hover {
    background: #64748b;
}

.progress-text {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}


/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    overflow: hidden;
    text-decoration: none;
}

.contact-cta {
    text-align: center;
}

.contact-note {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #111827;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #10b981;
    font-weight: 600;
}

.footer-brand i {
    font-size: 1.5rem;
}

.footer-text {
    color: #9ca3af;
}

/* Floating Action Button */
.fab-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.fab-button:hover {
    background: #059669;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.fab-button i {
    font-size: 1.5rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(31, 41, 55, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: rgba(31, 41, 55, 1);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-brand .logo {
    background: #16a34a;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #16a34a;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #16a34a;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-links a:hover {
    transform: scale(1.2);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        margin-top: 100px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

    .features-grid,
    .services-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .fab-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
    }

     .slider {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .slider-wrapper {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .slide-btn {
        position: static;
        order: 2;
    }
    
    .prev-btn {
        order: 1;
    }
    
    .next-btn {
        order: 3;
    }
    
    .slider-container {
        order: 2;
        width: 100%;
        padding: 1.5rem;
    }
    
    .card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .slider-track {
        gap: 1.5rem;
    }
    
    .card-image {
        aspect-ratio: 4/5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .container-slide{
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero-content {
        padding: 0 15px;
    }

    .feature-card,
    .audience-card {
        padding: 2rem 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }
    .slide-btn{
        width: 30px;
        height: 30px;
    }
    .section-title {
        font-size: 2rem;
    }
    
    .card {
        flex: 0 0 calc(100% - 0.5rem);
    }
    
    .slider-track {
        gap: 1rem;
    }
    
    .slider-container {
        padding: 1rem;
    }
    
    .card-image {
        aspect-ratio: 3/4;
    }
    .camping-intro{
        grid-template-columns: 1fr;
    }
    .camping-contact{
        padding: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* Print Styles */
@media print {
    .navbar,
    .fab-button,
    .back-to-top,
    .carousel-btn,
    .carousel-indicators {
        display: none !important;
    }
}

.card-image img {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-btn:focus,
.indicator:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 3px;
}

/* Enhanced visual effects */
.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: 1;
}

.card-image:hover::before {
    transform: translateX(100%);
}