/* Start custom CSS for section, class: .elementor-element-8bb7d5b *//* Base styling */
.sekala-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Responsive Typography */
/* Mobile (0-576px) */
@media (max-width: 576px) {
    .section-title, .hero-content h1 {
        font-size: 26px;
    }
    .section-subtitle, .contact-section-overlay h3 {
        font-size: 24px;
    }
    .quick-contact-card h3, .emergency-banner-content h3, .contact-section-btn {
        font-size: 22px;
    }
    p, .quick-contact-info, .contact-section-overlay p, .emergency-banner-content p {
        font-size: 15px;
    }
    .primary-cta {
        font-size: 15px;
        padding: 12px 25px;
    }
}

/* Tablet (577px-991px) */
@media (min-width: 577px) and (max-width: 991px) {
    .section-title, .hero-content h1 {
        font-size: 32px;
    }
    .section-subtitle, .contact-section-overlay h3 {
        font-size: 28px;
    }
    .quick-contact-card h3, .emergency-banner-content h3, .contact-section-btn {
        font-size: 24px;
    }
    p, .quick-contact-info, .contact-section-overlay p, .emergency-banner-content p {
        font-size: 16px;
    }
    .primary-cta {
        font-size: 16px;
    }
}

/* Laptop (992px-1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .section-title, .hero-content h1 {
        font-size: 36px;
    }
    .section-subtitle, .contact-section-overlay h3 {
        font-size: 30px;
    }
    .quick-contact-card h3, .emergency-banner-content h3, .contact-section-btn {
        font-size: 26px;
    }
    p, .quick-contact-info, .contact-section-overlay p, .emergency-banner-content p {
        font-size: 16px;
    }
    .primary-cta {
        font-size: 17px;
    }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    .section-title, .hero-content h1 {
        font-size: 42px;
    }
    .section-subtitle, .contact-section-overlay h3 {
        font-size: 32px;
    }
    .quick-contact-card h3, .emergency-banner-content h3, .contact-section-btn {
        font-size: 28px;
    }
    p, .quick-contact-info, .contact-section-overlay p, .emergency-banner-content p {
        font-size: 16px;
    }
    .primary-cta {
        font-size: 18px;
    }
}

/* Section Titles */
.section-title {
    margin-bottom: 25px;
    color: #262626;
    position: relative;
    font-weight: 600;
}

.section-subtitle {
    margin-bottom: 20px;
    color: #262626;
    position: relative;
    font-weight: 500;
}

/* Paragraph styling */
p {
    margin-bottom: 20px;
}

/* Divider */
.sekala-divider {
    height: 2px;
    background-color: #e0c38c;
    width: 100px;
    margin: 40px auto;
}

/* Hero Section */
.contact-hero {
    background-image: url('/wp-content/uploads/images/Contact-Sekala-Private-Game-Lodge.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.contact-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Slightly darker overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 700; /* Increased font weight */
}

.hero-content p {
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Primary CTA Button */
.primary-cta {
    display: inline-block;
    background-color: #e0c38c;
    color: #262626!important;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.primary-cta:hover {
    background-color: #d4b277;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

/* Quick Contact Section */
.quick-contact {
    background-color: #f8f8f8;
    padding: 40px 0;
    text-align: center;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-contact-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quick-contact-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 24px;
    color: #e0c38c;
    margin-bottom: 15px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    background-color: rgba(224, 195, 140, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-contact-card h3 {
    margin-bottom: 15px;
    color: #262626;
}

.quick-contact-info {
    margin-bottom: 10px;
}

.quick-contact-info strong {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

/* Contact Sections Grid */
.contact-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.contact-section-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 300px;
}

.contact-section-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.contact-section-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.contact-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: white;
}

.contact-section-overlay h3 {
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-section-overlay p {
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-section-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e0c38c;
    color: #262626!important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-section-btn:hover {
    background-color: #d4b277;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Emergency Banner */
.emergency-banner {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px;
    border-radius: 5px;
    margin: 30px 0;
    display: flex;
    align-items: center;
}

.emergency-banner i {
    font-size: 24px;
    color: #ffc107;
    margin-right: 15px;
}

.emergency-banner-content {
    flex: 1;
}

.emergency-banner-content h3 {
    color: #856404;
    margin-bottom: 5px;
}

.emergency-banner-content p {
    margin: 0;
}

.emergency-banner-btn {
    background-color: #ffc107;
    color: #856404!important;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.emergency-banner-btn:hover {
    background-color: #e0a800;
    color: #533f03;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-sections-grid {
        grid-template-columns: 1fr;
    }

    .emergency-banner {
        flex-direction: column;
        text-align: center;
    }

    .emergency-banner i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .emergency-banner-btn {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .sekala-contact-container {
        padding: 15px;
    }
}/* End custom CSS */