/* Safari Shooting Range Page Styles */

.safari-shooting-range-page {
    background-color: #FFFFFF;
}

/* Page Content Section - follows delivery-payment pattern */
.safari-shooting-range-section {
    padding: 40px 0 60px;
    background-color: #FFFFFF;
}

.safari-shooting-range-layout {
    width: 100%;
}

.safari-shooting-range-content {
    width: 100%;
}

/* Page Header */
.safari-shooting-range-header {
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.safari-shooting-range-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--safari-color-secondary) 0%, transparent 100%);
    border-radius: 2px;
}

.safari-shooting-range-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--safari-color-text);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.6s ease-out;
}

.safari-shooting-range-subtitle {
    font-size: 18px;
    color: var(--safari-color-text-light);
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Hero Image Section */
.safari-shooting-range-hero-image {
    width: 100%;
    height: 500px;
    margin-bottom: 60px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.safari-shooting-range-hero-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
}

.safari-shooting-range-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.safari-shooting-range-hero-image:hover::before {
    opacity: 1;
}

.safari-shooting-range-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.safari-shooting-range-hero-image:hover img {
    transform: scale(1.05);
}

/* Introduction Section */
.safari-shooting-range-intro {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.safari-shooting-range-intro-content {
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
    border-left: 5px solid var(--safari-color-secondary);
    padding: 35px 35px 35px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.safari-shooting-range-intro-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--safari-color-secondary) 0%, rgba(255, 223, 116, 0.5) 100%);
    border-radius: 0 0 0 12px;
}

.safari-shooting-range-intro-content:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.safari-shooting-range-text-large {
    font-size: 18px;
    line-height: 1.9;
    color: var(--safari-color-text);
    margin-bottom: 20px;
    font-weight: 400;
}

.safari-shooting-range-text-large strong {
    font-weight: 700;
    color: var(--safari-color-text);
    position: relative;
}

.safari-shooting-range-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--safari-color-text);
    margin-bottom: 18px;
}

.safari-shooting-range-text:last-child {
    margin-bottom: 0;
}

.safari-shooting-range-text strong {
    font-weight: 600;
    color: var(--safari-color-secondary);
}

/* Section Title */
.safari-shooting-range-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--safari-color-text);
    margin-bottom: 35px;
    padding-bottom: 15px;
    position: relative;
    letter-spacing: -0.3px;
}

.safari-shooting-range-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--safari-color-secondary) 0%, transparent 100%);
    border-radius: 2px;
}

/* About Section */
.safari-shooting-range-about {
    margin-bottom: 50px;
}

.safari-shooting-range-about-content {
    padding: 0;
}

/* Features Section */
.safari-shooting-range-features {
    margin-bottom: 50px;
}

.safari-shooting-range-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.safari-shooting-range-feature {
    padding: 30px;
    background-color: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.safari-shooting-range-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 223, 116, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.safari-shooting-range-feature:hover {
    border-color: var(--safari-color-secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.safari-shooting-range-feature:hover::before {
    opacity: 1;
}

.safari-shooting-range-feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 223, 116, 0.15) 0%, rgba(255, 223, 116, 0.05) 100%);
    border-radius: 12px;
    color: var(--safari-color-secondary);
    font-size: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.safari-shooting-range-feature:hover .safari-shooting-range-feature-icon {
    background: linear-gradient(135deg, var(--safari-color-secondary) 0%, rgba(255, 223, 116, 0.8) 100%);
    color: var(--safari-color-text);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(255, 223, 116, 0.3);
}

.safari-shooting-range-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--safari-color-text);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.safari-shooting-range-feature:hover .safari-shooting-range-feature-title {
    color: var(--safari-color-text);
}

.safari-shooting-range-feature-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--safari-color-text-light);
    position: relative;
    z-index: 1;
}

/* Location Section */
.safari-shooting-range-location {
    margin-bottom: 40px;
}

.safari-shooting-range-location-content {
    padding: 0;
}

.safari-shooting-range-location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.safari-shooting-range-location-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background-color: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.safari-shooting-range-location-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 223, 116, 0.1), transparent);
    transition: left 0.6s ease;
}

.safari-shooting-range-location-item:hover {
    border-color: var(--safari-color-secondary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.safari-shooting-range-location-item:hover::before {
    left: 100%;
}

.safari-shooting-range-location-item i {
    font-size: 22px;
    color: var(--safari-color-secondary);
    margin-top: 2px;
    flex-shrink: 0;
}

.safari-shooting-range-location-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--safari-color-text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.safari-shooting-range-location-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--safari-color-text);
    margin: 0;
}

.safari-shooting-range-location-item a {
    color: var(--safari-color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--safari-transition);
}

.safari-shooting-range-location-item a:hover {
    color: var(--safari-color-secondary);
}

/* Google Map Section */
.safari-shooting-range-map {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.safari-shooting-range-map-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.safari-shooting-range-map-container:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.safari-shooting-range-iframe {
    width: 100%;
    height: 500px;
    display: block;
    border: none;
    border-radius: 16px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for features */
.safari-shooting-range-features-grid .safari-shooting-range-feature:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.safari-shooting-range-features-grid .safari-shooting-range-feature:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.safari-shooting-range-features-grid .safari-shooting-range-feature:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

.safari-shooting-range-features-grid .safari-shooting-range-feature:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

/* About section animation */
.safari-shooting-range-about {
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.safari-shooting-range-location {
    animation: fadeInUp 0.8s ease-out 1s both;
}

