/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-banner {
    position: relative;
    height: 65vh;
    min-height: 450px;
    background: url('assets/about-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    z-index: 905;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(17, 45, 17, 0.4) 0%,
        rgba(17, 45, 17, 0.7) 100%
    );
    z-index: 1;
}

.about-banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 5%;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 192, 17, 0.2) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 192, 17, 0.3);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-yellow);
    margin-bottom: 25px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-banner-content h1 {
    font-size: clamp(2rem, 10vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.about-banner-content h1 span {
    color: var(--accent-yellow);
}

.about-banner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}



.about-section {
    padding: 50px 5%;
    background-color: #f6f5ef;
    position: relative;
    z-index: 906;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1450px;
    margin: 0 auto 80px;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    display: block;
}

.about-text h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1450px;
    margin: 0 auto;
}
.offer-card {
    background: #fdfdfa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #e2ece0;
}
.offer-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.offer-img-box { height: 240px; overflow: hidden; }
.offer-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.offer-card:hover .offer-img-box img { transform: scale(1.1); }
.offer-info { padding: 25px; text-align: center; }
.offer-info h4 { color: var(--primary-green); font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.offer-info p { color: #666; font-size: 0.9rem; line-height: 1.6; }

/* Collage & Gallery */
.collage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 40px; }
.collage-item { border-radius: 8px; overflow: hidden; height: 180px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.collage-item img { width: 100%; height: 100%; object-fit: cover; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.item-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(17, 45, 17, 0.95));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover .item-overlay {
    bottom: 0;
}
.item-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}
.gallery-item:hover .item-overlay span {
    transform: translateY(0);
    opacity: 1;
}

/* Exclusive Section */
.exclusive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1200px; margin: 0 auto; }
.exclusive-card { position: relative; border-radius: 15px; overflow: hidden; height: 400px; }
.exclusive-card img { width: 100%; height: 100%; object-fit: cover; }
.exclusive-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); padding: 30px; color: white; }
.exclusive-overlay h3 { font-size: 1.5rem; font-weight: 700; }

/* Wildlife Slider */
.slider-container {
    max-width: 1450px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.image-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 30px;
    scrollbar-width: none;
}
.image-slider::-webkit-scrollbar { display: none; }

.slider-item {
    flex: 0 0 calc(25% - 15px);
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.slider-item:hover img {
    transform: scale(1.1);
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* CTA Section */
.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-btn {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-yellow-cta, .btn-green-cta {
    position: relative;
    overflow: hidden;
    padding: 15px 40px;
    border-radius: 2px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: linear-gradient(135deg, #0a1a0a 0%, #112d11 49%, #f2c011 51%, #d9ac0d 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: white !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: none;
}

.btn-yellow-cta::before, .btn-green-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.8s ease-in-out;
}

.btn-yellow-cta:hover, .btn-green-cta:hover {
    background-position: 100% 0%;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(242, 192, 17, 0.4);
}

.btn-yellow-cta:hover::before, .btn-green-cta:hover::before {
    left: 150%;
}

/* About Page Components */
.about-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}
.about-list-item {
    font-size: 0.9rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-list-item i {
    width: 16px;
    color: var(--dark-yellow);
}

.cta-section {
    padding: 60px 5%;
    background-color: #f6f5ef;
    text-align: center;
}
.cta-content {
    max-width: 900px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 3rem;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 20px;
}
.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    font-weight: 800;
}
.section-header p {
    max-width: 800px;
    margin: 15px auto 0;
    color: #555;
    line-height: 1.6;
}

/* Stats Cards Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1450px;
    margin: 0 auto;
}
.stat-card {
    background: #f8fcf7;
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2ece0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2d5a27, #112d11);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.stat-card h3 {
    font-size: 1.6rem;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 8px;
}
.stat-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.bottom-summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #e2ece0;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 40px;
    max-width: 1450px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e2ece0;
}
.summary-item {
    background: #f1f6ef;
    padding: 25px;
    text-align: center;
}
.summary-item strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 5px;
    font-weight: 800;
}
.summary-item span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* About Page Media Queries */
@media (max-width: 992px) {
    .about-banner-content h1 { font-size: 3rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 50px; }
    .about-section { padding: 60px 5%; }
    .offers-grid { grid-template-columns: repeat(2, 1fr); }
    .collage-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .exclusive-grid { grid-template-columns: 1fr; }
    .slider-item { flex: 0 0 calc(50% - 10px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .about-banner {
        height: 60vh;
        min-height: 400px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px !important;
        padding-left: 5%;
        padding-right: 5%;
    }
    .about-banner-content h1 { font-size: 2rem; letter-spacing: 1px; }
    .about-banner-content p { font-size: 0.9rem; margin: 0 auto; }
    .about-text h2 { font-size: 1.6rem; text-align: center; }
    .about-image { height: 280px !important; }
    .about-list-grid { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .slider-item { flex: 0 0 85%; height: 280px; }
    .cta-section { padding: 50px 5% !important; text-align: center; }
    .cta-content { margin: 0 auto; }
    .cta-content h2 { font-size: 2rem !important; }
    .cta-btn { width: 100%; justify-content: center; padding: 12px 20px; }
    .section-header { text-align: center; }
    .section-header h2 { font-size: 1.4rem; line-height: 1.2; }
    .section-header p { font-size: 0.8rem; margin: 10px auto 0; }
    .zone-badge { margin: 0 auto 10px !important; font-size: 0.8rem; }
    .bottom-summary-stats { grid-template-columns: 1fr; }
    .about-section { padding: 40px 5%; }
    .exclusive-card { height: 280px; }
    .exclusive-overlay { padding: 20px; text-align: center; }
    .exclusive-overlay h3 { font-size: 1.2rem; }
    .about-list-item { font-size: 0.8rem; gap: 6px; }
    .about-list-item i { width: 14px; }
}

@media (max-width: 480px) {
    .about-banner-content h1 { font-size: 1.8rem; }
    .about-section { padding: 35px 5%; }
    .about-text h2 { font-size: 1.2rem; }
    .cta-section h2 { font-size: 1.5rem !important; }
    .stats-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.3rem; }
    .zone-badge { font-size: 0.7rem; padding: 4px 10px; }
    .exclusive-card { height: 220px; }
    .item-overlay span { font-size: 0.85rem; }
    .gallery-item { height: 180px; }
}
