/* ========================================
   VISIT PAGE - MODERN REDESIGN
   ======================================== */

/* Navbar Fix */
.navbar {
    position: relative !important;
    z-index: 99999 !important;
    backdrop-filter: blur(15px) !important;
}

/* Banner Section */
.banner {
    max-height: 420px;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url(../source/visit-background.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 4px solid rgba(235,89,95,0.8);
}

.content {
    width: 100%;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    line-height: 1.1;
}

/* Main Experience Section */
.m1 {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 50%, #fef8f8 100%);
    position: relative;
    overflow: hidden;
}

.m1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(235,89,95,0.02) 0%, transparent 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.t1 {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.t1::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #eb595f, #d63d44);
    border-radius: 2px;
}

.t1 h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.t1 p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

/* Experience Grid Layout */
.experience-grid {
    display: grid;
    gap: 60px;
}

.experience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #eb595f, #d63d44);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.experience-card:nth-child(even) {
    direction: rtl;
}

.experience-card:nth-child(even) .experience-content,
.experience-card:nth-child(even) .experience-image {
    direction: ltr;
}

.experience-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.03);
}

.experience-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.experience-content p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}
/* Safety Section */
.m2 {
    padding: 100px 0;
    background: white;
    position: relative;
}

.safety-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.safety-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.safety-content {
    padding: 40px;
    position: relative;
}

.safety-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100px;
    background: linear-gradient(135deg, #eb595f, #d63d44);
    border-radius: 3px;
}

.safety-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
    margin-left: 30px;
}

.safety-content p {
    font-size: 1.3rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 40px;
    margin-left: 30px;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 30px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #eb595f, #d63d44);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(235, 89, 95, 0.3);
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(235, 89, 95, 0.4);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

/* Gallery Preview Section */
.m3 {
    padding: 100px 0 60px 0;
    background: #f8fafe;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.gallery-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #eb595f, #d63d44);
    border-radius: 2px;
}

.gallery-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.gallery-header p {
    font-size: 1.3rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Location & Gallery Section */
.m4 {
    padding: 60px 0 80px 0;
    background: #f8fafe;
}

.location-gallery {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.gallery-slider {
    position: sticky;
    top: 100px;
    z-index: 5;
}

.location-info {
    display: grid;
    gap: 30px;
    min-height: 600px;
}

.info-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #eb595f, #d63d44);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-header i {
    font-size: 1.5rem;
    color: #eb595f;
    width: 30px;
}

.info-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.info-card p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 15px 45px;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, #eb595f, #d63d44);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 45px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 89, 95, 0.3);
}/* Modern Image Slider */
.slider {
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    display: flex;
}

.slide input {
    display: none;
}

.imgs {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.imgs img {
    width: 700px;
    height: 450px;
    object-fit: cover;
}

/* Navigation Dots */
.nav_man {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.man_btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.6);
}

.man_btn:hover {
    background: rgba(255,255,255,0.7);
    transform: scale(1.1);
}

/* Auto Navigation */
.nav_auto {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 9;
}

.nav_auto div {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

/* Slider Logic */
#radio1:checked ~ .f {
    margin-left: 0;
}

#radio2:checked ~ .f {
    margin-left: -700px;
}

#radio3:checked ~ .f {
    margin-left: -1400px;
}

#radio4:checked ~ .f {
    margin-left: -2100px;
}

#radio5:checked ~ .f {
    margin-left: -2800px;
}

#radio6:checked ~ .f {
    margin-left: -3500px;
}

/* Active dot styling */
#radio1:checked ~ .nav_man .man_btn:nth-child(1),
#radio2:checked ~ .nav_man .man_btn:nth-child(2),
#radio3:checked ~ .nav_man .man_btn:nth-child(3),
#radio4:checked ~ .nav_man .man_btn:nth-child(4),
#radio5:checked ~ .nav_man .man_btn:nth-child(5),
#radio6:checked ~ .nav_man .man_btn:nth-child(6) {
    background: #eb595f !important;
    border-color: #eb595f !important;
    transform: scale(1.3);
}

/* Auto slide animation */
.auto-btn1, .auto-btn2, .auto-btn3, .auto-btn4, .auto-btn5, .auto-btn6 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 968px) {
    .content h1 {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .experience-card,
    .safety-section,
    .location-gallery {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .gallery-slider {
        position: relative;
        top: auto;
    }
    
    .experience-card:nth-child(even) {
        direction: ltr;
    }
    
    .experience-card {
        padding: 40px 30px;
    }
    
    .experience-image img {
        height: 280px;
    }
    
    .safety-content h2,
    .safety-content p,
    .learn-more-btn {
        margin-left: 0;
    }
    
    .safety-content {
        padding: 20px 0;
    }
    
    .safety-content::before {
        display: none;
    }
    
    .slider {
        max-width: 100%;
        height: 300px;
    }
    
    .imgs img {
        width: 100vw;
        max-width: 100%;
        height: 300px;
    }
    
    #radio2:checked ~ .f { margin-left: -100%; }
    #radio3:checked ~ .f { margin-left: -200%; }
    #radio4:checked ~ .f { margin-left: -300%; }
    #radio5:checked ~ .f { margin-left: -400%; }
    #radio6:checked ~ .f { margin-left: -500%; }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .info-card p,
    .contact-btn {
        margin-left: 35px;
    }
    
    .location-info {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .banner {
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .m1, .m2, .m3, .m4 {
        padding: 80px 0;
    }
    
    .t1 h1, .gallery-header h2 {
        font-size: 2.5rem;
    }
    
    .t1 p, .gallery-header p {
        font-size: 1.1rem;
    }
    
    .experience-content h3 {
        font-size: 1.8rem;
    }
    
    .experience-content p {
        font-size: 1rem;
    }
    
    .safety-content h2 {
        font-size: 2.2rem;
    }
    
    .safety-content p {
        font-size: 1.1rem;
    }
    
    .learn-more-btn {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .info-header h3 {
        font-size: 1.4rem;
    }
    
    .info-card p {
        font-size: 1rem;
    }
    
    .experience-image img,
    .safety-image img {
        height: 250px;
    }
    
    .slider {
        height: 250px;
    }
    
    .imgs img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .t1 h1, .gallery-header h2 {
        font-size: 2rem;
    }
    
    .experience-content h3 {
        font-size: 1.5rem;
    }
    
    .safety-content h2 {
        font-size: 1.8rem;
    }
    
    .experience-card {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .info-card p,
    .contact-btn {
        margin-left: 30px;
    }
    
    .slider {
        height: 200px;
        border-radius: 15px;
    }
    
    .imgs img {
        height: 200px;
    }
    
    .experience-image img,
    .safety-image img {
        height: 200px;
        border-radius: 15px;
    }
    
    .experience-card,
    .info-card {
        border-radius: 15px;
    }
}